/* Awuraa E-commerce - Main Stylesheet */

/* ============================================
   CSS Variables
   ============================================ */
:root {
    --primary-color: #0F7B3F;
    --primary-dark: #0a5c2f;
    --primary-light: #1a9a54;
    --secondary-color: #8B7355;
    --accent-color: #D4AF37;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-sm: 4px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'DM Sans', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

html, body {
    overflow-x: hidden;
}

/* The rest of your styles will follow... */

/* ============================================
   Reset & Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-800);
    background-color: var(--white);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden; /* Add this line */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-800);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 500;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

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

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

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

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* ============================================
   Forms
   ============================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 123, 63, 0.1);
}

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

/* ============================================
   Alerts
   ============================================ */
.alert {
    padding: 16px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 24px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ============================================
   Header
   ============================================ */
.main-header {
    position: relative;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.page-home .main-header {
    position: absolute !important;
    width: 100%;
    background: transparent !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 120px; /* Adjusted height */
}

.logo {
    justify-self: start;
    z-index: 1;
}

.dropdown-container {
    display: none;
}

.logo-image {
    height: 50px; /* Adjusted size */
    filter: none !important; /* Remove filter by default */
}

.page-home .logo-image {
    filter: brightness(0) invert(1) !important; /* Apply filter only on home */
}

.main-nav {
    justify-self: center;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    position: relative;
    font-weight: 500;
    color: var(--gray-700) !important; /* Default link color */
    padding: 8px 0;
}

.page-home .nav-list a {
    color: #fff !important; /* White links on home */
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color) !important;
    transition: width 0.3s ease;
}

.page-home .nav-list a::after {
    background-color: #fff !important;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-actions {
    order: 3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-actions a,
.header-actions button {
    background: transparent !important;
    color: var(--gray-700) !important; /* Default icon color */
    font-size: 1.2rem;
    border: none;
    transition: var(--transition);
}

.search-toggle,
.user-btn,
.wishlist-btn,
.cart-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    cursor: pointer;
}

.page-home .header-actions a,
.page-home .header-actions button {
    color: #fff !important; /* White icons on home */
}

.header-actions a:hover,
.header-actions button:hover {
    background-color: var(--gray-100) !important;
}

.page-home .header-actions a:hover,
.page-home .header-actions button:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6c75a 100%);
    color: var(--gray-800);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.page-home .cart-count {
    border-color: var(--white);
}

.desktop-cta {
    margin-left: 4px;
}

.header-actions .btn-primary,
.desktop-cta {
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--primary-color) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(15, 123, 63, 0.2);
}

.page-home .header-actions .btn-primary,
.page-home .desktop-cta {
    background-color: #fff !important;
    color: var(--primary-color) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.dropdown-container {
    position: relative;
    margin-left: auto; /* Push toggle to the right */
}

.dropdown-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px; /* Adjusted height for spacing */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.dropdown-toggle span {
    display: block;
    height: 3px; /* Thicker lines */
    width: 100%;
    background-color: var(--gray-700); /* Default dark color */
    border-radius: 2px;
    transition: all 0.3s ease;
}

.page-home .dropdown-toggle span {
    background-color: #fff; /* White hamburger on home */
}

.dropdown-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.dropdown-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.dropdown-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.dropdown-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s;
    z-index: 1100;
    overflow-y: auto;
    visibility: hidden;
    padding-top: 80px;
}

.dropdown-menu.is-open {
    transform: translateX(0);
    /* ADD THIS LINE */
    visibility: visible;
}

.dropdown-nav,
.dropdown-secondary {
    padding: 8px 0;
}

.dropdown-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.dropdown-nav-link:hover,
.dropdown-nav-link.active {
    background-color: rgba(15, 123, 63, 0.08);
    color: var(--primary-color);
}

.dropdown-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.dropdown-cart-count {
    margin-left: auto;
    padding: 2px 8px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6c75a 100%);
    color: var(--gray-800);
    font-size: 11px;
    font-weight: 700;
    border-radius: 999px;
}

.dropdown-divider {
    height: 1px;
    background-color: var(--gray-200);
    margin: 4px 20px;
}

.site-main {
    min-height: calc(100vh - 160px);
}

/* ============================================
   Search Modal
   ============================================ */
.search-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(17, 24, 39, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.search-modal.active {
    display: flex;
}

.search-container {
    position: relative;
    width: min(640px, 100%);
}

.search-form {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.search-form input {
    flex: 1;
    min-width: 0;
    padding: 18px 20px;
    border: none;
    font-size: 1rem;
}

.search-form button {
    width: 56px;
    min-width: 56px;
    height: 56px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
}

.search-close {
    position: absolute;
    top: -52px;
    right: 0;
    width: 42px;
    height: 42px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: var(--gray-700);
}

.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.38);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body.mobile-nav-open,
body.search-open {
    overflow: hidden;
}

body.mobile-nav-open .mobile-overlay {
    display: block;
    opacity: 1;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%230F7B3F" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 50px;
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--gray-800);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.hero-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    opacity: 0.2;
}

.hero-product-showcase {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow-lg);
}

.hero-product-showcase i {
    font-size: 80px;
    color: var(--primary-color);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
    font-size: 14px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@media (max-width: 768px) {
    .hero {
        min-height: 120vh;
        padding-top: 160px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    visibility: visible;
    opacity: 1;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 5px solid var(--gray-200);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 2;
}

.loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.okra-rain-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.okra-rain-container i {
    position: absolute;
    top: -80px; /* Start above the screen */
    width: 40px;
    height: 40px;
    background-image: url('../images/okra.png');
    background-size: contain;
    background-repeat: no-repeat;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
    }
}

/* Randomize each okra */
.okra-rain-container i:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; transform: scale(0.8); }
.okra-rain-container i:nth-child(2) { left: 20%; animation-duration: 8s; animation-delay: 2s; transform: scale(1.2); }
.okra-rain-container i:nth-child(3) { left: 30%; animation-duration: 10s; animation-delay: 4s; transform: scale(1); }
.okra-rain-container i:nth-child(4) { left: 40%; animation-duration: 7s; animation-delay: 1s; transform: scale(0.9); }
.okra-rain-container i:nth-child(5) { left: 50%; animation-duration: 9s; animation-delay: 6s; transform: scale(1.1); }
.okra-rain-container i:nth-child(6) { left: 60%; animation-duration: 11s; animation-delay: 3s; transform: scale(0.7); }
.okra-rain-container i:nth-child(7) { left: 70%; animation-duration: 8s; animation-delay: 5s; transform: scale(1); }
.okra-rain-container i:nth-child(8) { left: 80%; animation-duration: 10s; animation-delay: 0.5s; transform: scale(0.8); }
.okra-rain-container i:nth-child(9) { left: 90%; animation-duration: 7.5s; animation-delay: 2.5s; transform: scale(1.3); }
.okra-rain-container i:nth-child(10) { left: 5%; animation-duration: 9.5s; animation-delay: 7s; transform: scale(0.9); }
.okra-rain-container i:nth-child(11) { left: 15%; animation-duration: 11s; animation-delay: 1s; transform: scale(1); }
.okra-rain-container i:nth-child(12) { left: 25%; animation-duration: 7s; animation-delay: 3s; transform: scale(1.2); }
.okra-rain-container i:nth-child(13) { left: 35%; animation-duration: 9s; animation-delay: 5s; transform: scale(0.8); }
.okra-rain-container i:nth-child(14) { left: 45%; animation-duration: 12s; animation-delay: 2s; transform: scale(1.1); }
.okra-rain-container i:nth-child(15) { left: 55%; animation-duration: 8s; animation-delay: 4s; transform: scale(1); }

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
}


/* ============================================
   Section Styles
   ============================================ */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.125rem;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* ============================================
   Brand Highlights
   ============================================ */
.brand-highlights {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.highlight-card {
    text-align: center;
    padding: 24px;
}

.highlight-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.highlight-card h3 {
    color: var(--white);
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.highlight-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 0;
}

/* ============================================
   Categories Preview
   ============================================ */
.categories-grid {
    display: grid;

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-page {
    background-color: var(--gray-100);
}

/* Contact Hero */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

.contact-hero-content .hero-subheading {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 24px 0 16px;
    color: var(--white);
}

.contact-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Contact Section */
.contact-main {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card-text h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--gray-800);
}

.contact-card-text p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Socials */
.contact-socials {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-socials h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--gray-800);
}

.contact-socials .social-links {
    display: flex;
    gap: 12px;
}

.contact-socials .social-links a {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.contact-socials .social-links a:hover {
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-container {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.contact-form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-form-container .form-subtitle {
    color: var(--gray-600);
    margin-bottom: 32px;
}

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

.contact-form .form-group select {
    background-color: var(--white);
    cursor: pointer;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15,123,63,0.3);
}

/* Form Messages */
.form-success-message {
    text-align: center;
    padding: 40px 20px;
}

.form-success-message .success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 2rem;
}

.form-success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.form-success-message p {
    color: var(--gray-600);
    font-size: 1rem;
}

.form-error-message {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    color: #c00;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Business Hours */
.business-hours {
    padding: 60px 0;
    background: var(--white);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.hour-item {
    padding: 30px;
}

.hour-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hour-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.hour-item p {
    color: var(--gray-600);
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--gray-100);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray-600);
    margin: 0;
}

/* Responsive adjustments for contact page */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hours-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .hours-grid {
        grid-template-columns: 1fr;
    }
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    position: relative;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.category-card-1 {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.category-card-2 {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.category-card-3 {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.category-content {
    position: relative;
    z-index: 1;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.category-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 60px;
    opacity: 0.3;
    color: var(--gray-700);
}

/* ============================================
   Products Grid
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    background-color: var(--gray-100);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-actions button {
    width: 36px;
    height: 36px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.product-actions button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
}

.product-badge.sale {
    background-color: var(--danger);
    color: var(--white);
}

.product-badge.low-stock {
    background-color: var(--warning);
    color: var(--gray-800);
}

.product-badge.out-of-stock {
    background-color: var(--gray-600);
    color: var(--white);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 1rem;
    margin: 8px 0;
}

.product-name a {
    color: var(--gray-800);
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-price .current-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
}

.product-price .original-price {
    font-size: 14px;
    color: var(--gray-500);
    text-decoration: line-through;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: var(--primary-dark);
}

.add-to-cart.disabled {
    background-color: var(--gray-400);
    cursor: not-allowed;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
}

.page-header-content {
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   About Preview
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 0h100v100H0z" fill="none"/><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.2)"/><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.2)"/></svg>');
    background-size: 30px;
}

.about-image-wrapper i {
    font-size: 120px;
    color: var(--white);
    opacity: 0.8;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-features {
    margin: 24px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-700);
}

.about-features li i {
    color: var(--primary-color);
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-section {
    background-color: var(--gray-100);
}

.benefits-section .section-header.light h2,
.benefits-section .section-header.light p {
    color: var(--gray-800);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.benefit-card {
    text-align: center;
    padding: 32px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.benefit-card h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.benefit-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ============================================
   How to Use / Routine
   ============================================ */
.routine-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.routine-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 16px;
    font-size: 28px;
    color: var(--primary-color);
}

.routine-step h3 {
    margin-bottom: 8px;
    font-size: 1.125rem;
}

.routine-step p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 0;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-rating {
    margin-bottom: 12px;
    color: var(--accent-color);
}

.testimonial-content p {
    font-style: italic;
    color: var(--gray-700);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   Promotions
   ============================================ */
.promotion-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius-lg);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.promotion-content {
    max-width: 600px;
}

.promotion-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.promotion-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.promotion-decoration {
    font-size: 100px;
    opacity: 0.3;
}

/* ============================================
   Instagram Preview
   ============================================ */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.instagram-item {
    aspect-ratio: 1;
    background-color: var(--gray-200);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gray-400);
    cursor: pointer;
    transition: var(--transition);
}

.instagram-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ============================================
   Shop Page
   ============================================ */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    font-size: 1.125rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-200);
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: var(--border-radius);
    color: var(--gray-700);
    transition: var(--transition);
}

.category-list a:hover,
.category-list a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.category-list .count {
    font-size: 12px;
    background-color: var(--gray-200);
    padding: 2px 8px;
    border-radius: 10px;
}

.category-list a.active .count {
    background-color: rgba(255, 255, 255, 0.2);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 16px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.results-count {
    color: var(--gray-600);
}

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

.sort-options label {
    color: var(--gray-600);
}

.sort-options select {
    padding: 8px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    background-color: var(--white);
    cursor: pointer;
}

.no-products {
    text-align: center;
    padding: 60px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.no-products i {
    font-size: 64px;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.no-products h3 {
    margin-bottom: 8px;
}

.no-products p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* ============================================
   Pagination
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    color: var(--gray-700);
    transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* ============================================
   Product Details
   ============================================ */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    position: relative;
    aspect-ratio: 1;
    background-color: var(--gray-100);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
}

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

.sale-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background-color: var(--danger);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
}

.thumbnail-grid {
    display: flex;
    gap: 12px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--primary-color);
}

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

.product-info-main h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.product-category-link {
    display: inline-block;
    margin-bottom: 8px;
}

.product-category-link a {
    color: var(--primary-color);
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--gray-300);
}

.stars i.active {
    color: var(--accent-color);
}

.rating-text {
    color: var(--gray-600);
    font-size: 14px;
}

.product-price-main {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-price-main .current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-price-main .original-price {
    font-size: 1.25rem;
    color: var(--gray-500);
    text-decoration: line-through;
}

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

.product-description {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.stock-status {
    margin-bottom: 20px;
}

.stock-status .in-stock {
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 8px;
}

.stock-status .out-of-stock {
    color: var(--danger);
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart-form {
    margin-bottom: 24px;
}

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

.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-input input {
    width: 60px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--gray-300);
    border-right: 1px solid var(--gray-300);
}

.qty-btn {
    width: 40px;
    height: 40px;
    background-color: var(--gray-100);
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.qty-btn:hover {
    background-color: var(--gray-200);
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.wishlist-btn {
    width: 50px;
    padding: 0;
}

.wishlist-btn.active {
    background-color: var(--danger);
    border-color: var(--danger);
    color: var(--white);
}

.product-meta {
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.product-meta p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 0;
}

/* ============================================
   Product Tabs
   ============================================ */
.product-tabs {
    margin-top: 60px;
}

.tabs-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.tab-btn {
    padding: 16px 24px;
    background: none;
    border: none;
    font-weight: 500;
    color: var(--gray-600);
    cursor: pointer;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-panel {
    display: none;
    padding: 24px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    margin-bottom: 16px;
}

.reviews-list {
    margin-bottom: 32px;
}

.review-item {
    padding: 20px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
}

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

.review-date {
    font-size: 14px;
    color: var(--gray-500);
}

.review-rating {
    color: var(--accent-color);
}

.review-form h4 {
    margin-bottom: 16px;
}

.rating-select {
    margin-bottom: 16px;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating input {
    display: none;
}

.star-rating label {
    cursor: pointer;
    font-size: 24px;
    color: var(--gray-300);
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: var(--accent-color);
}

/* ============================================
   About Page
   ============================================ */
.about-section {
    padding: 80px 0;
}

.mission-values {
    background-color: var(--gray-100);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Timeline */
.story-timeline {
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding: 20px 0;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    padding-right: 40px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 40px;
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--box-shadow);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-year {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    margin-bottom: 8px;
}

.timeline-content h3 {
    margin-bottom: 8px;
}

.timeline-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    padding: 24px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.team-image {
    width: 120px;
    height: 120px;
    background-color: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 48px;
    color: var(--gray-400);
}

.team-card h3 {
    margin-bottom: 4px;
}

.team-role {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin: 32px 0;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

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

.contact-text h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-text p {
    color: var(--gray-600);
    margin-bottom: 0;
}

.contact-social {
    margin-top: 32px;
}

.contact-social h3 {
    margin-bottom: 16px;
}

.contact-form-wrapper {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--box-shadow);
}

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

.map-section {
    padding: 0 0 80px;
}

.map-placeholder {
    height: 400px;
    background-color: var(--gray-200);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
}

.map-content i {
    font-size: 64px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.map-content h3 {
    margin-bottom: 8px;
}

.map-content p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    padding: 24px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    margin-bottom: 12px;
}

.faq-item h3 i {
    color: var(--primary-color);
}

.faq-item p {
    color: var(--gray-600);
    margin-bottom: 0;
}

/* ============================================
   Auth Pages
   ============================================ */
.auth-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-lg);
}

.auth-card {
    padding: 48px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h2 {
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--gray-600);
    margin-bottom: 0;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.forgot-link {
    color: var(--primary-color);
    font-size: 14px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 500;
}

.social-login {
    margin-top: 24px;
    text-align: center;
}

.social-login p {
    color: var(--gray-600);
    margin-bottom: 16px;
}

.social-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.social-btn:hover {
    background-color: var(--gray-100);
}

.auth-image {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    position: relative;
}

.auth-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
    background-size: 50px;
}

.auth-image-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.auth-image-content i {
    font-size: 80px;
    margin-bottom: 24px;
}

.auth-image-content h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.auth-image-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   Cart Page
   ============================================ */
.cart-section {
    padding: 80px 0;
}

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

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 16px;
    padding: 16px 20px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--gray-700);
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 16px;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    align-items: center;
    box-shadow: var(--box-shadow);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.cart-product h3 {
    font-size: 1rem;
}

.cart-product h3 a {
    color: var(--gray-800);
}

.cart-product h3 a:hover {
    color: var(--primary-color);
}

.cart-price,
.cart-total {
    font-weight: 500;
}

.cart-quantity .quantity-input {
    width: 120px;
}

.cart-quantity input {
    width: 40px;
}

.remove-btn {
    width: 36px;
    height: 36px;
    background-color: transparent;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.remove-btn:hover {
    background-color: var(--danger);
    color: var(--white);
}

.cart-actions {
    margin-top: 24px;
}

.cart-summary {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--box-shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.summary-row.total {
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    font-size: 1.25rem;
    font-weight: 600;
}

.free-shipping-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #fff3cd;
    border-radius: var(--border-radius);
    margin: 20px 0;
    font-size: 14px;
}

.free-shipping-notice.success {
    background-color: #d4edda;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--gray-500);
    font-size: 14px;
}

.empty-cart {
    text-align: center;
    padding: 80px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.empty-cart i {
    font-size: 80px;
    color: var(--gray-300);
    margin-bottom: 24px;
}

.empty-cart h2 {
    margin-bottom: 12px;
}

.empty-cart p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* ============================================
   Checkout Page
   ============================================ */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.checkout-form h3 {
    margin-bottom: 24px;
}

.checkout-summary {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--box-shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-summary h3 {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.order-items {
    margin-bottom: 24px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.item-details {
    flex: 1;
}

.item-details h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.item-qty {
    font-size: 14px;
    color: var(--gray-600);
}

.item-price {
    font-weight: 500;
}

.summary-rows {
    margin-bottom: 24px;
}

.payment-methods {
    margin-bottom: 24px;
}

.payment-methods h4 {
    margin-bottom: 16px;
}

.payment-option {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.payment-option input:checked + .payment-content {
    border-color: var(--primary-color);
    background-color: rgba(15, 123, 63, 0.05);
}

.payment-content i {
    font-size: 24px;
    color: var(--primary-color);
}

.payment-title {
    display: block;
    font-weight: 500;
}

.payment-desc {
    font-size: 14px;
    color: var(--gray-600);
}

.order-success {
    text-align: center;
    padding: 60px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 40px;
}

.order-number {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

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

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

.account-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.user-profile {
    text-align: center;
    padding: 24px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    margin-bottom: 24px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 16px;
}

.user-profile h3 {
    margin-bottom: 4px;
}

.user-profile p {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 0;
}

.account-nav {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.account-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.account-nav a:last-child {
    border-bottom: none;
}

.account-nav a:hover,
.account-nav a.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.account-tab {
    display: none;
}

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

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.stat-card i {
    font-size: 32px;
    color: var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-600);
}

.orders-table {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.orders-table table {
    width: 100%;
}

.orders-table th,
.orders-table td {
    padding: 16px 20px;
    text-align: left;
}

.orders-table th {
    background-color: var(--gray-100);
    font-weight: 600;
    color: var(--gray-700);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--border-radius-sm);
    text-transform: capitalize;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-badge.processing {
    background-color: #cce5ff;
    color: #004085;
}

.status-badge.shipped {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.delivered {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.status-badge.paid {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.failed {
    background-color: #f8d7da;
    color: #721c24;
}

.status-badge.active {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.status-badge.approved {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.rejected {
    background-color: #f8d7da;
    color: #721c24;
}

.no-data {
    padding: 40px;
    text-align: center;
    color: var(--gray-600);
}

.profile-form,
.password-form {
    max-width: 500px;
}

/* ============================================
   Footer
   ============================================ */
/* ============================================
   Footer
   ============================================ */
.main-footer {
    background-color: var(--gray-800);
    color: var(--gray-400);
    padding-top: 60px;
}

/* Footer Top Section (About, Links, Contact) */
.footer-top {
    padding-bottom: 40px;
}

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

.footer-brand h4,
.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.footer-brand p {
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-700);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

.footer-contact li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

/* Footer Newsletter Section */
.footer-newsletter {
    padding: 40px 0;
    border-top: 1px solid var(--gray-700);
    border-bottom: 1px solid var(--gray-700);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h4 {
    color: var(--white);
    margin-bottom: 4px;
}

.newsletter-text p {
    color: var(--gray-400);
    margin-bottom: 0;
}

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

.newsletter-form input {
    width: 300px;
    padding: 12px 16px;
    border: none;
    border-radius: var(--border-radius);
    background-color: var(--gray-700);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form button {
    padding: 12px 24px;
}

/* Footer Bottom Section (Copyright) */
.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
}

/* Responsive adjustments for the footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }
    .newsletter-form input {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}
/* ============================================
   Wishlist Page
   ============================================ */
   Wishlist Page
   ============================================ */
.wishlist-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}
.wishlist-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--box-shadow);
    display: flex;
    gap: 20px;
    transition: var(--transition);
}
.wishlist-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--box-shadow-lg);
}
.wishlist-product-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--gray-100);
}
.wishlist-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wishlist-product-image .placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--gray-400);
}
.wishlist-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.wishlist-product-name {
    font-size: 1.125rem;
    margin-bottom: 8px;
}
.wishlist-product-name a {
    color: var(--gray-800);
}
.wishlist-product-name a:hover {
    color: var(--primary-color);
}
.wishlist-product-price {
    margin-bottom: 16px;
}
.wishlist-product-price .current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}
.wishlist-product-price .original-price {
    font-size: 0.95rem;
    color: var(--gray-500);
    text-decoration: line-through;
    margin-left: 8px;
}
.wishlist-product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.add-to-cart-form-inline {
    margin: 0;
}
.btn-remove {
    border-color: var(--danger);
    color: var(--danger);
}
.btn-remove:hover {
    background-color: var(--danger);
    color: var(--white);
}
.wishlist-empty {
    text-align: center;
    padding: 80px 40px;
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}
.wishlist-empty .empty-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 40px;
}
.wishlist-empty h2 {
    margin-bottom: 12px;
}
.wishlist-empty p {
    color: var(--gray-600);
    margin-bottom: 32px;
}
@media (max-width: 768px) {
    .wishlist-grid {
        grid-template-columns: 1fr;
    }
    .wishlist-card {
        flex-direction: column;
        text-align: center;
    }
    .wishlist-product-image {
        width: 100%;
        height: 200px;
    }
    .wishlist-product-actions {
        justify-content: center;
    }
}
/* ============================================
   Track Order Page
   ============================================ */
.track-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}
.track-form-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: var(--box-shadow-lg);
    text-align: center;
    margin-bottom: 40px;
}
.track-form-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
    font-size: 36px;
}
.track-form-card h2 {
    margin-bottom: 12px;
}
.track-form-card p {
    color: var(--gray-600);
    margin-bottom: 32px;
}
.track-form {
    max-width: 600px;
    margin: 0 auto;
}
.track-input-wrapper {
    display: flex;
    gap: 16px;
    align-items: stretch;
}
.track-input-wrapper input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius-lg);
    font-size: 1rem;
    transition: var(--transition);
}
.track-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(15, 123, 63, 0.1);
}
.tracking-results {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.order-summary-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--box-shadow);
}
.order-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}
.order-id {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
}
.order-id i {
    color: var(--primary-color);
}
.order-status-badge {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
}
.order-status-badge.status-pending {
    background-color: #fff3cd;
    color: #856404;
}
.order-status-badge.status-paid {
    background-color: #d4edda;
    color: #155724;
}
.order-status-badge.status-shipped {
    background-color: #cce5ff;
    color: #004085;
}
.order-status-badge.status-delivered {
    background-color: #d4edda;
    color: #155724;
}
.order-summary-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}
.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
}
.detail-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}
.detail-item span {
    color: var(--gray-600);
}
.detail-item strong {
    margin-left: auto;
    color: var(--gray-800);
}
.tracking-timeline-card {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    box-shadow: var(--box-shadow);
}
.tracking-timeline-card h3 {
    margin-bottom: 32px;
}
.no-tracking-history {
    text-align: center;
    padding: 40px;
    color: var(--gray-600);
}
.no-tracking-history i {
    font-size: 48px;
    color: var(--gray-400);
    margin-bottom: 16px;
    display: block;
}
.timeline {
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--gray-300);
}
.timeline-item {
    position: relative;
    padding-bottom: 40px;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--gray-300);
    transition: var(--transition);
}
.timeline-item.active .timeline-marker {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}
.timeline-marker i {
    font-size: 0.75rem;
    color: var(--white);
}
.timeline-item.active .timeline-marker i {
    color: var(--white);
}
.timeline-content {
    background-color: var(--gray-100);
    padding: 20px;
    border-radius: var(--border-radius);
}
.timeline-item.active .timeline-content {
    background-color: rgba(15, 123, 63, 0.08);
    border: 1px solid rgba(15, 123, 63, 0.2);
}
.timeline-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}
.timeline-status {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.timeline-item.active .timeline-status {
    color: var(--primary-color);
}
.timeline-remarks {
    color: var(--gray-600);
}
@media (max-width: 768px) {
    .track-input-wrapper {
        flex-direction: column;
    }
    .track-form-card {
        padding: 32px 20px;
    }
    .order-summary-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.main-header .header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.main-header .logo {
    justify-self: start;
}
.main-header .main-nav {
    justify-self: center;
}
.main-header .header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 20px;
}