/**
 * Beyond Only Exim - Frontend Styles
 * EXACT Design Match
 */

/* ========================================
   CSS VARIABLES
======================================== */
:root {
    --primary-yellow: #ffe900;
    --primary-orange: #ff9800;
    --primary-dark: #1a1a2e;
    --header-bg: #2d3748;
    --bg-dark: #0f0f1a;
    --bg-darker: #0a0a12;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #888888;
    --border-color: #2a2a3e;

    --font-heading: 'Good Times', sans-serif;
    --font-body: 'Ropa Sans', sans-serif;
    --font-script: 'Great Vibes', cursive;
    --font-italic: 'Playfair Display', serif;
    --font-nav: 'Good Times', sans-serif;
}

/* ========================================
   RESET & BASE
======================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

/* Body text - Ropa Sans */
p,
span,
li,
td,
th,
label,
input,
textarea,
select,
button,
a {
    font-family: var(--font-body);
}

/* Headings - Good Times */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   TYPOGRAPHY
======================================== */
.section-subtitle {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 8px;
    opacity: 0.7;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 50px;
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    display: inline-block;
    padding: 18px 60px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

.btn-yellow:hover {
    background-color: #e6d400;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 234, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--text-white);
    color: var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--primary-dark);
}

/* ========================================
   HEADER - Exact Match with Rounded Container
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 30px;
}

.header-container {
    background-color: rgba(25, 30, 40, 0.97);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 10px 30px;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    gap: 20px;
}

/* Logo */
.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* Logo with Circle (fallback) */

.logo-circle {
    width: 70px;
    height: 70px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    flex-shrink: 0;
}

.logo-text-container {
    text-align: center;
    line-height: 1;
}

.logo-beyond {
    font-family: var(--font-script);
    font-size: 14px;
    color: var(--primary-yellow);
    display: block;
}

.logo-exim {
    font-family: var(--font-script);
    font-size: 17px;
    color: var(--primary-yellow);
    display: block;
    margin-top: -2px;
}

.logo-tm {
    font-size: 6px;
    color: var(--primary-yellow);
    vertical-align: super;
    font-family: var(--font-body);
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-orange);
    display: block;
    margin-top: 4px;
    text-align: center;
}

/* Navigation */
.main-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 50px;
    flex-shrink: 0;
}

.main-nav a {
    font-family: 'Good Times', sans-serif;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-white);
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.main-nav a.active {
    color: var(--primary-yellow);
}

.main-nav a:hover {
    color: var(--primary-yellow);
}

/* Header Actions */
.header-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

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

.cart-link {
    display: flex;
    align-items: center;
    /* gap: 5px; - Removed to prevent gap issues with absolute positioning */
    color: var(--primary-yellow);
    text-decoration: none;
    position: relative;
    /* Added for absolute positioning of badge */
}

.cart-link .cart-icon {
    font-size: 20px;
    height: auto;
    width: auto;
    object-fit: initial;
}

.cart-count {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    /* Changed to absolute for badge style */
    top: -8px;
    right: -8px;
    z-index: 1;
}

.user-link {
    color: var(--primary-yellow);
    font-size: 20px;
}

.user-link:hover {
    color: #fff;
}

.search-link {
    color: var(--primary-yellow);
    font-size: 20px;
}

.search-link:hover {
    color: #fff;
}

/* Currency Selector */
.currency-selector-wrapper {
    position: relative;
}

.currency-selector-btn {
    background: transparent;
    border: 1px solid rgba(255, 233, 0, 0.3);
    color: var(--primary-yellow);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.currency-selector-btn:hover {
    border-color: var(--primary-yellow);
    background-color: rgba(255, 233, 0, 0.1);
}

.currency-code {
    font-size: 13px;
    letter-spacing: 0.5px;
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: rgba(42, 42, 62, 0.95);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid rgba(255, 233, 0, 0.2);
    display: none;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.currency-selector-wrapper:hover .currency-dropdown,
.currency-selector-wrapper .currency-dropdown:hover {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.currency-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.currency-option:last-child {
    border-bottom: none;
}

.currency-option:hover {
    background-color: rgba(255, 233, 0, 0.1);
    color: var(--primary-yellow);
}

.currency-option.active {
    background-color: rgba(255, 233, 0, 0.15);
    color: var(--primary-yellow);
}

.currency-option.active::after {
    content: '✓';
    margin-left: auto;
    color: var(--primary-yellow);
    font-weight: bold;
}

.currency-symbol {
    font-size: 16px;
    font-weight: 600;
    min-width: 30px;
}

.currency-name {
    flex: 1;
}

.currency-code-small {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Create a bridge to prevent gap */
.currency-selector-wrapper::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 5px;
    background: transparent;
    z-index: 999;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-yellow);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hide hamburger when menu is open - close button is inside the menu */

/* Mobile Menu Close Button */
.mobile-menu-close {
    display: none;
    position: absolute;
    top: 25px;
    right: 25px;
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.mobile-menu-close:hover {
    background: var(--primary-yellow);
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ========================================
   HERO SECTION - Exact Match
======================================== */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    margin-top: 120px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: normal;
    letter-spacing: 6px;
    line-height: 1.2;
    color: var(--primary-yellow);
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   CATEGORIES SECTION - Dark with Background Image
======================================== */
.categories-section {
    background-color: var(--bg-darker);
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-18_233950_6944436ede2c6.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 26, 0.85);
    z-index: 1;
}

.categories-section .container {
    position: relative;
    z-index: 2;
}

.categories-header {
    text-align: center;
    margin-bottom: 50px;
}

.categories-header .section-subtitle {
    color: var(--text-muted);
    opacity: 1;
}

.categories-header .section-title {
    color: var(--text-white);
    margin-bottom: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    display: block;
    text-align: center;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: -30px;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.08);
}

.category-card-title {
    background-color: var(--primary-yellow);
    padding: 50px 20px 25px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.category-card-title h3 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin: 0;
}

/* ========================================
   FEATURES SECTION
======================================== */
.features-section {
    background-color: var(--primary-yellow);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background-color: #2d3748;
    border-radius: 20px;
    text-align: center;
    padding: 50px 35px 45px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    margin-bottom: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 60px;
    color: var(--primary-yellow);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.feature-text {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: #e0e0e0;
    line-height: 1.8;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 40px 30px;
    }
}

/* ========================================
   BEST SELLERS SECTION
======================================== */
.products-section {
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_012727_69445ca77ee61.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0;
}

.products-header {
    text-align: center;
    margin-bottom: 45px;
}

.products-header .section-title {
    color: var(--text-white);
    margin-bottom: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

.product-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card-image {
    position: relative;
    height: 130px;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.03);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 5px;
    line-height: 1.4;
}

.product-card-price {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-yellow);
}

.products-footer {
    text-align: center;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_013323_69445e0b7503e.jpg');
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #ffdc02;
    padding: 80px 0 0;
    position: relative;
}

.footer-top {
    text-align: center;
    padding-top: 20px;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-image {
    height: 90px;
    width: auto;
    object-fit: contain;
}

/* Cart Tooltip Styles */
.cart-tooltip {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: var(--bg-dark);
    border: 1px solid var(--primary-yellow);
    padding: 10px 15px;
    border-radius: 4px;
    min-width: 140px;
    text-align: right;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

/* Tooltip Arrow */
.cart-tooltip::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 10px;
    width: 10px;
    height: 10px;
    background: var(--bg-dark);
    border-left: 1px solid var(--primary-yellow);
    border-top: 1px solid var(--primary-yellow);
    transform: rotate(45deg);
}

.cart-wrapper:hover .cart-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.cart-label {
    display: block;
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.cart-total-amount {
    display: block;
    color: var(--primary-yellow);
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-heading);
}

.cart-icon {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-circle {
    margin: 0 auto;
}

.footer-logo .logo-beyond,
.footer-logo .logo-exim {
    color: var(--primary-dark);
}

.footer-logo .logo-sub {
    color: var(--primary-dark);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 35px;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    font-size: 12px;
    color: var(--primary-dark);
    opacity: 0.75;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.certification-logo {
    max-width: 70px;
    margin-top: 8px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--primary-dark);
    background-color: transparent;
    color: var(--primary-dark);
    font-size: 12px;
}

.newsletter-form input::placeholder {
    color: rgba(26, 26, 46, 0.5);
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: var(--primary-dark);
    border: none;
    color: var(--primary-yellow);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
}

.newsletter-text {
    font-size: 11px;
    color: var(--primary-dark);
    opacity: 0.7;
    line-height: 1.7;
}

.export-link {
    margin-top: 18px;
}

.export-link h5 {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.export-link a {
    font-size: 12px;
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer-bottom {
    background-color: var(--primary-dark);
    padding: 18px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: var(--text-white);
    opacity: 0.7;
}

/* ========================================
   ABOUT US PAGE
======================================== */

/* About Hero Section */
.about-hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_115940_6944f0d4500cf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-hero-bg::before {
    display: none;
}

.about-hero-overlay {
    display: none;
}

.about-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 30px;
}

.about-hero-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto;
}

/* Core Values Section */
.core-values-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.core-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_121958_6944f596b1717.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.core-values-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.core-values-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    flex: 0 0 auto;
}

.core-values-buttons {
    display: flex;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.core-value-button {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    padding: 25px 45px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    flex: 0 0 auto;
    box-shadow: 0 4px 15px rgba(255, 233, 0, 0.2);
}

.core-value-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 233, 0, 0.4);
}

.core-value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.core-value-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-dark);
}

.core-value-button span {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-dark);
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_123010_6944f7fa25ced.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.mission-section .container {
    position: relative;
    z-index: 2;
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_123051_6944f823b4193.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.vision-section .container {
    position: relative;
    z-index: 2;
}

.mission-vision-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.mission-item {
    justify-content: flex-start;
}

.vision-item {
    justify-content: flex-start;
}

.mission-vision-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    order: 2;
}

.mission-item .mission-vision-icon {
    order: 2;
}

.vision-item .mission-vision-icon {
    order: 2;
}

.mission-vision-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--text-white);
}

.mission-vision-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-yellow);
}

.mission-vision-content {
    flex: 1;
    max-width: 45%;
}

.mission-item .mission-vision-content {
    text-align: left;
    order: 1;
}

.vision-item .mission-vision-content {
    text-align: right;
    order: 3;
}

.mission-vision-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-white);
}

/* What Makes Us Different Section */
.what-makes-different-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.what-makes-different-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_124306_6944fb0215dfc.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.what-makes-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    text-align: center;
    margin-bottom: 60px;
}

.what-makes-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.what-makes-card {
    background-color: rgba(35, 35, 50, 0.8);
    border-radius: 18px;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 233, 0, 0.15);
    backdrop-filter: blur(5px);
}

.what-makes-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 233, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 233, 0, 0.2);
}

.what-makes-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow);
}

.what-makes-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary-yellow);
}

.what-makes-card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin: 0;
}

.what-makes-card-text {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-white);
    margin: 0;
}

/* ========================================
   CONTACT US PAGE
======================================== */

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_125039_6944fcc7c4b36.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 26, 0.85);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 30px;
}

.contact-hero-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Content Section */
.contact-content-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_125117_6944fcedc69e0.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.contact-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Contact Info Column */
.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-item {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-white);
}

.contact-info-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--text-white);
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 10px;
}

.contact-info-value {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-white);
    margin: 0;
}

/* Contact Form Column */
.contact-form-column {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 14px;
}

.contact-alert-error {
    background-color: rgba(255, 82, 82, 0.2);
    border: 1px solid rgba(255, 82, 82, 0.5);
    color: #ff5252;
}

.contact-alert-success {
    background-color: rgba(0, 200, 83, 0.2);
    border: 1px solid rgba(0, 200, 83, 0.5);
    color: #00c853;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-half {
    flex: 1;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.form-control {
    font-family: var(--font-body);
    font-size: 14px;
    padding: 12px 16px;
    background-color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--primary-dark);
    width: 100%;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 233, 0, 0.1);
}

.form-control::placeholder {
    color: rgba(26, 26, 46, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-body);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a2e' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.btn-submit {
    background-color: var(--primary-orange);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
}

/* ========================================
   SHOP/PRODUCTS PAGE
======================================== */

/* Shop Hero Section */
.shop-hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
    z-index: 10;
    /* Ensure hero is above sidebar when sidebar is hidden */
}

.shop-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_115940_6944f0d4500cf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 26, 0.85);
    z-index: 2;
}

.shop-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.shop-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 30px;
}

.shop-hero-description {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-white);
    max-width: 800px;
    margin: 0 auto;
}

/* Shop Content Section */
.shop-content-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    z-index: 5;
    /* Ensure content section is above sidebar when sidebar is hidden */
}

.shop-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 233, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 233, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.shop-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Shop Sidebar */
/* Shop Sidebar Overlay */
.shop-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.shop-sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.shop-sidebar {
    position: sticky;
    top: 120px;
    transition: transform 0.3s ease;
    transform: translateX(0);
    /* Default visible on desktop */
}

.filter-section {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
}

.filter-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin: 0;
}

.btn-close-sidebar {
    display: none;
    background-color: transparent;
    border: none;
    color: var(--text-white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.btn-close-sidebar:hover {
    background-color: rgba(255, 233, 0, 0.2);
    color: var(--primary-yellow);
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-white);
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.filter-search-form {
    display: flex;
    gap: 8px;
}

.filter-input {
    flex: 1;
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 14px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.filter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.filter-search-btn {
    padding: 10px 16px;
    background-color: var(--primary-yellow);
    border: none;
    border-radius: 8px;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-search-btn:hover {
    background-color: #e6d400;
    transform: translateY(-2px);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    padding: 10px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-option:hover {
    background-color: rgba(255, 233, 0, 0.1);
    color: var(--primary-yellow);
}

.filter-option.active {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-weight: 500;
}

.price-filter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.price-inputs .filter-input {
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

.price-separator {
    color: var(--text-white);
    font-weight: 500;
    flex-shrink: 0;
    padding: 0 4px;
}

.btn-filter {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-filter:hover {
    background-color: #e6d400;
    transform: translateY(-2px);
}

.btn-clear-filters {
    background-color: transparent;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

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

/* Shop Main */
.shop-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-toolbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-filter-mobile {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter-mobile:hover {
    background-color: #e6d400;
    transform: translateY(-2px);
}

.btn-filter-mobile i {
    font-size: 16px;
}

.shop-results p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 12px;
}

.shop-sort label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
}

.sort-select {
    font-family: var(--font-body);
    font-size: 14px;
    padding: 10px 14px;
    background-color: rgba(42, 42, 62, 0.8);
    border: 1px solid rgba(255, 233, 0, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-yellow);
}

.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.shop-product-card {
    background-color: rgba(42, 42, 62, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 233, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.shop-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 233, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 233, 0, 0.2);
}

.shop-product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shop-product-card:hover .shop-product-image img {
    transform: scale(1.05);
}

.product-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--primary-orange);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.shop-product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.shop-product-category {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-product-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.shop-product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.price-current {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-yellow);
}

.price-compare {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.shop-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.shop-no-products p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Pagination */
/* Pagination */
.shop-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 40px;
    width: 100%;
}

.pagination-link {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    background-color: rgba(42, 42, 62, 0.6);
    border: 1px solid rgba(255, 233, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    /* Changed from flex to inline-flex to prevent full width */
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 40px;
    /* Ensure square-ish shape for numbers */
}

.pagination-link:hover {
    background-color: rgba(255, 233, 0, 0.1);
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.pagination-link.active {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    border-color: var(--primary-yellow);
    font-weight: 600;
}

/* ========================================
   SINGLE PRODUCT PAGE
======================================== */

/* Product Detail Section */
.product-detail-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.product-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 233, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 233, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.product-detail-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Product Images */
.product-images-column {
    position: sticky;
    top: 120px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    background-color: rgba(42, 42, 62, 0.6);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

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

.product-thumbnails {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background-color: rgba(42, 42, 62, 0.6);
}

.product-thumbnail:hover {
    border-color: var(--primary-yellow);
    transform: scale(1.05);
}

.product-thumbnail.active {
    border-color: var(--primary-yellow);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.product-category-breadcrumb {
    margin-bottom: 10px;
}

.product-category-breadcrumb a {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--primary-yellow);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.product-category-breadcrumb a:hover {
    text-decoration: underline;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    margin: 0;
    line-height: 1.3;
}

.product-short-description {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 233, 0, 0.2);
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
}

.product-price {
    font-family: var(--font-body);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-yellow);
}

.product-compare-price {
    font-family: var(--font-body);
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-discount {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-orange);
    background-color: rgba(255, 152, 0, 0.2);
    padding: 5px 12px;
    border-radius: 6px;
}

.product-section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin: 0 0 15px 0;
}

.product-description {
    margin-top: 20px;
}

.product-description-content {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.product-specifications {
    margin-top: 20px;
}

.specifications-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.specification-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-key {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    min-width: 150px;
}

.spec-value {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    flex: 1;
}

/* Add to Cart Form */
.product-cart-form {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 233, 0, 0.2);
}

.cart-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 14px;
}

.cart-message.success {
    background-color: rgba(0, 200, 83, 0.2);
    border: 1px solid rgba(0, 200, 83, 0.5);
    color: #00c853;
}

.product-quantity-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.quantity-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white);
}

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

.quantity-btn {
    background-color: rgba(42, 42, 62, 0.8);
    border: none;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 600;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    border-left: 1px solid rgba(255, 233, 0, 0.3);
    border-right: 1px solid rgba(255, 233, 0, 0.3);
    background-color: rgba(42, 42, 62, 0.8);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    text-align: center;
    -moz-appearance: textfield;
}

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

.btn-add-to-cart {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-add-to-cart:hover {
    background-color: #e6d400;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 233, 0, 0.3);
}

.btn-out-of-stock {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 15px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: not-allowed;
    width: 100%;
}

.product-sku {
    margin-top: 20px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
}

.product-sku span {
    font-weight: 600;
    color: var(--text-white);
}

/* Related Products Section */
.related-products-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.related-products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(255, 233, 0, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.related-products-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
}

.related-products-header .section-title {
    color: var(--primary-yellow);
}

.related-products-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.related-product-card {
    background-color: rgba(42, 42, 62, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 233, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.related-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 233, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 233, 0, 0.2);
}

.related-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
    margin: 15px 20px 8px;
    line-height: 1.4;
}

.related-product-price {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-yellow);
    margin: 0 20px 20px;
}

/* ========================================
   CART PAGE
======================================== */

.cart-hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.cart-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_115940_6944f0d4500cf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.cart-hero-overlay {
    display: none;
}

.cart-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

.cart-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-yellow);
}

.cart-content-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.cart-items-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
}

.btn-clear-cart {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear-cart:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    background-color: rgba(42, 42, 62, 0.6);
    border-radius: 15px;
    padding: 20px;
    display: grid;
    grid-template-columns: 120px 1fr 150px 100px 40px;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
    margin: 0;
}

.cart-item-title a {
    color: var(--text-white);
    text-decoration: none;
}

.cart-item-title a:hover {
    color: var(--primary-yellow);
}

.cart-item-price {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--primary-yellow);
}

.cart-item-quantity .quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(255, 233, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-quantity .quantity-btn {
    background-color: rgba(42, 42, 62, 0.8);
    border: none;
    color: var(--text-white);
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-quantity .quantity-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

.cart-item-quantity .quantity-input {
    width: 50px;
    height: 35px;
    border: none;
    border-left: 1px solid rgba(255, 233, 0, 0.3);
    border-right: 1px solid rgba(255, 233, 0, 0.3);
    background-color: rgba(42, 42, 62, 0.8);
    color: var(--text-white);
    text-align: center;
    font-family: var(--font-body);
    font-size: 14px;
}

.item-total-price {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-yellow);
}

.btn-remove-item {
    background-color: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.btn-remove-item:hover {
    color: var(--primary-orange);
}

.cart-summary-column {
    position: sticky;
    top: 120px;
}

.cart-summary-card {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.cart-summary-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
}

.cart-summary-total {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-yellow);
    padding-top: 15px;
    border-top: 1px solid rgba(255, 233, 0, 0.2);
    margin-top: 15px;
}

.cart-summary-divider {
    height: 1px;
    background-color: rgba(255, 233, 0, 0.2);
    margin: 20px 0;
}

.cart-summary-discount {
    color: var(--primary-yellow);
    font-weight: 500;
}

/* Coupon Section */
.coupon-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
}

.coupon-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.coupon-input {
    flex: 1;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 233, 0, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s ease;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background-color: rgba(255, 255, 255, 0.08);
}

.coupon-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-apply-coupon {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-apply-coupon:hover {
    background-color: #e6d400;
    transform: translateY(-2px);
}

.coupon-applied {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: rgba(255, 233, 0, 0.1);
    border: 1px solid rgba(255, 233, 0, 0.3);
    border-radius: 8px;
}

.coupon-applied-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.coupon-code {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coupon-discount {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-yellow);
}

.btn-remove-coupon {
    background-color: transparent;
    border: none;
    color: var(--text-white);
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.btn-remove-coupon:hover {
    background-color: rgba(255, 233, 0, 0.2);
    color: var(--primary-yellow);
}

.coupon-message {
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    min-height: 20px;
}

.coupon-success {
    color: #4ade80;
}

.coupon-error {
    color: #f87171;
}

.coupon-loading {
    color: var(--primary-yellow);
}

.btn-checkout {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-checkout:hover {
    background-color: #e6d400;
    transform: translateY(-2px);
}

.btn-continue-shopping {
    background-color: transparent;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 13px;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-continue-shopping:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty-icon {
    font-size: 80px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cart-empty-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.cart-empty-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* ========================================
   CHECKOUT PAGE
======================================== */

.checkout-hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.checkout-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_115940_6944f0d4500cf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.checkout-hero-overlay {
    display: none;
}

.checkout-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

.checkout-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-yellow);
}

.checkout-content-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.checkout-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-family: var(--font-body);
    font-size: 14px;
}

.checkout-alert-error {
    background-color: rgba(255, 82, 82, 0.2);
    border: 1px solid rgba(255, 82, 82, 0.5);
    color: #ff5252;
}

.checkout-layout {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: flex-start;
}

.checkout-form-column {
    flex: 1 1 0%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.checkout-summary-column {
    flex: 0 0 380px;
    width: 380px;
    max-width: 380px;
    position: sticky;
    top: 120px;
}

.checkout-section {
    background-color: rgba(42, 42, 62, 0.6);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.checkout-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkout-section-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 233, 0, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
}

.payment-method-option:hover {
    border-color: var(--primary-yellow);
    background-color: rgba(255, 233, 0, 0.1);
}

.payment-method-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.payment-method-option input[type="radio"]:checked+span {
    color: var(--primary-yellow);
}

.checkout-summary-column {
    position: sticky;
    top: 120px;
}

.checkout-summary-card {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.checkout-summary-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
}

.checkout-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.checkout-item-name {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
}

.checkout-item-qty {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
}

.checkout-item-price {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-yellow);
}

.checkout-summary-divider {
    height: 1px;
    background-color: rgba(255, 233, 0, 0.2);
    margin: 20px 0;
}

.checkout-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
}

.checkout-summary-total {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-yellow);
    padding-top: 15px;
    border-top: 1px solid rgba(255, 233, 0, 0.2);
    margin-top: 15px;
}

.checkout-summary-discount {
    color: var(--primary-yellow);
    font-weight: 500;
}

.btn-place-order {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-place-order:hover {
    background-color: #e6d400;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 233, 0, 0.3);
}

/* ========================================
   SEARCH PAGE
======================================== */

.search-hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.search-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_115940_6944f0d4500cf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.search-hero-overlay {
    display: none;
}

.search-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

.search-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 30px;
}

.search-hero-form {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-wrapper {
    display: flex;
    gap: 0;
    border: 2px solid var(--primary-yellow);
    border-radius: 50px;
    overflow: hidden;
    background-color: rgba(42, 42, 62, 0.8);
}

.search-input {
    flex: 1;
    padding: 15px 25px;
    background-color: transparent;
    border: none;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
}

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

.search-input:focus {
    outline: none;
}

.search-submit-btn {
    padding: 15px 30px;
    background-color: var(--primary-yellow);
    border: none;
    color: var(--primary-dark);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit-btn:hover {
    background-color: #e6d400;
}

.search-results-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.search-results-header {
    margin-bottom: 30px;
}

.search-results-count {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-light);
}

.search-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.search-product-card {
    background-color: rgba(42, 42, 62, 0.6);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 233, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.search-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 233, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 233, 0, 0.2);
}

.search-product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.search-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.search-product-card:hover .search-product-image img {
    transform: scale(1.05);
}

.search-product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-product-category {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-product-title {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-white);
    margin: 0;
    line-height: 1.4;
}

.search-product-price {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-yellow);
    margin: 0;
}

.search-no-results,
.search-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.search-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ========================================
   AUTH PAGE
======================================== */

.auth-hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.auth-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_115940_6944f0d4500cf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.auth-hero-overlay {
    display: none;
}

.auth-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

.auth-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-yellow);
}

.auth-content-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.auth-alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 14px;
}

.auth-alert-error {
    background-color: rgba(255, 82, 82, 0.2);
    border: 1px solid rgba(255, 82, 82, 0.5);
    color: #ff5252;
}

.auth-alert-success {
    background-color: rgba(0, 200, 83, 0.2);
    border: 1px solid rgba(0, 200, 83, 0.5);
    color: #00c853;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-email-display {
    background-color: rgba(255, 233, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: center;
}

.auth-email-display p {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
    margin: 0 0 8px 0;
}

.auth-email-display strong {
    color: var(--primary-yellow);
}

.auth-change-email {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--primary-yellow);
    text-decoration: none;
}

.auth-change-email:hover {
    text-decoration: underline;
}

.auth-debug-otp {
    background-color: rgba(255, 152, 0, 0.2);
    border: 1px solid rgba(255, 152, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.auth-debug-otp p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-white);
    margin: 5px 0;
}

.otp-display {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-yellow);
    letter-spacing: 4px;
    font-family: 'Courier New', monospace;
}

.auth-debug-note {
    font-size: 11px;
    color: var(--text-muted);
    font-style: italic;
}

.btn-auth-primary {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-auth-primary:hover {
    background-color: #e6d400;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 233, 0, 0.3);
}

.auth-footer-links {
    text-align: center;
    margin-top: 15px;
}

.auth-footer-links a {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--primary-yellow);
    text-decoration: none;
}

.auth-footer-links a:hover {
    text-decoration: underline;
}

/* ========================================
   CUSTOMER DASHBOARD
======================================== */

.dashboard-hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.dashboard-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_115940_6944f0d4500cf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.dashboard-hero-overlay {
    display: none;
}

.dashboard-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

.dashboard-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.dashboard-hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.dashboard-breadcrumb {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.dashboard-breadcrumb a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dashboard-breadcrumb a:hover {
    color: var(--text-white);
    text-decoration: underline;
}

.dashboard-breadcrumb span {
    color: var(--text-muted);
}

.dashboard-content-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.dashboard-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.dashboard-user-info {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.dashboard-user-avatar {
    font-size: 60px;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.dashboard-user-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
    margin: 0 0 8px 0;
}

.dashboard-user-email {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.dashboard-nav {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(255, 233, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dashboard-nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
    padding: 12px 15px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.dashboard-nav-link:hover {
    background-color: rgba(255, 233, 0, 0.1);
    color: var(--primary-yellow);
}

.dashboard-nav-link.active {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-weight: 600;
}

.dashboard-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dashboard-section {
    display: none;
    background-color: rgba(42, 42, 62, 0.6);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.dashboard-section.active {
    display: block;
}

.dashboard-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
}

.dashboard-section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin: 0;
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.dashboard-stat-card {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.stat-icon {
    font-size: 40px;
    color: var(--primary-yellow);
}

.stat-content {
    flex: 1;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: normal;
    color: var(--text-white);
    margin: 0 0 5px 0;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-subsection-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

.dashboard-orders-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.dashboard-order-item {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.order-item-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-item-number {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.order-item-date {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.status-badge {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background-color: rgba(255, 152, 0, 0.2);
    color: #ff9800;
}

.status-confirmed,
.status-processing {
    background-color: rgba(0, 200, 83, 0.2);
    color: #00c853;
}

.status-shipped {
    background-color: rgba(0, 188, 212, 0.2);
    color: #00bcd4;
}

.status-delivered {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.status-cancelled,
.status-failed {
    background-color: rgba(255, 82, 82, 0.2);
    color: #ff5252;
}

.order-item-total {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-yellow);
}

.btn-view-order {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-order:hover {
    background-color: #e6d400;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

.orders-table thead {
    background-color: rgba(255, 233, 0, 0.1);
}

.orders-table th {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
}

.orders-table td {
    padding: 15px;
    color: var(--text-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.orders-table tbody tr:hover {
    background-color: rgba(255, 233, 0, 0.05);
}

.dashboard-addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.dashboard-address-card {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
}

.address-type {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin: 0;
}

.address-default-badge {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-dark);
    background-color: var(--primary-yellow);
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.address-content {
    margin-bottom: 15px;
}

.address-name,
.address-phone {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
    margin: 0 0 8px 0;
}

.address-text {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.address-actions {
    display: flex;
    gap: 10px;
}

.btn-edit-address,
.btn-delete-address {
    flex: 1;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-edit-address {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

.btn-edit-address:hover {
    background-color: #e6d400;
}

.btn-delete-address {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 82, 82, 0.5);
}

.btn-delete-address:hover {
    background-color: rgba(255, 82, 82, 0.2);
    border-color: #ff5252;
}

.dashboard-profile-form {
    max-width: 600px;
}

.dashboard-profile-form .form-group,
.dashboard-profile-form .form-row {
    margin-bottom: 20px;
}

.dashboard-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.btn-add-address {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-address:hover {
    background-color: #e6d400;
}

.dashboard-alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-size: 14px;
}

.dashboard-alert-success {
    background-color: rgba(0, 200, 83, 0.2);
    border: 1px solid rgba(0, 200, 83, 0.5);
    color: #00c853;
}

.dashboard-alert-error {
    background-color: rgba(255, 82, 82, 0.2);
    border: 1px solid rgba(255, 82, 82, 0.5);
    color: #ff5252;
}

/* Address Modal */
.address-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.address-modal-content {
    background-color: rgba(42, 42, 62, 0.95);
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 233, 0, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.address-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
}

.address-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin: 0;
}

.address-modal-close {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.address-modal-close:hover {
    background-color: rgba(255, 82, 82, 0.2);
    color: #ff5252;
}

.address-form {
    padding: 30px;
}

.address-form .form-group {
    margin-bottom: 20px;
}

.address-form .form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-white);
    margin-bottom: 8px;
    font-weight: 500;
}

.address-form .form-control {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 233, 0, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s ease;
}

.address-form .form-control:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background-color: rgba(255, 255, 255, 0.08);
}

.address-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Fix select dropdown visibility */
.address-form select.form-control {
    color: var(--text-white) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFE900' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    appearance: none;
    cursor: pointer;
}

.address-form select.form-control option {
    background-color: rgba(42, 42, 62, 0.95) !important;
    color: var(--text-white) !important;
    padding: 10px;
}

.address-form select.form-control:focus {
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: var(--text-white) !important;
}

/* Ensure dropdown options are visible */
.address-form select.form-control option:checked,
.address-form select.form-control option:hover {
    background-color: rgba(255, 233, 0, 0.2) !important;
    color: var(--primary-yellow) !important;
}

/* Searchable country select */
.country-select-wrapper {
    position: relative;
}

.country-select-input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 233, 0, 0.2);
    border-radius: 8px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFE900' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.country-select-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    background-color: rgba(255, 255, 255, 0.08);
}

.country-select-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background-color: rgba(42, 42, 62, 0.98);
    border: 1px solid rgba(255, 233, 0, 0.3);
    border-radius: 8px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.country-select-dropdown.active {
    display: block;
}

.country-select-search {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
    position: sticky;
    top: 0;
    background-color: rgba(42, 42, 62, 0.98);
    z-index: 10;
}

.country-select-search input {
    width: 100%;
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 233, 0, 0.2);
    border-radius: 6px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 13px;
}

.country-select-search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.country-select-list {
    max-height: 250px;
    overflow-y: auto;
}

.country-select-option {
    padding: 10px 15px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.country-select-option:hover,
.country-select-option.selected {
    background-color: rgba(255, 233, 0, 0.1);
    color: var(--primary-yellow);
}

.country-select-option:last-child {
    border-bottom: none;
}

.address-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.address-form .form-group-half {
    margin-bottom: 0;
}

.address-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
    cursor: pointer;
}

.address-form .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.address-form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 233, 0, 0.2);
}

.address-form-actions .btn {
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-form-actions .btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.address-form-actions .btn-outline:hover {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.address-form-actions .btn-yellow {
    background-color: var(--primary-yellow);
    color: var(--primary-dark);
}

.address-form-actions .btn-yellow:hover {
    background-color: #e6d400;
}

/* ========================================
   ORDER CONFIRMATION PAGE
======================================== */

.order-confirmation-hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.order-confirmation-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_115940_6944f0d4500cf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.order-confirmation-hero-overlay {
    display: none;
}

.order-confirmation-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

.order-confirmation-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.order-confirmation-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.order-confirmation-content {
    margin-bottom: 50px;
}

.confirmation-icon {
    font-size: 80px;
    color: #00c853;
    margin-bottom: 20px;
}

.confirmation-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: normal;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.confirmation-message {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.confirmation-order-number {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-white);
}

.confirmation-order-number strong {
    color: var(--primary-yellow);
    font-size: 20px;
}

.order-details-card {
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid rgba(255, 233, 0, 0.1);
    text-align: left;
}

.order-details-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
}

.order-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.order-details-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-details-subtitle {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 10px;
}

.order-address {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.order-address p {
    margin: 0 0 5px 0;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-item-name {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
}

.order-item-price {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-yellow);
}

.order-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 233, 0, 0.2);
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-white);
}

.order-summary-total {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-yellow);
    padding-top: 15px;
    border-top: 1px solid rgba(255, 233, 0, 0.2);
    margin-top: 15px;
}

.order-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* User Menu Dropdown */
.user-menu-wrapper {
    position: relative;
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: rgba(42, 42, 62, 0.95);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    border: 1px solid rgba(255, 233, 0, 0.2);
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.user-menu-wrapper:hover .user-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Create a bridge to prevent gap */
.user-menu-wrapper::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 5px;
    background: transparent;
    z-index: 999;
}

.user-menu-dropdown a {
    display: block;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-menu-dropdown a:hover {
    background-color: rgba(255, 233, 0, 0.1);
    color: var(--primary-yellow);
}

/* ========================================
   ORDER DETAILS PAGE
======================================== */

.order-details-hero-section {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.order-details-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://beyondonlyexim.cognisphereindia.com/uploads/files/2025/12/2025-12-19_115940_6944f0d4500cf.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.order-details-hero-overlay {
    display: none;
}

.order-details-hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
}

.order-details-hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: normal;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.order-details-hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-light);
}

.order-details-content-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.order-details-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.order-info-card,
.order-items-card {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.order-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
}

.order-info-title,
.order-items-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin: 0;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.order-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.order-info-label {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-info-value {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-white);
    font-weight: 500;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.order-item-detail {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    padding: 20px;
    background-color: rgba(42, 42, 62, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.order-item-name {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-white);
    margin: 0;
}

.order-item-name a {
    color: var(--text-white);
    text-decoration: none;
}

.order-item-name a:hover {
    color: var(--primary-yellow);
}

.order-item-meta {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

.order-item-total {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-yellow);
    align-self: center;
}

.order-addresses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.order-address-card {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.order-address-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 233, 0, 0.2);
}

.order-address-content {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.order-address-content p {
    margin: 0 0 8px 0;
}

.order-notes-card {
    background-color: rgba(42, 42, 62, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 233, 0, 0.1);
}

.order-notes-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.order-notes-content {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    .header-container {
        padding: 8px 20px;
    }

    .main-nav {
        gap: 30px;
    }

    .main-nav a {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .category-card-image {
        height: 180px;
    }

    /* About Us Medium Screens */
    .about-hero-title {
        font-size: 36px;
    }

    .core-values-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .core-values-buttons {
        flex-wrap: nowrap;
    }

    .mission-vision-grid {
        gap: 60px;
    }

    .what-makes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 15px;
        z-index: 999;
    }

    .header-container {
        padding: 10px 15px;
        border-radius: 35px;
    }

    .main-nav {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        flex-direction: column !important;
        justify-content: center;
        align-items: center;
        padding: 80px 30px 30px;
        gap: 0;
        z-index: 9999;
        border-radius: 0;
        overflow-y: auto;
    }

    .main-nav.active {
        display: flex !important;
    }

    .main-nav a {
        font-size: 20px !important;
        letter-spacing: 4px;
        padding: 20px 30px;
        color: #fff;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 233, 0, 0.15);
        transition: all 0.3s ease;
    }

    .main-nav a:first-child {
        border-top: 1px solid rgba(255, 233, 0, 0.15);
    }

    .main-nav a:last-child {
        border-bottom: 1px solid rgba(255, 233, 0, 0.15);
    }

    .main-nav a.active,
    .main-nav a:hover {
        color: var(--primary-yellow);
        background-color: rgba(255, 233, 0, 0.1);
    }

    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 100;
    }

    .mobile-toggle.active {
        display: none;
    }

    .header-actions {
        gap: 12px !important;
    }

    .header-actions a {
        font-size: 18px;
    }

    .cart-count {
        font-size: 9px;
        min-width: 16px;
        height: 16px;
    }

    .logo-circle {
        width: 50px;
        height: 50px;
    }

    .logo-beyond {
        font-size: 12px;
    }

    .logo-exim {
        font-size: 15px;
    }

    .logo-image {
        height: 50px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .section-title {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-card-image {
        height: 150px;
        margin-bottom: -25px;
    }

    .category-card-title {
        padding: 40px 15px 20px;
    }

    .category-card-title h3 {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 8px 10px;
    }

    .header-container {
        padding: 8px 12px;
        border-radius: 30px;
    }

    .logo-image {
        height: 45px;
    }

    .header-actions {
        gap: 8px !important;
    }

    .header-actions a {
        font-size: 16px;
    }

    .cart-count {
        font-size: 8px;
        min-width: 14px;
        height: 14px;
        top: -6px;
        right: -6px;
    }

    .main-nav a {
        font-size: 16px !important;
        padding: 12px 20px;
    }

    .hero-title {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn {
        padding: 15px 40px;
    }

    /* About Us Responsive */
    .about-hero-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .about-hero-description {
        font-size: 14px;
    }

    .core-values-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .core-values-title {
        font-size: 24px;
    }

    .core-values-buttons {
        justify-content: center;
        width: 100%;
    }

    .core-value-button {
        min-width: 120px;
        padding: 15px 30px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mission-item,
    .vision-item {
        align-items: center;
    }

    .mission-item .mission-vision-content,
    .vision-item .mission-vision-content {
        text-align: center;
    }

    .mission-item .mission-vision-header {
        flex-direction: row;
        margin-left: 0;
    }

    .vision-item .mission-vision-header {
        margin-right: 0;
    }

    .what-makes-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .what-makes-title {
        font-size: 24px;
    }

    /* Contact Page Responsive */
    .contact-hero-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .contact-hero-description {
        font-size: 14px;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-column {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    /* Shop Page Responsive */
    .shop-hero-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .shop-hero-description {
        font-size: 14px;
    }

    .shop-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .btn-filter-mobile {
        display: flex;
    }

    .shop-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        z-index: 1000;
        background-color: var(--bg-dark);
        transform: translateX(-100%) !important;
        /* Hidden by default on mobile */
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, visibility 0.3s ease;
        visibility: hidden;
        /* Ensure it's not visible when hidden */
        opacity: 0;
        /* Additional hiding */
    }

    .shop-sidebar.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        /* Show when active */
        opacity: 1 !important;
    }

    .shop-sidebar .filter-section {
        position: relative;
        border-radius: 0;
        min-height: 100%;
        padding: 80px 20px 20px;
        /* Top padding to prevent overlap with header */
        margin: 0;
    }

    /* Ensure sidebar doesn't show on page load */
    .shop-sidebar:not(.active) {
        pointer-events: none;
        /* Disable interactions when hidden */
    }

    .btn-close-sidebar {
        display: flex;
    }

    .shop-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .shop-toolbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .shop-toolbar-left {
        flex: 1;
    }

    .shop-sort {
        flex-shrink: 0;
    }

    /* Product Detail Responsive */
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-images-column {
        position: static;
    }

    .product-title {
        font-size: 28px;
    }

    .product-price {
        font-size: 24px;
    }

    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* ========================================
   RESPONSIVE - NEW PAGES
======================================== */

/* Tablet - Stack checkout layout */
@media (max-width: 1024px) {
    .checkout-layout {
        flex-direction: column;
        flex-wrap: wrap;
    }

    .checkout-summary-column {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        position: static;
        order: -1;
        /* Move summary to top on tablet/mobile for better UX */
    }

    .checkout-form-column {
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cart-layout {
        flex-direction: column;
    }

    .cart-summary-column {
        width: 100%;
        position: static;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        position: static;
    }

    .order-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .cart-hero-title,
    .checkout-hero-title,
    .search-hero-title,
    .auth-hero-title,
    .dashboard-hero-title,
    .order-details-hero-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .cart-item-quantity,
    .cart-item-total,
    .cart-item-remove {
        grid-column: 2;
    }

    .cart-item-quantity {
        margin-top: 10px;
    }

    .cart-item-total {
        margin-top: 5px;
    }

    .cart-item-remove {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .cart-item {
        position: relative;
    }

    .checkout-section {
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group-half {
        width: 100%;
    }

    .search-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .auth-container {
        padding: 30px 20px;
    }

    .dashboard-stats-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-order-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dashboard-addresses-grid {
        grid-template-columns: 1fr;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
    }

    .order-item-detail {
        grid-template-columns: 60px 1fr;
        gap: 15px;
    }

    .order-item-total {
        grid-column: 2;
        text-align: right;
    }

    .order-addresses-grid {
        grid-template-columns: 1fr;
    }

    .order-actions {
        flex-direction: column;
    }

    .order-actions .btn {
        width: 100%;
    }

    .user-menu-dropdown {
        right: -50px;
    }

    .currency-selector-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .currency-dropdown {
        right: -20px;
        min-width: 200px;
    }

    .address-modal-content {
        max-width: 100%;
        margin: 10px;
    }

    .address-form .form-row {
        grid-template-columns: 1fr;
    }

    .address-form-actions {
        flex-direction: column;
    }

    .address-form-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {

    .cart-hero-section,
    .checkout-hero-section,
    .search-hero-section,
    .auth-hero-section,
    .dashboard-hero-section,
    .order-details-hero-section,
    .order-confirmation-hero-section {
        padding: 130px 0 80px;
    }

    .cart-content-section,
    .checkout-content-section,
    .search-results-section,
    .auth-content-section,
    .dashboard-content-section,
    .order-details-content-section {
        padding: 40px 0;
    }

    .cart-summary-card,
    .checkout-summary-card,
    .auth-container,
    .order-info-card,
    .order-items-card {
        padding: 20px;
    }

    .search-input-wrapper {
        flex-direction: column;
        border-radius: 12px;
    }

    .search-input {
        border-radius: 12px 12px 0 0;
    }

    .search-submit-btn {
        border-radius: 0 0 12px 12px;
    }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ========================================
   PRODUCT ATTRIBUTES - Enhanced Styling
======================================== */
.product-attributes {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.attribute-group {
    margin-bottom: 20px;
}

.attribute-group:last-child {
    margin-bottom: 0;
}

.attribute-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 12px !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

.attribute-label::before {
    content: '';
    width: 3px;
    height: 14px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

/* Color Swatches */
.color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-option {
    position: relative;
}

.color-swatch {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.color-option input:checked+.color-swatch {
    border-color: var(--primary-yellow);
    transform: scale(1.1);
    box-shadow: 0 0 0 3px rgba(255, 233, 0, 0.3), 0 4px 15px rgba(0, 0, 0, 0.4);
}

.color-option input:checked+.color-swatch::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Size & Text Button Options */
.text-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.text-option label.btn {
    min-width: 50px;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-option label.btn:hover {
    background: rgba(255, 233, 0, 0.1);
    border-color: rgba(255, 233, 0, 0.5);
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

.text-option input:checked+label.btn,
.text-option label.btn.active {
    background: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: var(--primary-dark);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 233, 0, 0.3);
    transform: translateY(-2px);
}

/* Dropdown Select */
.attribute-options select.form-select {
    width: 100%;
    max-width: 300px;
    padding: 12px 40px 12px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffe900' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.attribute-options select.form-select:hover {
    border-color: rgba(255, 233, 0, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
}

.attribute-options select.form-select:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 233, 0, 0.2);
}

.attribute-options select.form-select option {
    background-color: #1a1a2e;
    color: var(--text-white);
    padding: 12px;
}

/* Tooltip for color swatches */
.color-swatch[title]::before {
    content: attr(title);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    font-size: 12px;
    font-family: var(--font-body);
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
    z-index: 10;
}

.color-swatch:hover[title]::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .product-attributes {
        padding: 15px 0;
    }

    .color-swatch {
        width: 36px;
        height: 36px;
    }

    .text-option label.btn {
        padding: 8px 14px;
        font-size: 13px;
    }

    .attribute-options select.form-select {
        max-width: 100%;
    }
}

/* ========================================
   STICKY PRODUCT BOTTOM BAR
======================================== */
.sticky-product-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 233, 0, 0.2);
    padding: 12px 0;
    z-index: 9999;
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.4);
}

.sticky-product-bar.visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.sticky-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-bar-product {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 0;
}

.sticky-bar-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 233, 0, 0.3);
}

.sticky-bar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-bar-info {
    min-width: 0;
    flex: 1;
}

.sticky-bar-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-bar-price {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-yellow);
}

.sticky-bar-actions {
    flex-shrink: 0;
}

.btn-sticky-cart {
    background: var(--primary-yellow);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-sticky-cart:hover {
    background: #e6d400;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 233, 0, 0.3);
}

.btn-sticky-cart i {
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .sticky-product-bar {
        padding: 10px 0;
    }

    .sticky-bar-image {
        width: 40px;
        height: 40px;
    }

    .sticky-bar-name {
        font-size: 12px;
    }

    .sticky-bar-price {
        font-size: 15px;
    }

    .btn-sticky-cart {
        padding: 10px 18px;
        font-size: 12px;
    }

    .btn-sticky-cart span {
        display: none;
    }
}

/* ========================================
   CART MESSAGE STYLING
======================================== */
.cart-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.3s ease;
}

.cart-message.success {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.cart-message.success::before {
    content: '✓';
    font-weight: bold;
}

.cart-message.error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.cart-message.error::before {
    content: '✕';
    font-weight: bold;
}

/* ========================================
   TOAST NOTIFICATIONS
======================================== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 233, 0, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    pointer-events: auto;
    transform: translateX(120%);
    opacity: 0;
    animation: toastSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.toast.hiding {
    animation: toastSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}

.toast.success .toast-icon {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.toast.info .toast-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-white);
    margin: 0 0 4px 0;
}

.toast-message {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: var(--text-white);
}

.toast-action {
    margin-top: 10px;
}

.toast-action a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-yellow);
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.toast-action a:hover {
    background: #e6d400;
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .toast-container {
        top: auto;
        bottom: 80px;
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: auto;
        max-width: 100%;
    }
}

/* ========================================
   CART ITEM OPTIONS
======================================== */
.cart-item-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0;
}

.cart-option {
    display: inline-block;
    font-size: 12px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-option strong {
    color: var(--primary-yellow);
    font-weight: 500;
    margin-right: 4px;
}

/* Checkout Item Options */
.checkout-item-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 4px 0;
}

.checkout-option {
    font-size: 11px;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 3px;
}