/* ================================
   SAI BALAJI PLASTICS - MAIN STYLES
   Color Theme:
   - Primary: #2B3C4C (Dark Blue-Grey)
   - Accent: #C9AD86 (Light Gold/Beige)
   - Secondary: #8491A1 (Medium Blue-Grey)
   - Tertiary: #A49D95 (Warm Grey)
   ================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #2B3C4C;       /* original dark */
    --primary-light: #3E5266;       /* lighter version for navbar */
    --accent-color: #C9AD86;
    --secondary-color: #8491A1;
    --tertiary-color: #A49D95;
    --white: #FFFFFF;
    --light-bg: #F5F5F5;
    --red-gradient-1: #DC143C; /* Crimson */
    --red-gradient-2: #FF6B6B; /* Light Red */
    --red-gradient-3: #8B0000; /* Dark Red */
    --red-gradient-4: #FF4444; /* Bright Red */
    --text-dark: #2B3C4C;
    --text-light: #8491A1;
    --border-color: #E0E0E0;
    --shadow: rgba(43, 60, 76, 0.1);
    --shadow-hover: rgba(43, 60, 76, 0.2);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    padding: 0 40px;
}

/* ===== TOP HEADER BAR ===== */
.top-header {
    background-color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.top-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.contact-info i {
    color: var(--accent-color);
}

/* ===== NAVIGATION BAR ===== */
.navbar {
    background-color: #787e84; /* lighter color */
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0px 0;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px var(--shadow-hover);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0; /* REDUCED from 15px to 8px */
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo and text */
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    margin-left: -80px;
    max-width: 200px; /* Smaller to fit text beside it */
    object-fit: contain;
}
.logo-text {
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF !important; /* PLASTICS = WHITE */
    white-space: nowrap;
}

.logo-highlight {
    color: #C9AD86 !important; /* SAI BALAJI = GOLD */
}
.logo span {
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    font-size: 18px; /* NEW - Increased from default 16px */
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 25px var(--shadow-hover);
    border-radius: 8px;
    padding: 15px 0;
    margin-top: 10px;
    z-index: 1000;
    animation: fadeInDown 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    font-size: 15px;
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    font-size: 15px;
    transition: all 0.3s ease;
}

/* ADD ALL OF THIS BELOW ↓ */

/* Hover colors for each product - DESKTOP */
.dropdown-content a:nth-child(1):hover {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFB8B8 100%) !important;
    color: #FFFFFF !important;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(2):hover {
    background: linear-gradient(135deg, #4ECDC4 0%, #A2E9E4 100%) !important;
    color: #FFFFFF !important;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(3):hover {
    background: linear-gradient(135deg, #FFD93D 0%, #FFED99 100%) !important;
    color: #2B3C4C !important;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(4):hover {
    background: linear-gradient(135deg, #6BCF7F 0%, #B4E8BF 100%) !important;
    color: #FFFFFF !important;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(5):hover {
    background: linear-gradient(135deg, #A78BFA 0%, #D4C5FD 100%) !important;
    color: #FFFFFF !important;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(6):hover {
    background: linear-gradient(135deg, #FF9F43 0%, #FFCFA1 100%) !important;
    color: #FFFFFF !important;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(7):hover {
    background: linear-gradient(135deg, #3B82F6 0%, #93C5FD 100%) !important;
    color: #FFFFFF !important;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(8):hover {
    background: linear-gradient(135deg, #EC4899 0%, #F9A8D4 100%) !important;
    color: #FFFFFF !important;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(9):hover {
    background: linear-gradient(135deg, #10B981 0%, #6EE7B7 100%) !important;
    color: #FFFFFF !important;
    transform: translateX(5px);
}

/* .dropdown-content a:hover {
    background-color: var(--light-bg);
    color: var(--accent-color);
} */

/* Mobile Menu Toggle - Hidden by default */
.menu-toggle {
    display: none;
}

/* ===== CART & FAVORITES ICONS IN NAV ===== */
.nav-icon {
    position: relative;
}

.cart-icon,
.favorites-icon {
    color: var(--white);
    font-size: 40px; /* NEW - Increased from 20px */
    position: relative;
}

.cart-icon:hover,
.favorites-icon:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.cart-count,
.favorites-count {
    position: absolute;
    top: -10px; /* Adjusted for bigger icon */
    right: -10px; /* Adjusted for bigger icon */
    background-color: var(--accent-color);
    color: var(--primary-color);
    font-size: 12px; /* NEW - Increased from 11px */
    font-weight: bold;
    width: 22px; /* NEW - Increased from 20px */
    height: 22px; /* NEW - Increased from 20px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobile cart/fav - Hidden by default */
.mobile-cart-fav {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--red-gradient-3) 0%, var(--red-gradient-1) 50%, var(--red-gradient-2) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background-color: rgba(201, 173, 134, 0.1);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInLeft 1s ease;
}

.hero-text h1 span {
    color: var(--accent-color);
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInLeft 1s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInLeft 1s ease 0.4s backwards;
}

.btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #D4BE97;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(201, 173, 134, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
}

/* ===== PRODUCT GRID ===== */
/* ===== PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}
/* ===== PRODUCT SEARCH BAR ===== */
.product-search-container {
    max-width: 700px;
    margin: 0 auto 50px;
    position: relative;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 3px solid var(--accent-color);
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 5px 20px rgba(201, 173, 134, 0.3);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    box-shadow: 0 8px 30px rgba(201, 173, 134, 0.5);
    transform: translateY(-2px);
}

.search-box i.fa-search {
    color: var(--accent-color);
    font-size: 20px;
    margin-right: 15px;
}

#productSearchInput {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text-dark);
    background: transparent;
}

#productSearchInput::placeholder {
    color: var(--text-light);
}

.clear-search {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

.clear-search:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* Search Results Dropdown */
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 10px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
    animation: slideDown 0.3s ease;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: var(--light-bg);
    transform: translateX(5px);
}

.search-result-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--light-bg);
}

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.search-result-category {
    font-size: 13px;
    color: var(--text-light);
}

.no-results {
    padding: 30px;
    text-align: center;
    color: var(--text-light);
}

.no-results i {
    font-size: 50px;
    color: var(--accent-color);
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-search-container {
        margin-bottom: 30px;
    }
    
    .search-box {
        padding: 12px 20px;
    }
    
    #productSearchInput {
        font-size: 14px;
    }
    
    .search-result-item {
        padding: 12px 15px;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
    }
}
.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

/* Different border colors for each card */
.product-card:nth-child(1) {
    border-color: #FF6B6B; /* Red */
}

.product-card:nth-child(2) {
    border-color: #4ECDC4; /* Teal */
}

.product-card:nth-child(3) {
    border-color: #FFD93D; /* Yellow */
}

.product-card:nth-child(4) {
    border-color: #6BCF7F; /* Green */
}

.product-card:nth-child(5) {
    border-color: #A78BFA; /* Purple */
}

.product-card:nth-child(6) {
    border-color: #FF9F43; /* Orange */
}

.product-card:nth-child(7) {
    border-color: #3B82F6; /* Blue */
}

.product-card:nth-child(8) {
    border-color: #EC4899; /* Pink */
}

.product-card:nth-child(9) {
    border-color: #10B981; /* Emerald */
}

.product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

/* Hover - change background to match border color */
.product-card:nth-child(1):hover {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFB8B8 100%);
}

.product-card:nth-child(2):hover {
    background: linear-gradient(135deg, #4ECDC4 0%, #A2E9E4 100%);
}

.product-card:nth-child(3):hover {
    background: linear-gradient(135deg, #FFD93D 0%, #FFED99 100%);
}

.product-card:nth-child(4):hover {
    background: linear-gradient(135deg, #6BCF7F 0%, #B4E8BF 100%);
}

.product-card:nth-child(5):hover {
    background: linear-gradient(135deg, #A78BFA 0%, #D4C5FD 100%);
}

.product-card:nth-child(6):hover {
    background: linear-gradient(135deg, #FF9F43 0%, #FFCFA1 100%);
}

.product-card:nth-child(7):hover {
    background: linear-gradient(135deg, #3B82F6 0%, #93C5FD 100%);
}

.product-card:nth-child(8):hover {
    background: linear-gradient(135deg, #EC4899 0%, #F9A8D4 100%);
}

.product-card:nth-child(9):hover {
    background: linear-gradient(135deg, #10B981 0%, #6EE7B7 100%);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 250px;
    background-color: var(--light-bg);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 25px;
}

.product-category {
    color: var(--primary-color);
    font-size: 16px; /* BIGGER */
    font-weight: 700; /* BOLDER */
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.product-card:hover .product-category {
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-specs {
    font-size: 15px; /* BIGGER */
    font-weight: 600; /* BOLDER */
    color: var(--text-dark); /* DARKER */
    margin-bottom: 15px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.product-card:hover .product-specs {
    color: #101010;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-name {
    color: #121212;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-price span {
    font-size: 14px;
    color: var(--text-light);
}

.product-actions {
    display: flex !important;
    gap: 10px;
    justify-content: center; /* CENTER THE BUTTON */
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition: all 0.3s ease;
}

.product-actions .btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
}
/* FORCE PRODUCT ACTIONS TO SHOW */
.product-card .product-actions,
.product-info .product-actions {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
}

.product-card .product-actions .btn,
.product-info .product-actions .btn {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.btn-small {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 25px;
    flex: 1;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
    padding: 4px;
    border-radius: 16px;

    /* diagonal gradient */
    background: linear-gradient(45deg,
      #1A2027 0%,
      #2F3945 35%,
      #8491A1 50%,
      #2F3945 65%,
      #1A2027 100%);
    
    /* make it bigger than the element in both directions */
    background-size: 200% 200%;

    animation: borderFlowRandom 16s linear infinite;
    box-shadow: 0 15px 50px rgba(43, 60, 76, 0.15);
}

@keyframes borderFlowRandom {
  0%   { background-position: 0% 0%; }
  25%  { background-position: 200% 0%; }
  50%  { background-position: 200% 200%; }
  75%  { background-position: 0% 200%; }
  100% { background-position: 0% 0%; }
}


.about-image {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
  
    border-radius: 12px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

/* Animated background effect */
.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(201, 173, 134, 0.15) 0%, 
        transparent 50%);
    animation: rotateBackground 8s linear infinite;
    z-index: 0;
}

.about-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    position: relative;
    z-index: 1;
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.about-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .about-image {
        height: 350px;
        padding: 40px;
    }
}
.about-text h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.stat-box {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-light);
    font-size: 18px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: var(--light-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
   background-color: rgb(132, 145, 161);

    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-text {
    color: white;
    line-height: 1.8;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: bold;
    font-size: 20px;
}

.author-info h4 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.author-info p {
    color: black;
    font-size: 13px;
}

/* ===== CONTACT SECTION ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 173, 134, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    background-color: var(--accent-color);
    color: var(--white);
}

.info-item:hover .info-icon {
    background-color: var(--white);
    color: var(--accent-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 18px;
}

.info-item:hover .info-content h4,
.info-item:hover .info-content p {
    color: var(--white);
}

.info-content p {
    color: var(--text-light);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 20px;
    color: var(--accent-color);
}

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Contact Info List (Footer) */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
}

.contact-item span,
.contact-item a {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
}

.contact-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}
/* ===== VIDEO SUPPORT IN HERO SLIDER ===== */
.hero-slide-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== ANIMATED TAGLINES ===== */
/* ===== ANIMATED TAGLINES ===== */
.slide-tagline {
    position: absolute;
    z-index: 10;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.9);
    padding: 20px;
    max-width: 700px;
    line-height: 1.4;
    opacity: 0;
    transform: translateX(-100%); /* Start off-screen */
}

/* Different colors for each slide */
.slide[data-slide="0"] .slide-tagline {
    color: #FFD700; /* Gold */
}

.slide[data-slide="1"] .slide-tagline {
    color: #000000; /* black */
}

.slide[data-slide="2"] .slide-tagline {
    color: #FF6B6B; /* Red */
}

.slide[data-slide="3"] .slide-tagline {
    color: #FFFFFF; /* white */
}

/* Position variations */
.slide-tagline.slide-from-left {
    top: 30%;
    right: 100px;
}

.slide-tagline.slide-from-right {
    top: 30%;
    left: 100px;
}

.slide-tagline.slide-from-top {
    top: 100px;
    right: 100px;
}
/* ===== HERO SLIDER BUTTONS ===== */
.slide-buttons-static {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
 opacity: 1;
    z-index: 100;
}

/* @keyframes slideButtonsUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
} */

.btn-slide {
    padding: 16px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.btn-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.btn-slide i {
    margin-right: 8px;
    color: gold;

}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 768px) {
    .slide-buttons-static {
        bottom: 80px;
        flex-direction: column;
        gap: 12px;
        width: 85%; /* Reduced from 90% */
        max-width: 280px; /* Reduced from 300px */
    }

    .btn-slide {
        padding: 12px 20px; /* Reduced padding */
        font-size: 14px;
        text-align: center !important; /* Force center */
        width: 100%;
        display: flex !important;
        align-items: center;
        justify-content: center; /* Center content */
        white-space: nowrap; /* Prevent text wrap */
    }
    
    .btn-slide i {
        margin-right: 6px; /* Reduce icon gap */
    }
}

@media (max-width: 480px) {
    .slide-buttons-static {
        bottom: 60px;
        width: 80%; /* Reduced from 85% */
        max-width: 260px; /* Reduced */
    }

    .btn-slide {
        padding: 10px 15px; /* Even smaller */
        font-size: 13px;
    }
}
@media (max-width: 480px) {
    .slide-buttons-static {
        bottom: 60px;
    }

    .btn-slide {
        padding: 12px 20px;
        font-size: 13px;
    }
}
/* ===== TAGLINE ANIMATIONS ===== */

/* Slide from LEFT */
@keyframes slideFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide from RIGHT */
@keyframes slideFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Slide from TOP */
@keyframes slideFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Apply animations when slide is active */
.slide.active .slide-tagline.slide-from-left {
    animation: slideFromLeft 1s ease-out forwards;
}

.slide.active .slide-tagline.slide-from-right {
    animation: slideFromRight 1s ease-out forwards;
}

.slide.active .slide-tagline.slide-from-top {
    animation: slideFromTop 1s ease-out forwards;
}

/* ===== MOBILE RESPONSIVE TAGLINES ===== */
/* ===== MOBILE RESPONSIVE TAGLINES ===== */
@media (max-width: 768px) {
    .slide-tagline {
        font-size: 24px;
        padding: 15px;
        max-width: 90%;
    }
    
    .slide-tagline.slide-from-left,
    .slide-tagline.slide-from-right,
    .slide-tagline.slide-from-top {
        top: 20%;
        left: 5%;
        right: 5%;
    }
    
    /* Move ONLY slide 2 tagline down */
    .slide[data-slide="1"] .slide-tagline {
        top: 35% !important; /* Move down - adjust this value */
    }
}

@media (max-width: 480px) {
    .slide-tagline {
        font-size: 18px;
        padding: 10px;
    }
    
    /* Move ONLY slide 2 tagline down on very small screens */
    .slide[data-slide="1"] .slide-tagline {
        top: 35% !important; /* Adjust this value */
    }
}
/* ===== HERO SLIDER ===== */
/* ===== HERO SLIDER - SIMPLE IMAGE ROTATION ===== */
.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
    background-color: #000;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(201, 173, 134, 0.8);
    color: #2B3C4C;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: #C9AD86;
    transform: scale(1.1);
}

/* Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
    background-color: #C9AD86;
    width: 30px;
    border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-nav {
        padding: 0 15px;
    }

    .slider-dots {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 300px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 600px;
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.slide-text {
    color: var(--white);
}

.slide-label {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease;
}

.slide-text h1 {
    font-size: 52px;
    margin-bottom: 25px;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease 0.2s backwards;
}

.slide-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    animation: slideInLeft 0.8s ease 0.4s backwards;
}

.slide-buttons-static {
    animation: slideInLeft 0.8s ease 0.6s backwards;
}

.slide-image {
    position: relative;
    animation: slideInRight 0.8s ease 0.3s backwards;
}

.slide-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(201, 173, 134, 0.9);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* ===== BRICK BREAK TRANSITION EFFECT ===== */

/* ===== PRODUCT CIRCLE CAROUSEL ===== */
.product-circle-carousel {
    /* background: linear-gradient(135deg, #D4BE97 0%, #C9AD86 100%); */
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    top: 40px;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 50px;
    animation: scrollCarousel 15s linear infinite;
    width: fit-content;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-item {
    flex-shrink: 0;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 200px;                       /* NEW */
    display: flex;                      /* NEW */
    flex-direction: column;             /* NEW */
    align-items: center;                /* NEW */
}


.carousel-item:hover {
    transform: scale(1.1);
}

.product-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 5px solid #2B3C4C;
    transition: all 0.3s ease;
}

.carousel-item:hover .product-circle {
    box-shadow: 0 15px 40px rgba(43, 60, 76, 0.4);
    border-color: #C9AD86;
}

.product-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.product-label {*/
/*    margin-top: 15px;*/
/*    color: #2B3C4C;*/
/*    font-size: 16px;*/
/*    font-weight: 600;*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.5px;*/
/*}*/
.product-label {
    margin-top: 15px;
    color: #2B3C4C;
    font-size: 14px;                    /* Changed from 16px */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;              /* NEW */
    white-space: normal;                /* NEW */
    max-width: 200px;                   /* NEW */
    text-align: center;                 /* NEW */
    line-height: 1.3;                   /* NEW */
    min-height: 36px;                   /* NEW */
    display: flex;                      /* NEW */
    align-items: center;                /* NEW */
    justify-content: center;            /* NEW */
}


.carousel-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .product-circle-carousel {
        padding: 50px 0;
    }

    .product-circle {
        width: 150px;
        height: 150px;
        border: 4px solid #2B3C4C;
    }

    .carousel-track {
        gap: 35px;
        animation: scrollCarousel 12s linear infinite;
    }

    .product-label {
        font-size: 14px;
        word-wrap: break-word;
        white-space: normal;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .product-circle-carousel {
        padding: 40px 0;
    }

    .product-circle {
        width: 120px;
        height: 120px;
        border: 3px solid #2B3C4C;
    }

    .carousel-track {
        gap: 25px;
        animation: scrollCarousel 10s linear infinite;
    }

    .product-label {
        font-size: 12px;
        word-wrap: break-word;
        white-space: normal;
        max-width: 120px;
    }
}

/* ===== PRODUCT SIDEBAR ===== */
.product-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.product-sidebar {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.sidebar-categories {
    list-style: none;
}

.sidebar-categories > li {
    margin-bottom: 15px;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
    border-radius: 8px;
    color: #FFFFFF;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Default colored backgrounds for each category */
.sidebar-categories > li:nth-child(1) .category-link {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFB8B8 100%);
}

.sidebar-categories > li:nth-child(2) .category-link {
    background: linear-gradient(135deg, #4ECDC4 0%, #A2E9E4 100%);
}

.sidebar-categories > li:nth-child(3) .category-link {
    background: linear-gradient(135deg, #FFD93D 0%, #FFED99 100%);
    color: #2B3C4C; /* Dark text for yellow */
}

.sidebar-categories > li:nth-child(4) .category-link {
    background: linear-gradient(135deg, #6BCF7F 0%, #B4E8BF 100%);
}

.sidebar-categories > li:nth-child(5) .category-link {
    background: linear-gradient(135deg, #A78BFA 0%, #D4C5FD 100%);
}

.sidebar-categories > li:nth-child(6) .category-link {
    background: linear-gradient(135deg, #FF9F43 0%, #FFCFA1 100%);
}

.sidebar-categories > li:nth-child(7) .category-link {
    background: linear-gradient(135deg, #3B82F6 0%, #93C5FD 100%);
}

.sidebar-categories > li:nth-child(8) .category-link {
    background: linear-gradient(135deg, #EC4899 0%, #F9A8D4 100%);
}

.sidebar-categories > li:nth-child(9) .category-link {
    background: linear-gradient(135deg, #10B981 0%, #6EE7B7 100%);
}

/* Hover effect - darken slightly */
.category-link:hover {
    transform: translateX(5px) scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Active state - add border */
.category-link.active {
    border: 3px solid #FFFFFF;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.category-link i {
    font-size: 12px;
}

.category-link.active i {
    transform: rotate(90deg);
}

.category-products {
    list-style: none;
    margin-top: 10px;
    padding-left: 15px;
    display: none;
    animation: slideDown 0.3s ease;
}

.category-link.active + .category-products {
    display: block;
}

.category-products li {
    padding: 8px 12px;
    font-size: 14px;
    color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 6px;
}

.category-products li:hover {
    background-color: rgba(201, 173, 134, 0.2);
    color: var(--accent-color);
    padding-left: 20px;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.product-detail-image {
    position: relative;
}

.product-detail-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.gallery-thumb {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-price-detail {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.product-price-detail span {
    font-size: 18px;
    color: var(--text-light);
}

.product-specs-list {
    list-style: none;
    margin-bottom: 30px;
}

.product-specs-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.product-specs-list li strong {
    color: var(--primary-color);
}

.product-actions-detail {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.quantity-input {
    width: 60px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 8px;
}

.btn-add-cart {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
}

.btn-add-cart.loading {
    position: relative;
    pointer-events: none;
}

.btn-add-cart.loading::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 0.8s linear infinite;
}

.btn-favorite {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 8px;
    border: 2px solid var(--accent-color);
    background-color: transparent;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.btn-favorite:hover,
.btn-favorite.active {
    background-color: var(--accent-color);
    color: var(--white);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
    background-color: var(--light-bg);
    padding: 20px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb i {
    font-size: 12px;
}

.breadcrumb span {
    color: var(--accent-color);
    font-weight: 600;
}

/* ===== CATEGORY HEADER ===== */
.category-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--border-color);
}

.category-header h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-header p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== QUICK FAVORITE BUTTON ===== */
.btn-favorite-quick {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.btn-favorite-quick:hover,
.btn-favorite-quick.active {
    background-color: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.btn-favorite-quick.active i {
    animation: heartBeat 0.5s ease;
}

/* ===== CART PAGE ===== */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.cart-items {
    background-color: var(--white);
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--light-bg);
    border-radius: 12px;
}

.empty-cart h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 20px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: 0 5px 20px var(--shadow-hover);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--light-bg);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.cart-item-specs {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.cart-item-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-color);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    color: #e74c3c;
    transform: scale(1.2);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--light-bg);
    border-radius: 8px;
    padding: 8px;
}

.cart-qty-btn {
    width: 30px;
    height: 30px;
    background-color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-qty-btn:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.cart-qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: bold;
    color: var(--primary-color);
}

.cart-summary {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
}

.summary-row.total {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 10px;
}

.summary-price {
    font-weight: 600;
    color: var(--accent-color);
}

.summary-row.total .summary-price {
    font-size: 24px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(1.2);
    }
}

@keyframes spin {
    to { 
        transform: rotate(360deg); 
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .contact-wrapper,
    .slide-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .cart-item {
        grid-template-columns: 100px 1fr;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }

    .slide-text h1 {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-text h1,
    .section-header h2 {
        font-size: 32px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .category-header h1 {
        font-size: 24px;
    }

    .btn-favorite-quick {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn-small {
        width: 100%;
    }

    .hero-slider,
    .slide-content {
        min-height: 500px;
    }

    .slide-text h1 {
        font-size: 32px;
    }

    .slider-nav {
        padding: 0 10px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .product-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-text h1,
    .slide-text h1 {
        font-size: 28px;
    }

    .hero-text p,
    .slide-text p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cart-item-image {
        margin: 0 auto;
    }

    .cart-item-actions {
        justify-content: center;
    }
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */

@media (max-width: 992px) {
    /* Top Header Mobile */
    .top-header {
        padding: 6px 0;
    }
    
    .top-header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
    
    .social-icons {
        gap: 8px;
        order: 1;
    }
    
    .social-icons a {
        font-size: 13px;
    }
    
    .contact-info {
        display: flex;
        flex-direction: row;
        gap: 12px;
        order: 2;
        align-items: center;
    }
    
    .contact-info a {
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 10px;
        color: var(--primary-color);
    }
    
    .contact-info span {
        display: inline;
        font-size: 10px;
    }
    
    .contact-info i {
        font-size: 12px;
        color: var(--accent-color);
    }
    
    /* Navbar Mobile */
    .navbar {
        padding: 10px 0;
    }
    
    .nav-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
.logo {
    order: 1;
    flex-shrink: 0;
    gap: 6px;
    margin-left: 80px; /* INCREASED - was 40px, now 80px */
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 80px;
}

.logo-text {
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF !important;
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-highlight {
    color: #C9AD86 !important;
}

/* Hamburger Menu */
/* Hamburger Menu */
.menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: auto;
    height: auto;
    padding: 5px;
    order: 3; /* CHANGED - Move to far right (after cart/fav) */
    margin: 0 !important;
    cursor: pointer;
    background: transparent;
    border: none;
    z-index: 1001;
}   
    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2.5px;
        background-color: #FFFFFF;
        transition: all 0.3s ease;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile Cart & Favorites */
.mobile-cart-fav {
    display: flex !important;
 gap: 8px; /* Bigger gap */
    order: 2;
    margin: 0 10px 0 auto !important; /* Push to right, 10px gap from hamburger */
}
   
    .mobile-cart-fav .cart-icon,
    .mobile-cart-fav .favorites-icon {
        color: var(--white);
        font-size: 18px;
        position: relative;
    }
    
    .mobile-cart-fav .cart-count,
    .mobile-cart-fav .favorites-count {
        position: absolute;
        top: -8px;
        right: -8px;
        background-color: var(--accent-color);
        color: var(--primary-color);
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 10px;
        font-weight: bold;
    }
    
    /* Sliding Menu */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background-color: var(--primary-color);
        flex-direction: column;
        padding: 20px 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        z-index: 999;
        display: flex;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
    }
    
    .nav-menu li:not(.nav-icon) a {
        padding: 15px 25px;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: #FFFFFF;
        font-size: 16px;
    }
    
    .nav-menu li:not(.nav-icon) a:hover {
        background-color: rgba(201, 173, 134, 0.2);
        color: var(--accent-color);
    }
    
    .nav-menu .nav-icon {
        display: none;
    }
    
    .dropdown-content {
        position: static;
        display: none;
        background-color: rgba(0, 0, 0, 0.2);
        padding: 0;
        border-radius: 0;
        box-shadow: none;
        margin: 0;
    }
    
    .dropdown:hover .dropdown-content {
        display: block;
    }
    
   .dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    font-size: 15px;
    transition: all 0.3s ease;
}

/* Hover colors for each product (matching product cards) */
.dropdown-content a:nth-child(1):hover {
    background: linear-gradient(135deg, #FF6B6B 0%, #FFB8B8 100%);
    color: #FFFFFF;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(2):hover {
    background: linear-gradient(135deg, #4ECDC4 0%, #A2E9E4 100%);
    color: #FFFFFF;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(3):hover {
    background: linear-gradient(135deg, #FFD93D 0%, #FFED99 100%);
    color: #2B3C4C;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(4):hover {
    background: linear-gradient(135deg, #6BCF7F 0%, #B4E8BF 100%);
    color: #FFFFFF;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(5):hover {
    background: linear-gradient(135deg, #A78BFA 0%, #D4C5FD 100%);
    color: #FFFFFF;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(6):hover {
    background: linear-gradient(135deg, #FF9F43 0%, #FFCFA1 100%);
    color: #FFFFFF;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(7):hover {
    background: linear-gradient(135deg, #3B82F6 0%, #93C5FD 100%);
    color: #FFFFFF;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(8):hover {
    background: linear-gradient(135deg, #EC4899 0%, #F9A8D4 100%);
    color: #FFFFFF;
    transform: translateX(5px);
}

.dropdown-content a:nth-child(9):hover {
    background: linear-gradient(135deg, #10B981 0%, #6EE7B7 100%);
    color: #FFFFFF;
    transform: translateX(5px);
}
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .logo-img {
        height: 30px; /* Even smaller on very small screens */
        max-width: 150px;
    }
    
    .top-header-content {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-info a,
    .contact-info span {
        font-size: 9px;
    }
    
    .contact-info i {
        font-size: 11px;
    }
    
    .menu-toggle {
        margin: 0 6px 0 0 !important;
    }
    
    .menu-toggle span {
        width: 20px;
    }
    
    .mobile-cart-fav {
        gap: 16px;
    }
    
    .mobile-cart-fav .cart-icon,
    .mobile-cart-fav .favorites-icon {
        font-size: 16px;
    }
    
    .mobile-cart-fav .cart-count,
    .mobile-cart-fav .favorites-count {
        width: 14px;
        height: 14px;
        font-size: 9px;
    }
    
    .nav-menu {
        width: 250px;
    }
}

/* Hide mobile elements on desktop */
@media (min-width: 993px) {
    .mobile-cart-fav {
        display: none !important;
    }
    
    .menu-toggle {
        display: none !important;
    }
}

/* ========================================
   FIX BUTTON COLORS FOR PRODUCT CARDS
   ======================================== */

/* Override button colors inside product cards */
.product-card .btn-secondary {
    background-color: var(--white) !important;
    color: var(--primary-color) !important; /* Dark text instead of white */
    border: 2px solid var(--primary-color) !important;
}

.product-card .btn-secondary:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.product-card .btn-primary {
    background-color: var(--accent-color) !important;
    color: var(--primary-color) !important; /* Dark text */
}

.product-card .btn-primary:hover {
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
}
/* Logo Background Styling */
.about-content .about-image {
    background: linear-gradient(
        135deg,
        rgba(139, 0, 0, 0.5) 0%,
        rgba(220, 20, 60, 0.5) 50%,
        rgba(255, 107, 107, 0.5) 100%
    );
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(220, 20, 60, 0.25);
}


        .about-content .about-image img {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 30px;
            border-radius: 12px;
        }
        /* View Products button only - specific color */
.btn-slide {
    background: #e040fb;
    border: 2px solid gold !important;
    color: #fff;
    font-size: 18px;
    padding: 12px 24px;
}

.btn-slide:hover {
    background: #c218e0 !important;
    border-color: gold !important; /* stays gold on hover */
    color: #fff;
}

