/* ===================================
   Hunks Custom - Main Stylesheet
   =================================== */

/* ===================================
   1. CSS Variables
   =================================== */
   :root {
    /* Colors */
    --primary-color: #000000;
    --secondary-color: #f1f3f5;
    --tertiary-color: #BCBDBE; 
    --accent-color: #ff0000;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'SF Compact', 'SF Pro Text', 'SF Pro Display', 'Inter', system-ui, sans-serif;
    --font-secondary: 'Georgia', serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Button Color */
    --btn-color: #212529;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    
    /* Breakpoints */
    --breakpoint-mobile: 768px;
    --breakpoint-tablet: 1024px;
    --breakpoint-desktop: 1200px;
}

/* ===================================
   2. Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: var(--line-height-base);
    color: var(--primary-color);
    background-color: #F1F3F5;
}

/* ===================================
   iOS Safari Viewport Scaling Fix
   Prevent automatic zoom on input focus
   =================================== */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="time"],
textarea,
select {
    font-size: 16px !important;
    -webkit-text-size-adjust: 100%;
}

/* Mobile specific - ensure no zoom on all devices */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="search"],
    input[type="tel"],
    input[type="url"],
    input[type="number"],
    input[type="date"],
    input[type="time"],
    textarea,
    select {
        font-size: 16px !important;
        -webkit-text-size-adjust: 100%;
        -webkit-appearance: none;
        appearance: none;
    }
}

/* ===================================
   3. Utility Classes
   =================================== */
.container {
    max-width: var(--breakpoint-desktop);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Container Responsive */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-xs);
    }
}

/* ===================================
   4. Header Styles
   =================================== */

/* Floating Header Container */
.floating-header {
    position: fixed;
    top: 10px;
    left: 10px;
    right: 10px;
    z-index: 1000;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.floating-header.menu-expanded {
    max-height: calc(100vh - 20px);
    overflow-y: auto;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #212529;
    color: var(--secondary-color);
    padding: 5px 0;
    text-align: center;
    transition: all 0.3s ease;
    border-radius: 10px 10px 0px 0px;
    max-height: 100px;
    overflow: hidden;
}

.announcement-content {
    max-width: 100%;
    margin: 0 20px;
}

.announcement-content p {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: -0.3px;
}

/* Main Header */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 20px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 0px 0px 10px 10px;
    position: relative;
    overflow: visible;
}

/* Header Left - Menu & Shop Now Buttons */
.header-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex: 1;
}

.menu-btn{
    padding: 12px 16px;
}
.shop-now-btn {
    padding: 10px 16px;
}

.menu-btn,
.shop-now-btn {
    background-color: var(--btn-color);
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    cursor: pointer;
    /* padding: 10px 16px; */
    transition: all 0.3s;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    text-decoration: none;
}

.menu-btn svg,
.shop-now-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--secondary-color);
}

.menu-btn:hover,
.shop-now-btn:hover {
    background-color: #1a1d20;
    opacity: 0.9;
}

.menu-btn span,
.shop-now-btn span {
    font-weight: 500;
    letter-spacing: 0px;
}

.menu-btn .menu-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: var(--secondary-color);
}

.menu-btn .close-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: var(--secondary-color);
}

.menu-btn .close-text {
    display: none;
}

.menu-btn .close-icon {
    display: none;
}

/* Header Center - Logo */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Header Right - Search Bar */
.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--spacing-md);
    position: relative;
    overflow: visible;
}

/* Temporary Navigation Links */
.temp-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.temp-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s;
}

.temp-nav a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: visible;
    background-color: var(--secondary-color);
}

.search-bar input[type="search"] {
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--font-primary);
    padding: 10px 12px;
    min-width: 250px;
    background: var(--secondary-color);
    color: var(--primary-color);
    -webkit-appearance: none;
    appearance: none;
}

/* Hide browser's default clear button for search inputs */
.search-bar input[type="search"]::-webkit-search-cancel-button,
.search-bar input[type="search"]::-webkit-search-decoration,
.search-bar input[type="search"]::-webkit-search-results-button,
.search-bar input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.search-bar input[type="search"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.search-btn {
    background-color: var(--btn-color);
    border: none;
    cursor: pointer;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--secondary-color);
    transition: background-color 0.3s;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.search-btn svg {
    width: 18px;
    height: 18px;
}

.search-btn .search-icon {
    stroke: var(--secondary-color);
    fill: none;
}

.search-btn .clear-icon {
    fill: var(--secondary-color);
    stroke: none;
}

.search-btn:hover {
    background-color: #1a1d20;
    opacity: 0.9;
}

/* Search Recommendations Dropdown */
.search-recommendations {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background-color: var(--secondary-color);
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 900px) {
    .search-bar.search-active .search-recommendations {
        position: absolute;
        top: calc(100% + 4px);
        left: 12px;
        right: 50px;
        z-index: 102;
    }
}

.search-recommendations.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.recommendation-item {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.recommendation-item:last-child {
    border-bottom: none;
}

.recommendation-item:hover,
.recommendation-item:focus {
    background-color: rgba(0, 0, 0, 0.05);
    outline: none;
}

.recommendation-item.no-results {
    color: rgba(0, 0, 0, 0.5);
    font-style: italic;
    cursor: default;
}

.recommendation-item.no-results:hover {
    background-color: transparent;
}

.recommendation-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.recommendation-category {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 400;
}

/* Menu Container Below Header */
.menu-container-below-header {
    position: fixed;
    left: 10px;
    right: 10px;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-container-below-header.active {
    max-height: 100%;
    opacity: 1;
    background-color: #ffffff20;
    border-radius: 10px;
    margin-top: 10px;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.menu-container-content {
    padding: 40px;
    display: flex;
    gap: 40px;
    min-height: 500px;
}

.menu-left-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-right-column {
    flex: 1;
    display: flex;
    align-self: flex-start;
}

.menu-image-container {
    width: 100%;
    min-height: 100%;
    background-image: url('../images/header-img.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    position: relative;
    overflow: visible;
}

.menu-image-overlay {
    position: relative;
    width: 100%;
    min-height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
}

.menu-info-section {
    display: flex;
    flex-direction: column;
    width: 85%;
    text-align: left;
}

.menu-info-section:first-of-type {
    opacity: 0;
}

.menu-section-title {
    color: #ffffff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    font-weight: 400;

    margin: 0;
    text-transform: uppercase;
    text-align: left;
}

.menu-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-info-item span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.menu-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.menu-search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 10px 45px 10px 15px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.menu-search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.menu-search-icon {
    position: absolute;
    right: 15px;
    color: #ffffff;
    stroke: #ffffff;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.menu-arrow-icon {
    color: #ffffff;
    fill: #ffffff;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-link {
    color: var(--primary-color);
    font-family: 'Bebas Neue', sans-serif;
    text-decoration: none;
    font-size: 75px;
    font-weight: 400;
    line-height: 1.1;

    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    display: block;
    text-transform: uppercase;
}

.mobile-nav-accordion {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-accordion-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 75px;
    line-height: 1.1;
    font-weight: 400;

    color: var(--primary-color);
    text-transform: uppercase;
}

.mobile-nav-accordion-btn span {
    flex: 1;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    flex-shrink: 0;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Default state: Plus shown, Minus hidden */
.accordion-plus {
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-minus {
    display: none !important;
    align-items: center;
    justify-content: center;
}

/* Active state: Plus hidden, Minus shown */
.mobile-nav-accordion.active .accordion-plus {
    display: none !important;
}

.mobile-nav-accordion.active .accordion-minus {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.mobile-nav-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 20px;
}

.mobile-nav-accordion.active .mobile-nav-accordion-content {
    max-height: 500px;
}

.mobile-nav-sub-link {
    display: block;
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Bebas Neue', sans-serif;
    text-decoration: none;
    font-size: 42px;
    font-weight: 400;
    line-height: 1;

    padding: 5px 0;
    transition: all 0.3s;
    text-transform: uppercase;
}

.mobile-nav-sub-link:last-child {
    border-bottom: none;
}

.mobile-nav-sub-link:hover {
    color: var(--primary-color);
}
/* Header Expanded Menu Section */
.header-menu-expanded {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(50px);
}

.floating-header.menu-expanded .header-menu-expanded {
    max-height: 600px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-container {
    display: flex;
    min-height: 400px;
    padding: 40px 20px;
    gap: 40px;
}

.menu-left-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-right-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.expanded-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.expanded-nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;

    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    display: block;
}

.expanded-nav-link:last-child {
    border-bottom: none;
}

.expanded-nav-link:hover {
    color: var(--btn-color);
    padding-left: 10px;
}

/* ===================================
   5. Main Content Styles
   =================================== */
main {
    min-height: calc(100vh - 200px);
    padding: var(--spacing-xl) 0;
}

/* Contact page main - no top padding when hero is full screen */
main:has(.contact-hero) {
    padding-top: 0;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    margin-top: -120px; /* Offset body padding to start from top */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/product-mockup.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: center;
    height: 100%;
    padding: 0 var(--spacing-md);
}

.hero-text {
    text-align: left;
    color: #ffffff;
    max-width: 1200px;
    width: 100%;
}

.hero-text h1 {
    font-size: 100px;
    font-weight: 500;
    font-family: 'bebas neue', sans-serif;
    margin: 0;
    line-height: 0.9;
    text-transform: uppercase;
}

.explore-btn {
    background-color: #ffffff;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    font-family: var(--font-primary);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s;
}

.explore-btn span {
    display: inline-block;
}

.explore-btn-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    transition: all 0.3s;
    flex-shrink: 0;
}

.explore-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.explore-btn:hover .explore-btn-icon {
    stroke: #ffffff;
}

.hero-features {
    position: relative;
    z-index: 1;
    padding: var(--spacing-xl) 0;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
}

.hero-feature-carousel {
    grid-column: span 3;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.hero-feature-item {
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-md);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

.hero-feature-item.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hero-feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.hero-feature-item p {
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.3px;
    opacity: 0.9;
}

.hero-feature-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-md);
}

.carousel-btn {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

/* Contact Hero Section - Full Screen */
.contact-hero {
    width: 100%;
    height: 50vh;
    position: relative;
    margin-top: -120px; /* Offset the body padding-top */
    overflow: hidden;
}

.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    font-weight: 500;
    font-size: 160px;
    color: #f1f3f5;
    line-height: 1;
    font-family: 'bebas neue', sans-serif;
    margin:-50px 50px;
    padding: 0;
}

/* Category Hero Section */
.category-hero {
    width: 100%;
    height: 50vh;
    position: relative;
    margin-top: -120px;
    overflow: hidden;
}

.category-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.category-hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 120px;
    font-weight: 700;
    color: #f1f3f5;
    letter-spacing: -5px;
    line-height: 1;
    margin: 0 30px;
    padding: 0;
    text-transform: uppercase;
}

/* Category Products Section */
.category-products-section {
    padding: 80px 0;
    background-color: #F1F3F5;
}

/* Category Results Bar */
.category-results-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
    margin-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    gap: var(--spacing-md);
}

.shop-filters-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.results-count {
    font-size: 14px;
    color: var(--primary-color);
}

/* Filter Dropdowns */
.filter-dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.filter-dropdown-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
    white-space: nowrap;
}

.filter-dropdown-btn:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.02);
}

.filter-dropdown-btn.active {
    border-color: var(--primary-color);
}

.filter-dropdown-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.filter-dropdown-btn.active svg {
    transform: rotate(180deg);
}

.filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.filter-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-option {
    display: block;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 14px;
    color: var(--primary-color);
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: var(--font-primary);
}

.filter-option:hover {
    background-color: #CED4DA;
}

.filter-option.active {
    background-color: #ADB5BD;
    font-weight: 600;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Price Filter */
.price-filter {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.price-slider-wrapper {
    width: 100%;
}

.price-slider-container {
    position: relative;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    margin: 10px 0;
}

.price-slider-track {
    position: absolute;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    left: 0%;
    right: 0%;
}

.price-slider {
    position: absolute;
    width: 100%;
    height: 6px;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    z-index: 2;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.price-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
}

.price-display {
    font-size: 14px;
    color: var(--primary-color);
    text-align: center;
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.category-filter-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 14px;
    color: var(--primary-color);
    cursor: pointer;
}

.category-filter-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.category-count {
    color: rgba(0, 0, 0, 0.6);
}

/* Clear Filters Button */
.clear-filters-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: #CED4DA;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: var(--font-primary);
}

.clear-filters-btn:hover {
    background-color: #ADB5BD;
    border-color: var(--primary-color);
}

.sorting-filter {
    display: flex;
    align-items: center;
    position: relative;
}

.sorting-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    font-size: 14px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

.sorting-btn:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.02);
}

.sorting-btn.active {
    border-color: var(--primary-color);
}

.sorting-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.sorting-btn.active svg {
    transform: rotate(180deg);
}

.sorting-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.sorting-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sorting-option {
    display: block;
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 14px;
    color: var(--primary-color);
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: var(--font-primary);
}

.sorting-option:hover {
    background-color: #CED4DA;
}

.sorting-option.active {
    background-color: #ADB5BD;
    font-weight: 600;
}

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.category-product-item {
    background-color: #ffffff;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    overflow: hidden;
}


.category-product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    height: 100%;
}

.category-product-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 8px;
}

.category-product-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    padding: var(--spacing-sm);
    text-align: left;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-xl) 0;
    padding: var(--spacing-xs) 0;
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--primary-color);
}

.pagination-btn:hover:not(:disabled) {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.pagination-number {
    min-width: 40px;
    height: 40px;
    padding: 0 var(--spacing-sm);
    background-color: transparent;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

.pagination-number:hover {
    color: rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0.02);
}

.pagination-number.active {
    color: var(--primary-color);
    font-weight: 700;
    background-color: #CED4DA;
}

/* Dynamic fade effect will be applied via JavaScript */

.category-product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-align: left;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: var(--spacing-xl) 0;
    background-color: #f5f5f5;
}

.page-header h1 {
    font-size: 42px;
}

/* Content Sections */
.content-section {
    padding: var(--spacing-xl) 0;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: var(--spacing-md);
}

.content-section p {
    font-size: 16px;
}

/* Home Stats Section */
.home-stats-section {
    padding: 80px 0;
    background-color: #F1F3F5;
}

/* About Products Section */
.about-products-section {
    padding: 80px 0;
}

.about-products-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    padding: var(--spacing-xs) 0 var(--spacing-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    align-items: start;
}

.about-heading h3 {
    font-size: 18px;
    font-weight: 700;
    width: 70%;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.about-description p {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.3px;
}

/* Why Enthusiasts Choose Us Section */
.why-enthusiasts-section {
    padding: 80px 0;
    background-color: #F1F3F5;
}

.why-enthusiasts-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-enthusiasts-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: -1px;
    line-height: 1.2;
}

.why-enthusiasts-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.3px;
}

.why-enthusiasts-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    min-width: 100%;
}

.enthusiast-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--spacing-md);
    background-color: transparent;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    min-width: 0;
}

.enthusiast-card:first-child {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.card-number {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);

}

.card-icon {
    width: 200px !important;
    height: 200px !important;
    min-width: 200px !important;
    min-height: 200px !important;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon img.grayscale-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

.enthusiast-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.enthusiast-card .card-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.3px;
}

/* Our Top Category Section */
.top-category-section {
    padding: 80px 0;
    background-color: #F1F3F5;
}

.top-category-header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: 60px;
    padding: 0 var(--spacing-md);
    align-items: start;
}

.top-category-header-part {
    display: flex;
    flex-direction: column;
}

.top-category-header-part h2 {
    font-size: 48px;
    font-weight: 500;
    font-family: 'bebas neue', sans-serif;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 0px;
    line-height: 0.9;
    text-transform: uppercase;
}

.top-category-header-part p {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.3px;
}


.top-category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--spacing-sm);
}

.category-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    padding: var(--spacing-lg);
    width: 100%;
    aspect-ratio: 4/5;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
    transition: all 0.3s;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.category-card .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.3s ease;
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
    z-index: 2;
    pointer-events: none;
}

.category-card:hover {
    z-index: 10;
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.category-card:hover .card-image {
    opacity: 1;
}

.category-card .card-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: right;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
    align-self: flex-end;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.category-card .card-category {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
    align-self: flex-start;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}


.home-stats-section .stats-container {
    border: none !important;
    gap: var(--spacing-xl);
}

.home-stats-section .stat-item {
    border: none !important;
    border-right: none !important;
    border-bottom: none !important;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding: 0;
    gap: var(--spacing-md);
}

.home-stats-section .stat-item:nth-child(n) {
    border: none !important;
    border-right: none !important;
    border-bottom: none !important;
}

.home-stats-section .stat-number {
    margin-bottom: 0;
    flex-shrink: 0;
}

.home-stats-section .stat-label {
    line-height: 1.4;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background-color: #F1F3F5;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    margin-bottom: 60px;
    align-items: start;
}

.why-choose-header h2 {
    font-size: 82px;
    font-weight: 500;
    font-family: 'bebas neue', sans-serif;
    color: var(--primary-color);
    line-height: 0.9;
    letter-spacing: -2px;
    margin: 0;
}

.why-choose-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.why-choose-text p {
    font-size: 16px;
    line-height: 1.3;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.5px;
}

.why-choose-text p strong {
    font-weight: 700;
}

/* Statistics Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--primary-color);
    border-radius: 0;
    overflow: hidden;
}

.stat-item {
    padding: var(--spacing-xl);
    text-align: center;
    border-right: 1px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item:nth-child(4n) {
    border-right: none;
}

.stat-number {
    font-size: 75px;
    font-weight: 500;
    font-family: 'bebas neue', sans-serif;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.4;
    letter-spacing: -0.5px;
}

/* Our Guiding Principles Section */
.guiding-principles-section {
    padding: 80px 0;
    background-color: #F1F3F5;
}

.principles-header {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    margin-bottom: 30px;
    align-items: start;
}

.principles-label {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin: 0 0 var(--spacing-xs) 0;
    text-transform: capitalize;

}

.principles-left h2 {
    font-size: 82px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 0.9;
    font-family: 'bebas neue', sans-serif;
    margin: 0 0 var(--spacing-sm) 0;
}

.principles-tagline {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
}

.principles-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.5px;
}

.principles-text p strong {
    font-weight: 700;
}

/* Principles Cards */
.principles-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.principle-card {
    position: relative;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    border-radius: 10px;
}

.card-content {
    position: relative;
    z-index: 1;
    padding: var(--spacing-md);
    width: 100%;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.card-icon svg {
    width: 48px;
    height: 48px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: -1px;
}

.card-description {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.5;
    margin: 0;
    max-width: 90%;
}

/* Gallery Carousel Section */
.gallery-section {
    padding: 80px 0;
    background-color: #F1F3F5;
}

.gallery-header {
    text-align: left;
    margin-bottom: 30px;
}

.gallery-header p {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.5;
    width: 50%;
    margin: 0 0 var(--spacing-xs) 0;
    letter-spacing: -0.5px;
}

.gallery-header p:last-child {
    margin-bottom: 0;
}

.gallery-carousel-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.gallery-carousel-wrapper:active {
    cursor: grabbing;
}

.gallery-carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-carousel {
    display: flex;
    gap: var(--spacing-lg);
    width: max-content;
    margin: 0;
    padding: var(--spacing-md) var(--spacing-md);
    align-items: flex-start;
    min-width: 100%;
}

.gallery-item {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: auto;
}

.gallery-item img {
    width: auto;
    height: auto;
    max-height: 500px;
    max-width: 100%;
    object-fit: contain;
    display: block;
    image-rendering: auto;
    pointer-events: none;
    user-select: none;
}

/* Contact Page Styles */
.contact-form-section {
    position: relative;
    padding: 80px 0;
    margin-top: 60px;
    margin-bottom: 60px;
    background-color: #F1F3F5;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1400px;
    background-image: url('../images/contact-form.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--btn-color);
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
}

.contact-value {
    font-size: 16px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    color: var(--primary-color);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-1px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    margin-top: 40px;
    background-color: #F1F3F5;
}

.faq-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.faq-header h2 {
    font-size: 28px;
    letter-spacing: -1px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.faq-header p {
    font-size: 16px;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    letter-spacing: -0.5px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s;
}

.faq-question:hover {
    color: rgb(0, 0, 0);
}

.faq-question span:first-child {
    flex: 1;
    padding-right: var(--spacing-md);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-color);
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(0deg);
}

.faq-answer {
    display: none;
    padding-bottom: var(--spacing-md);
    animation: fadeIn 0.3s ease-in;
}

.faq-answer[style*="display: block"],
.faq-question[aria-expanded="true"] + .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 16px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.7);
    letter-spacing: -0.5px;
    line-height: 1.6;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   6. Footer Styles
   =================================== */

/* Footer Container */
.floating-footer {
    position: relative;
    background-color: #212529;
    color: var(--secondary-color);
    margin: 10px;
    margin-top: var(--spacing-xl);
    padding: 40px 40px 20px;
    border-radius: 10px;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1697898783638-d1e81c7ebab1?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1yZWxhdGVkfDE1fHx8ZW58MHx8fHx8');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.floating-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(33, 37, 41, 0.85);
    z-index: 0;
}

.floating-footer > * {
    position: relative;
    z-index: 1;
}

/* Footer Main Layout */
.footer-main {
    display: flex;
    gap: 10px;
    padding: 10px 10px 50px;
}

.footer-left {
    flex: 0 0 auto;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
}

.footer-logo img {
    max-height: 80px;
    width: auto;
    display: block;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

/* Footer Columns */
.footer-columns {
    display: flex;
    gap: 100px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 0 0 auto;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.footer-column .follow-heading {
    margin-top: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 6px;
}

.footer-column ul li a {
    color: var(--tertiary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-email {
    color: var(--tertiary-color);
    font-size: 14px;
    margin: 0;
    margin-bottom: 8px;
}

/* Footer Divider */
.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.footer-copyright p,
.footer-age p {
    margin: 0;
    font-size: 14px;
    color: var(--secondary-color);
}

/* Footer Disclaimer */
.footer-disclaimer {
    padding: 10px;
    text-align: center;
}

.footer-disclaimer p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* ===================================
   7. Responsive Styles
   =================================== */

/* Tablet Styles (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Hero Section Responsive */
    .hero {
        height: 100vh;
        min-height: 700px;
    }
    
    .hero-text h1,
    .hero-text h2 {
        font-size: 56px;
    }
    
    .hero-features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-md);
    }
    
    .hero-feature-carousel {
        grid-column: span 3;
    }
    
    .hero-feature-controls {
        grid-column: span 1;
    }
    
    .hero-feature-item h3 {
        font-size: 18px;
    }
    
    .hero-feature-item p {
        font-size: 15px;
    }
    
    .footer-columns {
        gap: 50px;
    }
    
    .floating-footer {
        padding: 30px 25px 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .faq-header h2 {
        font-size: 24px;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .why-choose-header h2 {
        font-size: 52px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item:nth-child(2n) {
        border-right: none;
    }
    
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: 1px solid var(--primary-color);
    }
    
    .stat-item:nth-child(4) {
        border-right: none;
    }
    
    .principles-header {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .principles-left h2 {
        font-size: 48px;
    }
    
    .principles-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .principle-card {
        height: 450px;
    }
    
    /* About Products Section Responsive */
    .about-products-section {
        padding: 60px 0;
    }
    
    .about-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: var(--spacing-md) 0;
    }
    
    .about-heading h3 {
        font-size: 18px;
        width: 100%;
    }
    
    .about-description p {
        font-size: 15px;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-header p {
        font-size: 18px;
        width: 80%;
    }
    
    .gallery-item img {
        max-height: 400px;
    }
    
    /* Why Enthusiasts Section Responsive */
    .why-enthusiasts-section {
        padding: 60px 0;
    }
    
    .why-enthusiasts-header h2 {
        font-size: 36px;
    }
    
    .why-enthusiasts-subtitle {
        font-size: 16px;
    }
    
    .why-enthusiasts-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }
    
    .enthusiast-card {
        padding: var(--spacing-md);
        background-color: transparent;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .enthusiast-card:first-child {
        border-left: none;
    }
    
    .enthusiast-card:nth-child(2n) {
        border-right: none;
    }
    
    .enthusiast-card:nth-child(3),
    .enthusiast-card:nth-child(4) {
        border-bottom: none;
    }
    
    .card-icon {
        width: 250px;
        height: 250px;
    }
    
    .enthusiast-card .card-title {
        font-size: 18px;
    }
    
    .enthusiast-card .card-description {
        font-size: 15px;
    }
    
    /* Top Category Section Responsive */
    .top-category-section {
        padding: 60px 0;
    }
    
    .top-category-header {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-bottom: 40px;
    }
    
    .top-category-header-part h2 {
        font-size: 36px;
    }
    
    .top-category-header-part p {
        font-size: 15px;
    }
    
    
    .top-category-cards {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: var(--spacing-md);
    }
    
    .category-card {
        min-height: 220px;
    }
    
    .category-card .card-number {
        font-size: 36px;
    }
    
    .category-card .card-category {
        font-size: 16px;
    }
    
    /* About Products Section Responsive */
    .about-products-section {
        padding: 60px 0;
    }
    
    .about-item {
        grid-template-columns: 1fr 1.3fr;
        gap: var(--spacing-sm);
        padding: var(--spacing-md) 0;
    }
    
    .about-heading h3 {
        font-size: 17px;
        width: 100%;
    }
    
    .about-description p {
        font-size: 15px;
    }
    
    .home-stats-section .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        border: none !important;
    }
    
    .home-stats-section .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
        border: none !important;
        border-right: none !important;
        border-bottom: none !important;
        padding: 0;
    }
    
    .home-stats-section .stat-item:nth-child(n) {
        border: none !important;
        border-right: none !important;
        border-bottom: none !important;
    }

    .contact-hero-text {
        font-size: 100px;
        letter-spacing: 0px;
        transform: translateY(-50%);
    }
}

/* Mobile Styles (max-width: 900px) */
@media (max-width: 900px) {
    /* Header Responsive */
    .floating-header {
        top: 10px;
        left: 10px;
        right: 10px;
    }

    .menu-container-content {
        padding: 25px;
        gap: 15px;
        min-height: auto;
    }
    
    .mobile-nav-link,
    .mobile-nav-accordion-btn {
        padding: 4px 0;
    }
    
    .main-header {
        padding: var(--spacing-sm) 12px;
        flex-wrap: nowrap;
        position: relative;
    }
    
    .header-left {
        gap: 10px;
        flex: 0 0 auto;
    }
    
    .header-center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex: 0 0 auto;
    }
    
    .header-right {
        flex: 0 0 auto;
        margin-left: auto;
    }
    
    /* Hide button text, show only icons */
    .menu-btn span,
    .shop-now-btn span {
        display: none;
    }
    
    /* Make buttons square/icon-only */
    .menu-btn,
    .shop-now-btn {
        padding: 10px;
        min-width: 40px;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
    
    .menu-btn svg,
    .shop-now-btn svg {
        width: 20px;
        height: 20px;
        margin: 0;
    }

    .menu-right-column {
        display: none;
    }
    
    /* Adjust logo size for mobile */
    .logo img {
        max-height: 35px;
    }
    
    /* Temporary Navigation - Hide on mobile */
    .temp-nav {
        display: none;
    }
    
    /* Hide search input on mobile, show only icon button */
    .search-bar {
        border: none;
        background: transparent;
        padding: 0;
        display: flex;
        align-items: center;
        position: relative;
        transition: all 0.3s ease;
    }
    
    .search-bar input[type="search"] {
        display: none;
        position: absolute;
        right: 0;
        top: 0;
        width: 0;
        opacity: 0;
        transition: width 0.3s ease, opacity 0.3s ease;
    }
    
    /* When search is active on mobile */
    .main-header.search-active {
        position: relative;
    }
    
    .main-header.search-active .header-right {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100%;
        z-index: 100;
    }
    
    .search-bar.search-active {
        width: 100%;
        height: 100%;
        padding: 0 50px 0 12px;
        display: flex;
        align-items: center;
    }
    
    .search-bar.search-active input[type="search"] {
        display: block;
        flex: 1;
        width: 100%;
        opacity: 1;
        position: relative;
        border: 1px solid rgba(0, 0, 0, 0.15);
        border-radius: 4px;
        padding: 10px 12px;
        font-size: 16px;
        font-family: var(--font-primary);
        background: var(--secondary-color);
        color: var(--primary-color);
        -webkit-appearance: none;
        appearance: none;
        min-width: 0;
    }
    
    .search-bar.search-active input[type="search"]::placeholder {
        color: rgba(0, 0, 0, 0.4);
        font-weight: 400;
    }
    
    /* Hide other header elements when search is active */
    .main-header.search-active .header-left,
    .main-header.search-active .header-center {
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }
    
    /* Make search button standalone icon button */
    .search-btn {
        padding: 10px;
        min-width: 40px;
        width: 40px;
        height: 40px;
        border: none;
        background-color: var(--btn-color);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 101;
        flex-shrink: 0;
    }
    
    .search-bar.search-active .search-btn {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .search-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .search-btn .search-icon {
        display: block;
    }
    
    .search-btn .clear-icon {
        display: none;
    }
    
    .search-bar.search-active .search-btn .clear-icon {
        fill: var(--secondary-color);
    }
    
    /* Adjust announcement bar */
    .announcement-content {
        margin: 0 12px;
    }
    
    .announcement-content p {
        font-size: 11px;
    }
    
    /* Hero Section Responsive */
    .hero {
        height: 100vh;
        min-height: 600px;
        margin-top: -140px;
    }
    
    .hero-text h1,
    .hero-text h2 {
        font-size: 55px;
    }

    .explore-btn {
        font-size: 14px;
        padding: 10px 14px;
        margin-top: 10px;
    }
    
    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .hero-feature-carousel {
        grid-column: span 1;
    }
    
    .hero-feature-controls {
        grid-column: span 1;
    }
    
    .hero-feature-item h3 {
        font-size: 18px;
    }
    
    .hero-feature-item p {
        font-size: 14px;
    }
    
    /* Contact Hero Responsive */
    .contact-hero {
        height: 50vh;
        margin-top: -140px; /* Adjust for mobile header height */
    }
    
    .contact-hero-text {
        font-size: 60px;
        letter-spacing: 0px;
        transform: translateY(-75%);
    }
    
    /* Contact Form Responsive */
    .contact-form-section {
        padding: 60px 0;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .contact-form-section::before {
        opacity: 0.1;
        max-width: 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .contact-info h2 {
        font-size: 24px;
    }
    
    .contact-info > p {
        font-size: 14px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .contact-value {
        font-size: 14px;
    }

    
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .faq-section {
        padding: 60px 0;
        margin-top: 30px;
    }
    
    /* Why Choose Section Responsive */
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-bottom: 40px;
    }
    
    .why-choose-header h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .why-choose-text p {
        font-size: 14px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item {
        padding: var(--spacing-lg);
        border-right: 1px solid var(--primary-color);
        border-bottom: 1px solid var(--primary-color);
    }
    
    .stat-item:nth-child(2n) {
        border-right: none;
    }
    
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 55px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    /* Home Stats Section - Override all borders */
    .home-stats-section .stats-container,
    .home-stats-section .stat-item,
    .home-stats-section .stat-item:nth-child(n) {
        border: none !important;
        border-right: none !important;
        border-bottom: none !important;
        border-top: none !important;
        border-left: none !important;
    }
    
    /* Home Stats Section Responsive */
    .home-stats-section {
        padding: 60px 0;
    }
    
    .home-stats-section .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        border: none !important;
    }
    
    .home-stats-section .stat-item {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
        border: none !important;
        border-right: none !important;
        border-bottom: none !important;
        padding: 0;
    }
    
    .home-stats-section .stat-item:nth-child(n) {
        border: none !important;
        border-right: none !important;
        border-bottom: none !important;
    }
    
    .home-stats-section .stat-number {
        font-size: 36px;
    }
    
    .home-stats-section .stat-label {
        font-size: 12px;
    }
    
    /* About Products Section Responsive */
    .about-products-section {
        padding: 60px 0;
    }
    
    .about-item {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        padding: var(--spacing-md) 0;
    }
    
    .about-heading h3 {
        font-size: 16px;
        width: 100%;
    }
    
    .about-description p {
        font-size: 14px;
    }
    
    /* Guiding Principles Responsive */
    .principles-header {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        margin-bottom: 20px;
    }
    
    .principles-left h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .principles-tagline {
        font-size: 16px;
    }
    
    .principles-text {
        padding-top: 0;
    }
    
    .principles-text p {
        font-size: 14px;
    }
    
    .principles-cards {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .principle-card {
        height: 400px;
    }
    
    .card-content {
        padding: var(--spacing-md);
    }
    
    .card-title {
        font-size: 24px;
    }
    
    .card-description {
        font-size: 14px;
        max-width: 100%;
    }
    
    /* Gallery Section Responsive */
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-header {
        margin-bottom: 40px;
    }
    
    .gallery-header p {
        font-size: 14px;
        width: 100%;
    }
    
    .gallery-carousel {
        gap: var(--spacing-md);
    }
    
    .gallery-item img {
        max-height: 300px;
    }
    
    /* Why Enthusiasts Section Responsive */
    .why-enthusiasts-section {
        padding: 60px 0;
    }
    
    .why-enthusiasts-header {
        margin-bottom: 40px;
    }
    
    .why-enthusiasts-header h2 {
        font-size: 32px;
    }
    
    .why-enthusiasts-subtitle {
        font-size: 16px;
    }
    
    .why-enthusiasts-cards {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .enthusiast-card {
        padding: var(--spacing-md);
        background-color: transparent;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .enthusiast-card:last-child {
        border-bottom: none;
    }
    
    .card-icon {
        width: 200px;
        height: 200px;
    }
    
    .enthusiast-card:first-child {
        border-left: none;
    }
    .enthusiast-card .card-title {
        font-size: 18px;
    }
    
    .enthusiast-card .card-description {
        font-size: 14px;
    }
    
    /* Top Category Section Responsive */
    .top-category-section {
        padding: 60px 0;
    }
    
    .top-category-header {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        margin-bottom: 40px;
    }
    
    .top-category-header-part h2 {
        font-size: 32px;
    }
    
    .top-category-header-part p {
        font-size: 14px;
    }
    
    
    .top-category-cards {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--spacing-sm);
    }
    
    .category-card {
        min-height: 200px;
        padding: var(--spacing-md);
    }
    
    .category-card .card-number {
        font-size: 32px;
    }
    
    .category-card .card-category {
        font-size: 14px;
    }
    
    /* FAQ Responsive */
    .faq-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .faq-header h2 {
        font-size: 24px;
    }
    
    .faq-header p {
        font-size: 14px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: var(--spacing-sm) 0;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    /* Footer Responsive */
    .floating-footer {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .footer-main {
        flex-direction: column;
        gap: 30px;
        padding: 0 0 30px;
    }
    
    .footer-left {
        width: 100%;
        display: flex;
        justify-content: left;
    }
    
    .footer-logo img {
        max-height: 60px;
    }
    
    .footer-right {
        width: 100%;
        justify-content: center;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .footer-column ul li {
        margin-bottom: 6px;
    }
    
    .footer-column ul li a {
        font-size: 14px;
    }
    
    .footer-email {
        font-size: 14px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        padding: 15px 0;
    }
    
    .footer-copyright p,
    .footer-age p {
        font-size: 12px;
    }
    
    .footer-disclaimer {
        padding: 15px 0;
    }
    
    .footer-disclaimer p {
        font-size: 14px;
        text-align: left;
    }
}

/* ===================================
   Product Page Styles
   =================================== */

.product-page-section {
    padding: 0 0 80px;
    background-color: #F1F3F5;
}

/* Product Breadcrumb */
.product-breadcrumb {
    width: 100%;
    background-color: #CED4DA;
    padding: var(--spacing-xs) 0;
    position: sticky;
    top: 0;
    z-index: 998;
    margin-top: 100px;
}

.product-breadcrumb .container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

.product-breadcrumb a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    padding: 0 10px;
    line-height: 1.5;
}

.product-breadcrumb a:hover,
.product-breadcrumb a:visited,
.product-breadcrumb a:active {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.product-breadcrumb span {
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 14px;
    padding: 0 10px;
    line-height: 1.5;
}

.product-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin: 60px 0;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Product Images */
.product-images {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    position: sticky;
    top: 120px;
    align-self: start;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background-color: #f5f5f5;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-thumbnails-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.product-thumbnails {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: hidden;
    scroll-behavior: smooth;
    flex: 1;
    /* Hide scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.product-thumbnails::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.thumbnail-nav-btn {
    background-color: var(--secondary-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: var(--primary-color);
    padding: 0;
}

.thumbnail-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.thumbnail-nav-btn:active {
    transform: scale(0.95);
}

.thumbnail-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.thumbnail-nav-btn svg {
    width: 16px;
    height: 16px;
}

.product-thumbnails .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s;
    object-fit: cover;
    flex-shrink: 0;
}

.product-thumbnails .thumbnail:hover,
.product-thumbnails .thumbnail.active {
    border-color: #00000050;
    opacity: 1;
}

.product-thumbnails .thumbnail:not(.active) {
    opacity: 0.6;
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.product-category {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-category a {
    color: inherit;
    text-decoration: none;
}

.product-category a:hover,
.product-category a:visited,
.product-category a:active {
    color: inherit;
    text-decoration: none;
}

.product-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.stars {
    color: #ffc107;
    font-size: 18px;
}

.rating-text {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 20px;
    color: rgba(0, 0, 0, 0.4);
    text-decoration: line-through;
}

.discount-badge {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.product-description-short {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: -0.3px;
    color: var(--primary-color);
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.option-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.option-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.option-btn {
    padding: 10px 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.option-btn:hover {
    border-color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.05);
}

.option-btn.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.quantity-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.quantity-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background-color: #f5f5f5;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.quantity-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.quantity-controls input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    -moz-appearance: textfield;
    appearance: textfield;
}

.quantity-controls input::-webkit-outer-spin-button,
.quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.add-to-cart-btn {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
    background-color: var(--primary-color);
    color: #ffffff;
}

.add-to-cart-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-2px);
}

.product-actions .quantity-group {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    flex-shrink: 0;
}

.product-actions .quantity-group label {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    white-space: nowrap;
    font-family: var(--font-primary);
    letter-spacing: -0.3px;
}

.product-actions .quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    height: 48px;
}

.product-actions .quantity-controls:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.product-actions .quantity-btn {
    width: 44px;
    height: 48px;
    border: none;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    line-height: 1;
    padding: 0;
}

.product-actions .quantity-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.product-actions .quantity-btn:active {
    background-color: rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
}

.product-actions .quantity-controls input {
    width: 55px;
    height: 48px;
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    -moz-appearance: textfield;
    appearance: textfield;
    font-family: var(--font-primary);
    padding: 0;
    letter-spacing: -0.3px;
}

.product-actions .quantity-controls input::-webkit-outer-spin-button,
.product-actions .quantity-controls input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-actions .quantity-controls input:focus {
    outline: none;
    background-color: var(--secondary-color);
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Product Accordion */
.product-accordion {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.accordion-item {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all 0.3s;
    font-family: var(--font-primary);
}


.accordion-icon {
    width: 50px;
    height: 50px;
    stroke: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    background-color: #00000050;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Accordion Icon - Smaller, no background */
.product-accordion .accordion-icon {
    width: 20px;
    height: 20px;
    background-color: transparent;
    border-radius: 0;
    padding: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.accordion-content.active {
    max-height: 2000px;
    padding: 0 0 var(--spacing-md) 0;
}


.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 5px;
    box-sizing: border-box;
    table-layout: fixed;
}

.specs-table td {
    padding: var(--spacing-sm);
    font-size: 16px;
    color: var(--primary-color);
    vertical-align: top;
}

.specs-table td:first-child {
    font-weight: 600;
    width: 40%;
    background-color: #ADB5BD;
}

.specs-table td:last-child {
    background-color: #DEE2E6;
}

/* Reviews */
.review-item {
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.review-header strong {
    font-size: 16px;
    color: var(--primary-color);
}

.review-stars {
    color: #ffc107;
    font-size: 14px;
}

.review-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-color);
    margin: var(--spacing-sm) 0;
}

.review-date {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

/* Related Products */
.related-products {
    margin-top: 100px;
}

.related-products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.related-products h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    text-align: left;
    flex-shrink: 0;
}

.related-products-description {
    font-size: 14px;
    color: var(--primary-color);
    line-height: 1.6;
    margin: 0;
    text-align: right;
    max-width: 65%;
    flex: 1;
}

.related-products-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-lg);
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.related-product-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: var(--spacing-sm);
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.related-product-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.related-product-item img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
}

.related-product-item h4 {
    font-size: 14px;
    font-weight: 600;
    text-align: left;
    color: var(--primary-color);
}

/* Product Page Responsive */
@media (max-width: 1024px) {
    .product-page-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .product-images {
        position: static;
        max-height: none;
        overflow-y: visible;
        width: 100%;
    }
    
    .product-details {
        width: 100%;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .product-breadcrumb {
        margin-top: 80px;
    }
}

@media (max-width: 900px) {
    .product-page-section {
        padding: 20px 0 60px;
    }

    .mobile-nav-link,
    .mobile-nav-accordion-btn {
        font-size: 52px;
        padding: 4px 0;
    }
    
    .mobile-nav-sub-link {
        font-size: 36px;
        padding: 3px 0;
    }
    
    .accordion-icon {
        width: 35px;
        height: 35px;
    }
    
    .product-breadcrumb {
        margin-top: 70px;
        padding: 12px 0;
    }
    
    .product-breadcrumb .container {
        padding: 0 var(--spacing-sm);
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .product-breadcrumb a,
    .product-breadcrumb span {
        font-size: 13px;
        padding: 0 6px;
        line-height: 1.4;
        white-space: nowrap;
    }
    
    .product-breadcrumb a:first-child {
        padding-left: 0;
    }
    
    .related-products-header {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .related-products-description {
        text-align: left;
        max-width: 100%;
    }
    
    .product-page-content {
        padding: 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .product-images {
        width: 100%;
        padding: 0;
    }
    
    .product-main-image {
        width: 100%;
    }
    
    .product-details {
        width: 100%;
        padding: 0;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .product-actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: var(--spacing-md);
    }
    
    .product-actions .quantity-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .product-actions .quantity-controls {
        margin-left: auto;
        height: 44px;
    }
    
    .product-actions .quantity-btn {
        width: 40px;
        height: 44px;
        font-size: 18px;
    }
    
    .product-actions .quantity-controls input {
        width: 50px;
        height: 44px;
        font-size: 14px;
    }
    
    .product-actions .add-to-cart-btn {
        width: 100%;
    }
    
    .tab-buttons {
        flex-wrap: wrap;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    .category-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-page-section {
        padding: 15px 0 40px;
    }
    
    .product-breadcrumb {
        margin-top: 60px;
        padding: 10px 0;
    }
    
    .product-breadcrumb .container {
        padding: 0 var(--spacing-xs);
        gap: 2px;
    }
    
    .product-breadcrumb a,
    .product-breadcrumb span {
        font-size: 12px;
        padding: 0 4px;
        line-height: 1.5;
    }
    
    .product-breadcrumb a:first-child {
        padding-left: 0;
    }
    
    .product-page-content {
        gap: var(--spacing-md);
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-main-image {
        aspect-ratio: 1;
    }
    
    .product-thumbnails-wrapper {
        gap: 6px;
    }
    
    .thumbnail-nav-btn {
        width: 28px;
        height: 28px;
    }
    
    .thumbnail-nav-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .product-thumbnails .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .product-accordion {
        width: 100%;
    }
    
    .specs-table {
        width: 100%;
        font-size: 14px;
    }
    
    .specs-table td {
        padding: var(--spacing-xs);
    }
    
    .category-hero-text {
        font-size: 40px;
        letter-spacing: -2px;
    }
    
    .category-results-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .sorting-filter {
        width: 100%;
    }
    
    .sorting-btn {
        width: 100%;
        justify-content: space-between;
    }
    
    .category-products-grid {
        grid-template-columns: 1fr;
    }
    
    .category-products-section {
        padding: 40px 0;
    }
}

/* ===================================
   Account Page Styles
   =================================== */
.account-section {
    padding: 80px 0;
}

.account-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.account-tab {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: var(--font-size-base);
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
}

.account-tab:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.02);
}

.account-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.account-tab-content {
    display: none;
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: var(--spacing-xl);
    border-radius: 10px;
}

.account-tab-content.active {
    display: block;
}

.account-tab-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.account-form .form-group {
    margin-bottom: var(--spacing-sm);
    display: flex;
    flex-direction: column;
}

.account-form .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    text-transform: capitalize;
    letter-spacing: -0.3px;
}

.account-form .form-group input[type="text"],
.account-form .form-group input[type="email"],
.account-form .form-group input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    background-color: white;
    color: var(--primary-color);
    transition: all 0.3s;
}

.account-form .form-group input[type="text"]:focus,
.account-form .form-group input[type="email"]:focus,
.account-form .form-group input[type="password"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrapper input[type="password"],
.password-input-wrapper input[type="text"] {
    padding-right: 50px;
}

.password-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.5);
    transition: color 0.3s;
}

.password-toggle:hover {
    color: var(--primary-color);
}

.password-toggle .eye-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.account-form .form-group-checkbox {
    flex-direction: row;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.account-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}

.account-form .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.account-form .checkbox-label span {
    font-size: var(--font-size-base);
    color: var(--primary-color);
}

.account-submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: var(--font-size-base);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-primary);
    margin-top: var(--spacing-sm);
}

.account-submit-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.form-footer {
    text-align: center;
    margin-top: var(--spacing-md);
}

.forgot-password-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: var(--font-size-base);
    transition: color 0.3s;
}

.forgot-password-link:hover {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: underline;
}

.form-info {
    background-color: rgba(0, 0, 0, 0.02);
    padding: var(--spacing-md);
    border-radius: 10px;
    margin-bottom: var(--spacing-sm);
}

.form-info p {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--primary-color);
    margin: 0;
}

.form-info a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-info a:hover {
    color: rgba(0, 0, 0, 0.7);
}

/* Account Benefits Section */
.account-benefits-section {
    padding: var(--spacing-xl) 0;
}

.account-benefits-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -1px;
    font-family: var(--font-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: #ffffff;
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-primary);
}

.benefit-card p {
    font-size: var(--font-size-base);
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Account Security Section */
/* Account Help Section */
.account-help-section {
    padding: var(--spacing-xl) 0;
}

.account-help-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
    font-family: var(--font-primary);
}

.help-subtitle {
    text-align: center;
    font-size: var(--font-size-base);
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: var(--spacing-xl);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.help-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.help-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.help-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 12px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.help-card:hover .help-icon {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.help-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-primary);
}

.help-card p {
    font-size: var(--font-size-base);
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.help-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.help-link:hover {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: underline;
}

/* Responsive Account Page */
@media (max-width: 768px) {
    .account-tabs {
        max-width: 100%;
    }
    
    .account-tab {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 16px;
    }
    
    .account-tab-content {
        padding: var(--spacing-md);
        max-width: 100%;
    }
    
    .account-tab-content h2 {
        font-size: 24px;
    }
    
    .account-benefits-section,
    .account-help-section {
        padding: var(--spacing-lg) 0;
    }
    
    .account-benefits-section .section-title,
    .account-help-section .section-title {
        font-size: 28px;
        margin-bottom: var(--spacing-lg);
    }
    
    .benefits-grid,
    .help-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .benefit-card,
    .help-card {
        padding: var(--spacing-md);
    }
}
