body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fcfcfc;
}

/* Colors - Black & Gold Theme */
.text-primary {
    color: #b8860b !important; /* Gold Dark */
}
.bg-primary {
    background-color: #dfa938 !important; /* Gold */
}
.border-primary {
    border-color: #b8860b !important;
}
.hover-primary:hover {
    color: #b8860b !important;
    transition: color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Navbar */
.navbar {
    padding-top: 15px;
    padding-bottom: 15px;
}
.navbar-nav .nav-link {
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}
.navbar-nav .nav-link.active {
    color: #b8860b !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.hero-section h1 {
    color: #111;
}
.hero-subtitle {
    font-weight: 500;
    line-height: 1.6;
    font-size: 1.15rem;
    color: #444;
}

/* Badges */
.experience-badge {
    display: inline-flex;
    align-items: center;
    background: #222;
    color: #dfa938;
    border: 1px solid #444;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}
.experience-badge i {
    color: #dfa938;
    margin-right: 10px;
}

/* Features */
.feature-icon-box {
    width: 70px;
    height: 70px;
    background-color: #f8f9fa;
    color: #b8860b;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon-box {
    background-color: #b8860b;
    color: white;
    transform: translateY(-5px);
}
.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.floating-wa:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    color: white;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}
.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
}
.product-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: #b8860b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #dfa938;
}
.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}
