/* file name: style.css */
/* Puma Miners Cooperative - Little Jewellers Style */

/* =============================================
   1. CSS VARIABLES & THEME
   ============================================= */

:root {
    /* Primary Colors */
    --primary-color: #b8860b; /* Gold */
    --primary-dark: #8b6914;
    --primary-light: #d4af37;
    
    /* Neutral Colors */
    --secondary-color: #000000; /* Black */
    --bg-white: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #1a1a1a;
    
    /* Accent & Text Colors */
    --accent-color: #f5f5dc; /* Beige */
    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --text-on-dark: #f0f0f0;
    
    /* UI Colors */
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    
    /* Effects */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-large: 0 10px 40px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --border-radius-lg: 8px;
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
}

/* =============================================
   2. RESET & BASE STYLES
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

a:hover {
    color: var(--primary-dark);
}

/* Text Utility Classes */
.text-white {
    color: var(--text-white) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.text-light {
    color: var(--text-light) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

/* Background Utility Classes */
.bg-dark {
    background-color: var(--secondary-color) !important;
    color: var(--text-white);
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-white {
    background-color: var(--bg-white) !important;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* =============================================
   3. HEADER & NAVIGATION - NEO-CYBER INTERFACE
   ============================================= */

header {
    background: linear-gradient(135deg, 
        rgba(10, 15, 30, 0.95) 0%,
        rgba(20, 25, 50, 0.92) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 
        0 0 60px rgba(0, 255, 255, 0.15),
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    height: var(--header-height, 80px);
    padding: 0 2rem;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0;
    position: relative;
}

/* Glitch effect overlay */
.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        #00ffff,
        #ff00ff,
        #00ffff,
        transparent);
    animation: scanline 4s linear infinite;
    opacity: 0.5;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    padding: 0.5rem 1.5rem;
    border-radius: 12px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo::before {
    content: '✦';
    color: #00ffff;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.logo h1 {
    margin: 0;
    font-size: 1.8rem;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
}

.logo h1 a {
    text-decoration: none;
    position: relative;
}

.logo h1 a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #00ffff, transparent);
    opacity: 0.7;
}

.logo img {
    height: 40px;
    filter: 
        drop-shadow(0 0 10px rgba(0, 255, 255, 0.5))
        hue-rotate(0deg);
    animation: hueRotate 8s linear infinite;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    box-shadow: 
        inset 0 0 20px rgba(0, 255, 255, 0.05),
        0 0 30px rgba(0, 0, 0, 0.5);
}

.main-nav a {
    color: #a0a0ff;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-family: 'Segoe UI', system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a::before {
    content: '[';
    position: absolute;
    left: 0;
    color: #00ffff;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.main-nav a::after {
    content: ']';
    position: absolute;
    right: 0;
    color: #00ffff;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.7);
}

.main-nav a:hover::before,
.main-nav a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    transition: transform 0.3s ease;
}

.main-nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.1) 0%,
        rgba(255, 0, 255, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    color: #00ffff;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cart-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent);
    transition: left 0.5s ease;
}

.cart-link:hover {
    background: linear-gradient(135deg, 
        rgba(0, 255, 255, 0.2) 0%,
        rgba(255, 0, 255, 0.1) 100%);
    box-shadow: 
        0 0 25px rgba(0, 255, 255, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cart-link:hover::before {
    left: 100%;
}

.cart-link::after {
    content: '▶';
    margin-left: 5px;
    font-size: 0.8rem;
    animation: blink 1.5s infinite;
}

/* Animations */
@keyframes scanline {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

@keyframes hueRotate {
    0% { filter: hue-rotate(0deg) drop-shadow(0 0 10px rgba(0, 255, 255, 0.5)); }
    100% { filter: hue-rotate(360deg) drop-shadow(0 0 10px rgba(0, 255, 255, 0.5)); }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Responsive additions */
@media (max-width: 768px) {
    header {
        padding: 0 1rem;
    }
    
    .main-nav {
        gap: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .main-nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}
/* =============================================
   4. MAIN CONTENT AREA
   ============================================= */

main {
    margin-top: calc(var(--header-height) + 20px);
    min-height: calc(100vh - 200px);
}

/* =============================================
   5. SECTIONS
   ============================================= */

section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Dark section overrides */
section.bg-dark .section-title,
section.bg-dark .section-subtitle,
section.bg-dark h1,
section.bg-dark h2,
section.bg-dark h3,
section.bg-dark p {
    color: var(--text-white);
}

/* =============================================
   6. BUTTONS
   ============================================= */

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
}

.btn:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

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

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

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

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

.btn-dark {
    background-color: var(--secondary-color);
    color: var(--text-white);
    border-color: var(--secondary-color);
}

.btn-dark:hover {
    background-color: #333;
    border-color: #333;
    color: var(--text-white);
}

.btn-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border-color: var(--border-color);
}

.btn-light:hover {
    background-color: var(--border-color);
    color: var(--text-dark);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

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

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
    color: var(--text-white);
}

.btn-success {
    background-color: var(--success-color);
    color: var(--text-white);
    border-color: var(--success-color);
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
    color: var(--text-white);
}

/* =============================================
   7. HERO SECTION
   ============================================= */

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
                url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    padding: var(--spacing-xl) 0;
    position: relative;
}

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

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    animation-delay: 0.4s;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 2rem;
    opacity: 0.9;
    animation-delay: 0.6s;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation-delay: 0.8s;
}

.hero-image {
    animation: fadeInRight 1s ease-out;
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.hero-image-container:hover img {
    transform: scale(1.05);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary-light);
    font-size: 1.5rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =============================================
   8. CARD COMPONENTS
   ============================================= */

/* Cooperative Cards */
.cooperatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cooperative-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cooperative-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.cooperative-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cooperative-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.cooperative-features {
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
    flex-grow: 1;
}

.cooperative-features li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.cooperative-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--bg-white);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    background-color: var(--bg-light);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Category Cards */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.category-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    flex-shrink: 0;
}

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

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

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.product-info .category {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-info .description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.product-info .price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

/* Featured Products */
.featured-products {
    background-color: var(--bg-light);
}
<!-- Testimonials Section -->
<section class="testimonials" aria-label="Customer Testimonials">
    <div class="container">
        <div class="section-header">
            <span class="section-label">Client Stories</span>
            <h2 class="section-title">Sparkling Reviews from Our Valued Customers</h2>
            <p class="section-subtitle">Discover why thousands trust us for their most precious moments</p>
        </div>
        
        <div class="testimonials-wrapper">
            <div class="testimonials-carousel">
                <!-- Testimonial 1 -->
                <div class="testimonial-card active" data-index="0">
                    <div class="testimonial-rating">
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <span class="rating-text">5.0</span>
                    </div>
                    <div class="testimonial-content">
                        <p class="testimonial-quote">"The craftsmanship is extraordinary! My engagement ring arrived perfectly and the attention to detail is stunning. Every time I look at it, I'm reminded of their excellence."</p>
                    </div>
                    <div class="testimonial-author">
                        <div class="author-avatar">
                            <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
                                <circle cx="50" cy="50" r="45" fill="#F4E4C1"/>
                                <path d="M35 40 Q50 30 65 40 Q70 55 65 70 Q50 80 35 70 Q30 55 35 40" fill="#D4AF37"/>
                                <circle cx="40" cy="45" r="5" fill="#fff"/>
                                <circle cx="60" cy="45" r="5" fill="#fff"/>
                                <path d="M40 65 Q50 70 60 65" stroke="#fff" stroke-width="3" fill="none"/>
                            </svg>
                        </div>
                        <div class="author-info">
                            <h4 class="author-name">Sarah Johnson</h4>
                            <p class="author-title">Engagement Ring Customer</p>
                            <p class="author-location"><i class="fas fa-map-marker-alt"></i> New York, NY</p>
                        </div>
                    </div>
                    <div class="testimonial-meta">
                        <span class="testimonial-date"><i class="far fa-calendar"></i> December 2024</span>
                        <span class="testimonial-category">Diamond Collection</span>
                    </div>
                </div>
                
                <!-- Testimonial 2 -->
                <div class="testimonial-card" data-index="1">
                    <div class="testimonial-rating">
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star-half-alt"></i>
                        <span class="rating-text">4.5</span>
                    </div>
                    <div class="testimonial-content">
                        <p class="testimonial-quote">"Their ethical sourcing gives me peace of mind. The emerald necklace I purchased is not only beautiful but comes with a certified origin story. Exceptional quality and conscience!"</p>
                    </div>
                    <div class="testimonial-author">
                        <div class="author-avatar">
                            <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
                                <circle cx="50" cy="50" r="45" fill="#F4E4C1"/>
                                <rect x="35" y="35" width="30" height="30" rx="15" fill="#B79460"/>
                                <circle cx="40" cy="45" r="5" fill="#fff"/>
                                <circle cx="60" cy="45" r="5" fill="#fff"/>
                                <path d="M40 65 Q50 75 60 65" stroke="#fff" stroke-width="3" fill="none"/>
                            </svg>
                        </div>
                        <div class="author-info">
                            <h4 class="author-name">Michael Chen</h4>
                            <p class="author-title">Gemstone Collector</p>
                            <p class="author-location"><i class="fas fa-map-marker-alt"></i> San Francisco, CA</p>
                        </div>
                    </div>
                    <div class="testimonial-meta">
                        <span class="testimonial-date"><i class="far fa-calendar"></i> November 2024</span>
                        <span class="testimonial-category">Emerald Collection</span>
                    </div>
                </div>
                
                <!-- Testimonial 3 -->
                <div class="testimonial-card" data-index="2">
                    <div class="testimonial-rating">
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <span class="rating-text">5.0</span>
                    </div>
                    <div class="testimonial-content">
                        <p class="testimonial-quote">"Custom design service was a dream come true! They transformed my grandmother's pearls into a modern heirloom. The designers listened carefully and executed flawlessly."</p>
                    </div>
                    <div class="testimonial-author">
                        <div class="author-avatar">
                            <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
                                <circle cx="50" cy="50" r="45" fill="#F4E4C1"/>
                                <path d="M35 40 Q50 25 65 40 Q70 60 50 75 Q30 60 35 40" fill="#8B7355"/>
                                <circle cx="40" cy="45" r="5" fill="#fff"/>
                                <circle cx="60" cy="45" r="5" fill="#fff"/>
                                <path d="M40 65 Q50 70 60 65" stroke="#fff" stroke-width="3" fill="none"/>
                            </svg>
                        </div>
                        <div class="author-info">
                            <h4 class="author-name">Emma Williams</h4>
                            <p class="author-title">Custom Design Client</p>
                            <p class="author-location"><i class="fas fa-map-marker-alt"></i> London, UK</p>
                        </div>
                    </div>
                    <div class="testimonial-meta">
                        <span class="testimonial-date"><i class="far fa-calendar"></i> January 2025</span>
                        <span class="testimonial-category">Custom Design</span>
                    </div>
                </div>
                
                <!-- Testimonial 4 (Hidden initially) -->
                <div class="testimonial-card" data-index="3">
                    <div class="testimonial-rating">
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <i class="fas fa-star"></i>
                        <span class="rating-text">5.0</span>
                    </div>
                    <div class="testimonial-content">
                        <p class="testimonial-quote">"The packaging alone felt like a luxury experience. My anniversary gift arrived in a beautiful velvet box with a handwritten note. Customer service that matches the exquisite jewelry."</p>
                    </div>
                    <div class="testimonial-author">
                        <div class="author-avatar">
                            <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
                                <circle cx="50" cy="50" r="45" fill="#F4E4C1"/>
                                <circle cx="50" cy="45" r="25" fill="#D4AF37"/>
                                <circle cx="40" cy="40" r="5" fill="#fff"/>
                                <circle cx="60" cy="40" r="5" fill="#fff"/>
                                <path d="M40 60 Q50 65 60 60" stroke="#fff" stroke-width="3" fill="none"/>
                            </svg>
                        </div>
                        <div class="author-info">
                            <h4 class="author-name">Robert Garcia</h4>
                            <p class="author-title">Anniversary Gift Buyer</p>
                            <p class="author-location"><i class="fas fa-map-marker-alt"></i> Miami, FL</p>
                        </div>
                    </div>
                    <div class="testimonial-meta">
                        <span class="testimonial-date"><i class="far fa-calendar"></i> October 2024</span>
                        <span class="testimonial-category">Luxury Gifting</span>
                    </div>
                </div>
            </div>
            
            <!-- Navigation Controls -->
            <div class="testimonial-navigation">
                <button class="testimonial-control prev" aria-label="Previous testimonial">
                    <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <path d="M15 18L9 12L15 6" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                    </svg>
                </button>
                
                <!-- Indicator Dots -->
                <div class="testimonial-indicators" role="tablist">
                    <button class="indicator active" aria-label="Show testimonial 1" data-index="0"></button>
                    <button class="indicator" aria-label="Show testimonial 2" data-index="1"></button>
                    <button class="indicator" aria-label="Show testimonial 3" data-index="2"></button>
                    <button class="indicator" aria-label="Show testimonial 4" data-index="3"></button>
                </div>
                
                <button class="testimonial-control next" aria-label="Next testimonial">
                    <svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <path d="M9 6L15 12L9 18" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
                    </svg>
                </button>
            </div>
            
            <!-- Auto-play toggle (Optional) -->
            <div class="autoplay-control">
                <button class="autoplay-toggle" aria-pressed="true">
                    <i class="fas fa-pause"></i>
                    <span>Pause Auto-Play</span>
                </button>
            </div>
        </div>
        
        <!-- Stats Section (Optional) -->
        <div class="testimonial-stats">
            <div class="stat">
                <span class="stat-number">2,500+</span>
                <span class="stat-label">Happy Customers</span>
            </div>
            <div class="stat">
                <span class="stat-number">4.9/5</span>
                <span class="stat-label">Average Rating</span>
            </div>
            <div class="stat">
                <span class="stat-number">98%</span>
                <span class="stat-label">Recommend to Friends</span>
            </div>
            <div class="stat">
                <span class="stat-number">24/7</span>
                <span class="stat-label">Customer Support</span>
            </div>
        </div>
    </div>
</section>

<!-- Trust Badges -->
<div class="trust-badges">
    <div class="trust-badge">
        <i class="fas fa-shield-alt"></i>
        <span>Certified Authenticity</span>
    </div>
    <div class="trust-badge">
        <i class="fas fa-truck"></i>
        <span>Free Worldwide Shipping</span>
    </div>
    <div class="trust-badge">
        <i class="fas fa-gem"></i>
        <span>Lifetime Warranty</span>
    </div>
    <div class="trust-badge">
        <i class="fas fa-recycle"></i>
        <span>Ethically Sourced</span>
    </div>
</div>
/* =============================================
   10. STATISTICS
   ============================================= */

.statistics {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

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

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =============================================
   11. ABOUT SECTION
   ============================================= */

.about {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1rem;
}

.feature-item i {
    font-size: 1.2rem;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

/* =============================================
   12. CONTACT SECTION
   ============================================= */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 40px;
    text-align: center;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-form-container {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* =============================================
   13. PRODUCT DETAIL PAGE
   ============================================= */

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.product-showcase {
    position: relative;
}

.product-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-hover);
    margin-bottom: 1rem;
}

#productMainImage {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
    cursor: zoom-in;
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

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

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

.image-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.nav-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-light);
}

.product-details-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.product-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

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

.product-price {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.product-price .old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.product-description {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.product-meta {
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.meta-item span:first-child {
    color: var(--text-light);
}

.meta-item span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

.product-options {
    margin-bottom: 2rem;
}

.option-group {
    margin-bottom: 1.5rem;
}

.option-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.option-select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-white);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 1rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.quantity-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

#quantity {
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
}

.detail-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-actions .btn {
    flex: 1;
}

.product-tabs {
    margin-top: 3rem;
}

.tabs {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 1rem;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* =============================================
   14. CART PAGE
   ============================================= */

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

.cart-header {
    margin-bottom: 2rem;
    text-align: center;
}

.cart-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.cart-items {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 2fr 150px 150px auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-white);
}

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

.cart-item-image {
    width: 100px;
    height: 100px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.cart-item-details h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cart-item-details .category {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cart-item-quantity input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--bg-white);
    color: var(--text-dark);
}

.cart-item-total {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--danger-color);
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    padding: 0.5rem;
}

.cart-item-remove:hover {
    color: #c82333;
    transform: scale(1.1);
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 1.5rem;
}

.empty-cart h2 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cart-summary {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.cart-summary h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.summary-row.total {
    border-top: 2px solid var(--border-color);
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cart-actions .btn {
    flex: 1;
}

/* =============================================
   15. CHECKOUT PAGE
   ============================================= */

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

.checkout-header {
    margin-bottom: 2rem;
    text-align: center;
}

.checkout-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--primary-color);
    color: var(--text-white);
}

.step.completed .step-number {
    background: var(--success-color);
    color: var(--text-white);
}

.step-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 500;
}

.checkout-form-details {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.checkout-form-section {
    margin-bottom: 2.5rem;
}

.checkout-form-section h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover,
.payment-method.selected {
    border-color: var(--primary-color);
    background: rgba(184, 134, 11, 0.05);
}

.payment-method input[type="radio"] {
    margin: 0;
}

.payment-icon {
    font-size: 1.5rem;
    color: var(--text-light);
}

.payment-label {
    flex: 1;
}

.payment-label h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.payment-label p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

.checkout-summary {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.checkout-summary h2 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.summary-items {
    margin: 1rem 0;
    max-height: 300px;
    overflow-y: auto;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.summary-item-image {
    margin-right: 1rem;
    flex-shrink: 0;
}

.summary-item-image img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.summary-item-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 0.9rem;
}

.summary-item-details span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.summary-item-details span:last-child {
    font-weight: bold;
    color: var(--primary-color);
}

.summary-totals {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.checkout-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.checkout-actions .btn {
    flex: 1;
}

/* =============================================
   16. ORDER CONFIRMATION
   ============================================= */

.order-confirmation {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.confirmation-message {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--text-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.confirmation-message::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.confirmation-message h1 {
    color: var(--text-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.confirmation-message p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
}

.order-details {
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow-large);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.order-details h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.order-details h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.order-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-section {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.info-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.info-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-section h3::before {
    content: '📋';
    font-size: 1.2rem;
}

.info-section:nth-child(2) h3::before {
    content: '🚚';
}

.info-section p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.info-section strong {
    color: var(--text-dark);
    font-weight: 600;
    min-width: 100px;
    display: inline-block;
}

.status {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.status-processing {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.3);
}

.status-shipped {
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
    border: 1px solid rgba(13, 202, 240, 0.3);
}

.status-delivered {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-cancelled {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.order-items {
    margin-bottom: 2rem;
}

.order-items h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-items h3::before {
    content: '🛍️';
    font-size: 1.3rem;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.order-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.order-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.item-info {
    flex: 1;
}

.item-info h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.item-info p {
    margin-bottom: 0.3rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.item-info p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.order-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.order-actions .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.order-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.order-actions .btn:first-child {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.order-actions .btn:first-child:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.order-actions .btn:last-child {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.order-actions .btn:last-child:hover {
    background: var(--primary-color);
    color: white;
}

/* =============================================
   17. AUTHENTICATION PAGES
   ============================================= */

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem;
}

.auth-container {
    width: 100%;
    max-width: 400px;
}

.auth-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.auth-header {
    background: var(--primary-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

.auth-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.auth-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    color: white;
}

.auth-subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.auth-form {
    padding: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.auth-form input,
.auth-form textarea,
.auth-form select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--text-dark);
}

.auth-form input:focus,
.auth-form textarea:focus,
.auth-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
}

.auth-submit {
    width: 100%;
    margin-top: 1rem;
}

.auth-links {
    padding: 1.5rem 2rem;
    background: #f9f9f9;
    text-align: center;
    border-top: 1px solid #eee;
}

.auth-links p {
    margin: 0.5rem 0;
    color: var(--text-light);
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

/* OTP input specific styles */
.otp-input-group {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.otp-input {
    width: 40px !important;
    height: 40px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Password strength indicator */
.password-strength {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

.strength-weak { color: #f44336; }
.strength-medium { color: #ff9800; }
.strength-strong { color: #4CAF50; }

/* Verification page specific styles */
.verification-methods {
    margin-top: 1rem;
}

.method-section {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    margin-bottom: 1rem;
}

.resend-section {
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    margin-top: 1rem;
}

.resend-section h4 {
    text-align: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Success message styling */
.success-message {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 8px;
    margin: 1rem 0;
    padding: 2rem;
    text-align: center;
}

.success-message h2 {
    color: white;
    margin-bottom: 1rem;
}

/* =============================================
   18. DASHBOARD
   ============================================= */

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

.dashboard-header {
    margin-bottom: 2rem;
}

.dashboard-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.dashboard-welcome {
    font-size: 1.1rem;
    color: var(--text-light);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dashboard-stat-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

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

.dashboard-stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
}

.dashboard-stat-content h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.dashboard-stat-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.dashboard-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.recent-orders-section {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.recent-orders-section h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.recent-orders-list {
    list-style: none;
}

.order-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.order-summary:hover {
    background: var(--bg-light);
}

.order-summary:last-child {
    border-bottom: none;
}

.order-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.order-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.order-details {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

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

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

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

.order-amount {
    font-weight: 700;
    color: var(--secondary-color);
}

.quick-actions-section {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.quick-actions-section h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.action-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.action-card:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateX(5px);
}

.action-card:hover h4,
.action-card:hover p {
    color: var(--text-white);
}

.action-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.action-card:hover i {
    color: var(--text-white);
}

.action-card-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.action-card-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =============================================
   19. FOOTER
   ============================================= */

footer {
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--text-white);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 18px;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-light);
}

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

/* =============================================
   20. ANIMATIONS
   ============================================= */

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in-up-delay {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.animate-fade-in-up-delay-2 {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.animate-fade-in-up-delay-3 {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.animate-fade-in-left {
    animation: fadeInLeft 1s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 1s ease-out;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* =============================================
   21. ALERTS & MESSAGES
   ============================================= */

.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 0.5s ease-out;
}

.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.alert-message {
    font-size: 0.9rem;
    line-height: 1.5;
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.25rem;
    opacity: 0.7;
    transition: var(--transition);
}

.alert-close:hover {
    opacity: 1;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid var(--success-color);
}

.alert-success .alert-icon {
    color: var(--success-color);
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid var(--danger-color);
}

.alert-danger .alert-icon {
    color: var(--danger-color);
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid var(--warning-color);
}

.alert-warning .alert-icon {
    color: var(--warning-color);
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid var(--info-color);
}

.alert-info .alert-icon {
    color: var(--info-color);
}

/* Flash Messages */
.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    min-width: 300px;
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
}

.flash-message.hiding {
    animation: slideOutRight 0.3s ease-out forwards;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* =============================================
   22. UTILITY CLASSES
   ============================================= */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 2.5rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }
.p-5 { padding: 2.5rem; }

.d-flex { display: flex; }
.d-grid { display: grid; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }

.justify-content-start { justify-content: flex-start; }
.justify-content-center { justify-content: center; }
.justify-content-end { justify-content: flex-end; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }

.align-items-start { align-items: flex-start; }
.align-items-center { align-items: center; }
.align-items-end { align-items: flex-end; }
.align-items-stretch { align-items: stretch; }

.flex-column { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.gap-5 { gap: 2.5rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: var(--border-radius); }
.rounded-lg { border-radius: var(--border-radius-lg); }
.rounded-circle { border-radius: 50%; }

.shadow { box-shadow: var(--shadow); }
.shadow-hover { box-shadow: var(--shadow-hover); }
.shadow-large { box-shadow: var(--shadow-large); }

/* =============================================
   23. RESPONSIVE DESIGN
   ============================================= */

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-content,
    .checkout-form,
    .about-content,
    .product-detail,
    .cart-content,
    .checkout-content,
    .dashboard-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .order-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        height: auto;
        padding: 1rem;
        gap: 1rem;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    main {
        margin-top: 160px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .cart-item-image {
        margin: 0 auto;
    }
    
    .cart-actions,
    .checkout-actions,
    .detail-actions,
    .order-actions {
        flex-direction: column;
    }
    
    .cart-actions .btn,
    .checkout-actions .btn,
    .detail-actions .btn,
    .order-actions .btn {
        width: 100%;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .testimonial-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .auth-card {
        padding: 1.5rem;
    }
    
    .checkout-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
    }
    
    .tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .thumbnail-images {
        justify-content: center;
    }
    
    .order-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .order-item img {
        width: 60px;
        height: 60px;
    }
    
    .confirmation-message {
        padding: 1.5rem;
    }
    
    .confirmation-message h1 {
        font-size: 1.8rem;
    }
    
    .confirmation-message p {
        font-size: 1rem;
    }
    
    .flash-message {
        left: 10px;
        right: 10px;
        max-width: none;
        min-width: auto;
    }
}

/* Print Styles */
@media print {
    header, 
    footer, 
    .hero-scroll-indicator, 
    .btn,
    .cart-actions,
    .checkout-actions,
    .detail-actions,
    .order-actions {
        display: none !important;
    }
    
    main {
        margin-top: 0 !important;
    }
    
    .container {
        width: 100%;
        max-width: none;
        padding: 0;
    }
    
    a {
        color: #000 !important;
        text-decoration: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .order-confirmation,
    .cart-container,
    .checkout-container,
    .dashboard-container {
        padding: 0;
    }
}