/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Updated Shoes Market Color Palette - Leather & Shoes Theme */
    --primary-color: #8B4513; /* Saddle Brown - Leather Color */
    --primary-dark: #654321; /* Dark Brown */
    --primary-light: #D2691E; /* Chocolate Brown */
    --secondary-color: #DAA520; /* Goldenrod - Premium Accent */
    --secondary-dark: #B8860B;
    --accent-color: #DC143C; /* Crimson Red - Sale Color */
    --accent-dark: #B22222;
    
    /* Neutral Colors - Fashion Theme */
    --dark-color: #2C1810; /* Dark Brown */
    --text-color: #5D4037; /* Brown Gray */
    --text-light: #8D6E63;
    --light-color: #FAF3E0; /* Cream/Beige */
    --white-color: #FFFFFF;
    --border-color: #D7CCC8;
    
    /* Background Colors */
    --bg-light: #FFF8E1;
    --bg-section: #FFFAF0;
    --bg-card: #FFFFFF;
    
    /* Status Colors */
    --success-color: #228B22; /* Forest Green */
    --warning-color: #FFA500; /* Orange */
    --error-color: #DC143C; /* Crimson Red */
    --info-color: #1E90FF; /* Dodger Blue */
    
    /* Fashion Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(139, 69, 19, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(139, 69, 19, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(139, 69, 19, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(139, 69, 19, 0.1);
    
    /* Border Radius */
    --radius-sm: 25px;
    --radius-md: 25px;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Mobile-First Spacing */
    --section-padding: 3rem 1rem;
    --container-padding: 0 1rem;
    
    /* Mobile-First Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
}

/* ===== BASE HTML & BODY ===== */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white-color);
    overflow-x: hidden;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
h5 { font-size: var(--text-base); }
h6 { font-size: var(--text-sm); }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-color);
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-light);
    z-index: -1;
    opacity: 0.5;
}

/* ===== LAYOUT & CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: var(--text-3xl);
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: var(--text-base);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* ===== BUTTONS SYSTEM ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    gap: 0.5rem;
    outline: none;
    min-height: 44px;
    touch-action: manipulation;
    position: relative;
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: var(--text-lg);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Button Text/Icons */
.btn-text {
    display: inline;
}

.btn-icon {
    display: none;
    font-size: var(--text-xl);
}

.btn-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== COMPONENTS ===== */

/* 1. LOADING SCREEN */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

.loading-screen p {
    color: var(--text-light);
    font-size: var(--text-lg);
}

/* 2. HEADER & NAVIGATION */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.landing-header.scrolled {
    box-shadow: var(--shadow-md);
}

.landing-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 1rem;
}

.logo {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 1001;
}

.logo i {
    font-size: var(--text-xl);
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.header-actions .btn-text {
    display: inline;
}

.header-actions .btn-icon {
    display: none;
}

/* 3. HERO SECTION */
.landing-hero {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #FAF3E0 0%, #FFF8E1 100%);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 100%;
    text-align: center;
}

.hero-title {
    font-size: var(--text-3xl);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: var(--text-base);
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1rem;
    background: var(--white-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-light);
}

/* 4. IMAGE SLIDER */
.hero-image {
    position: relative;
}

.image-slider {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 300px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--white-color);
    border: none;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-md);
    min-height: 44px;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* 5. FEATURES SECTION */
.features-section {
    padding: var(--section-padding);
    background-color: var(--white-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #F5E6D3; /* Light Leather Color */
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: var(--text-2xl);
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: var(--text-lg);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: var(--text-sm);
}

/* 6. HOW IT WORKS */
.how-it-works {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateY(20px);
}

.step.animated {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-lg);
}

.step-icon {
    width: 70px;
    height: 70px;
    background-color: #F5E6D3; /* Light Leather Color */
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: var(--text-2xl);
    color: var(--primary-color);
}

.step h3 {
    margin-bottom: 1rem;
    font-size: var(--text-lg);
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: var(--text-sm);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--white-color);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    min-height: 320px;
    margin-bottom: 2rem;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    pointer-events: none;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--warning-color);
    font-size: var(--text-base);
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-color);
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: #F5E6D3; /* Light Leather Color */
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: var(--text-lg);
}

.author-info h4 {
    margin-bottom: 0.25rem;
    font-size: var(--text-base);
}

.author-info p {
    font-size: var(--text-xs);
    color: var(--text-light);
    margin: 0;
}

/* Testimonial Controls */
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.testimonial-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background-color: var(--white-color);
    border: 2px solid var(--border-color);
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    min-height: 44px;
}

.testimonial-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.testimonial-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.testimonial-dot:hover {
    background-color: var(--primary-color);
}

/* Testimonial Stats */
.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.testimonial-stat {
    padding: 1.25rem;
    background-color: var(--white-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
}

.testimonial-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.testimonial-stat .stat-number {
    display: block;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-stat .stat-label {
    font-size: var(--text-xs);
    color: var(--text-light);
}

/* ===== SHARE MODAL STYLES ===== */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 1rem;
}

.share-modal.active {
    opacity: 1;
    visibility: visible;
}

.share-modal-content {
    background-color: var(--white-color);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow-xl);
    transform: translateY(-20px);
    transition: transform var(--transition-normal);
}

.share-modal.active .share-modal-content {
    transform: translateY(0);
}

.share-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.share-modal-header h3 {
    margin: 0;
    font-size: var(--text-xl);
    color: var(--dark-color);
}

.close-modal {
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: all var(--transition-fast);
    font-size: var(--text-lg);
}

.close-modal:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.share-modal-body {
    padding: 1.5rem;
}

.share-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: var(--text-base);
}

.share-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background-color: var(--bg-light);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.share-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.share-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    color: var(--white-color);
}

.share-text {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--dark-color);
}

/* Platform-specific colors */
.whatsapp-share .share-icon {
    background-color: #25D366;
}

.facebook-share .share-icon {
    background-color: #1877F2;
}

.instagram-share .share-icon {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.twitter-share .share-icon {
    background-color: #1DA1F2;
}

.email-share .share-icon {
    background-color: var(--primary-color);
}

.copy-link .share-icon {
    background-color: var(--secondary-color);
}

/* ===== SHARE URL MOBILE FIXES ===== */
.share-url {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-direction: row;
    align-items: center;
}

.share-url input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: var(--text-sm);
    background-color: var(--bg-light);
    color: var(--text-color);
    cursor: pointer;
    min-height: 44px;
    -webkit-appearance: none;
    appearance: none;
}

.share-url input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.btn-copy-url {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-base);
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    white-space: nowrap;
}

.btn-copy-url:hover {
    background-color: var(--primary-dark);
}

.share-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.share-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: var(--text-sm);
    margin: 0;
}

.share-stats i {
    color: var(--primary-color);
}

.share-count {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== LIMITED TIME OFFER SECTION ===== */
.limited-offer-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #5D4037 0%, #8B4513 100%); /* Leather Brown Gradient */
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.limited-offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.offer-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(218, 165, 32, 0.2); /* Goldenrod */
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(218, 165, 32, 0.3);
    animation: pulse 2s infinite;
}

.badge-text {
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--white-color);
}

.badge-icon {
    color: var(--warning-color); /* Orange */
    font-size: var(--text-base);
}

.offer-title {
    font-size: var(--text-3xl);
    margin-bottom: 1rem;
    color: var(--white-color);
    line-height: 1.2;
}

.offer-highlight {
    background: linear-gradient(90deg, #DAA520, #FFD700); /* Golden to Gold */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    display: inline-block;
    padding: 0 0.5rem;
}

.offer-subtitle {
    font-size: var(--text-base);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Daily Deal Timer Styles */
.offer-timer {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: var(--radius-xl);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-timer h3 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: var(--text-lg);
    font-weight: 600;
}

.timer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.timer-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.timer-box:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.timer-number {
    font-size: var(--text-4xl);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', monospace;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 600;
}

.timer-separator {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white-color);
    margin: 0 0.25rem;
}

/* Daily Sale Timing */
.sale-timing {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-style: italic;
}

/* Daily Schedule */
.offer-schedule {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.offer-schedule h4 {
    color: var(--white-color);
    margin-bottom: 1rem;
    font-size: var(--text-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.offer-schedule h4 i {
    color: var(--warning-color); /* Orange */
}

.schedule-days {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.day {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: var(--text-sm);
    font-weight: 600;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
}

.day.active {
    background-color: rgba(255, 165, 0, 0.2); /* Orange */
    border-color: var(--warning-color);
    color: var(--warning-color);
    transform: scale(1.1);
}

.day.current-day {
    background-color: var(--warning-color) !important; /* Orange */
    color: #000000 !important;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.schedule-note {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: center;
}

/* Daily deal active state */
.limited-offer-section.daily-deal-active {
    background: linear-gradient(135deg, #654321 0%, #8B4513 100%) !important;
}

.limited-offer-section.daily-deal-active::before {
    background-image: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.2)"/></svg>') !important;
}

.limited-offer-section.daily-deal-active .offer-badge {
    background-color: rgba(220, 20, 60, 0.3) !important; /* Crimson Red */
    border-color: rgba(220, 20, 60, 0.5) !important;
    animation: pulse 1s infinite !important;
}

.limited-offer-section.daily-deal-active .offer-badge .badge-icon {
    color: #ffffff !important;
}

/* Offer Features */
.offer-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.offer-feature {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.offer-feature:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.offer-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513, #ffffff); /* Leather Brown Gradient */
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white-color);
    font-size: var(--text-xl);
}

.offer-feature h4 {
    color: var(--white-color);
    margin-bottom: 0.5rem;
    font-size: var(--text-base);
}

.offer-feature p {
    font-size: var(--text-sm);
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

.offer-feature strong {
    color: var(--warning-color); /* Orange */
    font-weight: 700;
}

/* Offer CTA */
.offer-cta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.offer-discount {
    text-align: center;
}

.discount-badge {
    background: linear-gradient(135deg, #DAA520, #B8860B); /* Golden Gradient */
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.3);
    animation: bounce 2s infinite;
}

.discount-text {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-color);
}

.discount-percent {
    font-size: var(--text-3xl);
    font-weight: 900;
    color: var(--white-color);
    line-height: 1;
}

.discount-note {
    font-size: var(--text-sm);
    opacity: 0.9;
    max-width: 300px;
    margin: 0 auto;
}

/* Offer Buttons */
.offer-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.offer-countdown-mobile {
    display: none;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
    font-size: var(--text-sm);
}

.offer-countdown-mobile i {
    color: var(--warning-color); /* Orange */
    margin-right: 0.5rem;
}

/* Animation for bounce effect */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.7); /* Golden */
    }
    70% {
        box-shadow: 0 0 0 10px rgba(218, 165, 32, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(218, 165, 32, 0);
    }
}

/* Mobile responsive for share options */
@media (max-width: 480px) {
    .share-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-modal-content {
        max-width: 90%;
    }
}

@media (max-width: 360px) {
    .share-options {
        grid-template-columns: 1fr;
    }
}

/* Mobile specific styles */
@media (max-width: 768px) {
    .share-url {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .share-url input {
        width: 100%;
        font-size: var(--text-base);
        padding: 1rem;
        text-align: center;
        border-radius: var(--radius-lg);
    }
    
    .btn-copy-url {
        width: 100%;
        padding: 1rem;
        font-size: var(--text-base);
        font-weight: 600;
        border-radius: var(--radius-lg);
        gap: 0.75rem;
    }
    
    /* Adjust share options grid for mobile */
    .share-options {
        gap: 0.75rem;
    }
    
    .share-option {
        padding: 0.75rem;
    }
    
    /* Limited Offer Mobile Styles */
    .offer-title {
        font-size: var(--text-2xl);
    }
    
    .timer-container {
        gap: 0.5rem;
    }
    
    .timer-box {
        padding: 1rem;
        min-width: 70px;
    }
    
    .timer-number {
        font-size: var(--text-2xl);
    }
    
    .timer-separator {
        font-size: var(--text-xl);
    }
    
    .offer-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .offer-cta {
        gap: 1.5rem;
    }
    
    .offer-buttons {
        width: 100%;
    }
    
    .offer-countdown-mobile {
        display: block;
    }
    
    /* Daily Deal Mobile */
    .offer-schedule {
        padding: 1rem;
    }
    
    .day {
        width: 35px;
        height: 35px;
        font-size: var(--text-xs);
    }
}

/* Small mobile styles (480px and below) */
@media (max-width: 480px) {
    .share-url {
        gap: 0.5rem;
    }
    
    .share-url input {
        padding: 0.875rem 1rem;
        font-size: var(--text-sm);
    }
    
    .btn-copy-url {
        padding: 0.875rem;
        font-size: var(--text-sm);
    }
    
    /* Make share options smaller on very small screens */
    .share-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .share-icon {
        width: 40px;
        height: 40px;
        font-size: var(--text-lg);
    }
    
    .share-text {
        font-size: var(--text-xs);
    }
    
    /* Limited Offer Small Mobile */
    .offer-title {
        font-size: var(--text-xl);
    }
    
    .timer-box {
        min-width: 60px;
        padding: 0.75rem;
    }
    
    .timer-number {
        font-size: var(--text-xl);
    }
    
    .discount-badge {
        padding: 0.75rem 1.5rem;
    }
    
    .discount-percent {
        font-size: var(--text-2xl);
    }
    
    .day {
        width: 30px;
        height: 30px;
    }
    
    .offer-schedule h4 {
        font-size: var(--text-sm);
    }
}

/* Very small mobile styles (360px and below) */
@media (max-width: 360px) {
    .share-url input {
        font-size: 14px;
        padding: 0.75rem;
    }
    
    .btn-copy-url {
        font-size: 14px;
        padding: 0.75rem;
    }
    
    .share-options {
        grid-template-columns: 1fr;
    }
    
    .share-option {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 0.75rem 1rem;
        gap: 1rem;
    }
    
    .share-icon {
        width: 35px;
        height: 35px;
        font-size: var(--text-base);
    }
    
    /* Limited Offer Very Small Mobile */
    .timer-box {
        min-width: 50px;
        padding: 0.5rem;
    }
    
    .timer-number {
        font-size: var(--text-lg);
    }
    
    .timer-label {
        font-size: 10px;
    }
}

/* Tablet styles (769px to 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .share-url {
        flex-direction: row;
    }
    
    .btn-copy-url {
        min-width: 100px;
    }
    
    /* Limited Offer Tablet */
    .offer-cta {
        grid-template-columns: 1fr 1fr;
    }
    
    .offer-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop styles (992px and up) */
@media (min-width: 992px) {
    .offer-cta {
        grid-template-columns: 1fr 1fr;
    }
    
    .offer-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

/* Large Desktop Styles (1200px and up) */
@media (min-width: 1200px) {
    .offer-title {
        font-size: var(--text-4xl);
    }
    
    .timer-box {
        min-width: 100px;
    }
    
    .timer-number {
        font-size: var(--text-5xl);
    }
}

/* 7. CTA SECTION */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    text-align: center;
}

.cta-section h2 {
    color: var(--white-color);
    font-size: var(--text-3xl);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: var(--text-base);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* 8. FOOTER */
.landing-footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 2rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    color: var(--white-color);
    font-size: var(--text-xl);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: var(--text-sm);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    transition: all var(--transition-fast);
    font-size: var(--text-lg);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--white-color);
    margin-bottom: 1rem;
    font-size: var(--text-lg);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
    font-size: var(--text-sm);
}

.footer-links a:hover {
    color: var(--white-color);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: var(--text-sm);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-size: var(--text-base);
    min-height: 44px;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background-color var(--transition-fast);
    font-size: var(--text-base);
    min-height: 44px;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.newsletter-success {
    background-color: var(--white-color);
    color: var(--success-color);
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    display: none;
    margin-top: 1rem;
    font-size: var(--text-sm);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: var(--text-sm);
}

.footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-xs);
}

.footer-legal a:hover {
    color: var(--white-color);
}

/* 9. NOTIFICATION */
.notification {
    position: fixed;
    bottom: 5rem;
    left: 1rem;
    right: 1rem;
    background-color: var(--success-color);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification.active {
    opacity: 1;
    transform: translateY(0);
}

.notification i {
    font-size: var(--text-lg);
}

.notification p {
    margin: 0;
    flex: 1;
    min-width: 0;
    font-size: var(--text-sm);
}

.notification.error {
    background-color: var(--error-color);
}

.notification.warning {
    background-color: var(--warning-color);
}

.notification.info {
    background-color: var(--info-color);
}

/* 10. BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 5rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: var(--shadow-md);
    font-size: var(--text-xl);
    min-height: 50px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== RESPONSIVE ICON-ONLY BUTTONS ===== */

/* Header Actions - Mobile Icon Only */
@media (max-width: 768px) {
    .header-actions .btn-text {
        display: none;
    }
    
    .header-actions .btn-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-actions .btn {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: var(--radius-full);
        min-width: 44px;
        min-height: 44px;
    }
    
    .header-actions .btn::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--dark-color);
        color: var(--white-color);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-sm);
        font-size: var(--text-xs);
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-fast);
        z-index: 100;
        pointer-events: none;
    }
    
    .header-actions .btn:hover::after {
        opacity: 1;
        visibility: visible;
    }
}

/* Hero & CTA Buttons - Mobile Icon Only */
@media (max-width: 768px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn-text,
    .cta-buttons .btn-text {
        display: none;
    }
    
    .hero-buttons .btn-icon,
    .cta-buttons .btn-icon {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 50px;
        height: 50px;
        padding: 0;
        border-radius: var(--radius-full);
        min-width: 50px;
        min-height: 50px;
    }
    
    .hero-buttons .btn::after,
    .cta-buttons .btn::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--dark-color);
        color: var(--white-color);
        padding: 0.5rem 0.75rem;
        border-radius: var(--radius-sm);
        font-size: var(--text-xs);
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-fast);
        z-index: 100;
        pointer-events: none;
    }
    
    .hero-buttons .btn::before,
    .cta-buttons .btn::before {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 5px;
        border-style: solid;
        border-color: transparent transparent var(--dark-color) transparent;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-fast);
        z-index: 100;
    }
    
    .hero-buttons .btn:hover::after,
    .hero-buttons .btn:hover::before,
    .cta-buttons .btn:hover::after,
    .cta-buttons .btn:hover::before {
        opacity: 1;
        visibility: visible;
    }
}

/* Tablet: Show icon + text or just text */
@media (min-width: 769px) and (max-width: 991px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: row;
    }
    
    .btn-text {
        display: inline;
    }
    
    .btn-icon {
        display: none;
    }
    
    .header-actions .btn-text {
        display: inline;
    }
    
    .header-actions .btn-icon {
        display: none;
    }
    
    .header-actions .btn {
        width: auto;
        height: auto;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
    }
}

/* Desktop: Full text */
@media (min-width: 992px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-text {
        display: inline;
    }
    
    .btn-icon {
        display: none;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn {
        width: auto;
        height: auto;
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    :root {
        --section-padding: 4rem 2rem;
        --container-padding: 0 2rem;
    }
    
    h1 { font-size: var(--text-4xl); }
    h2 { font-size: var(--text-3xl); }
    h3 { font-size: var(--text-2xl); }
    h4 { font-size: var(--text-xl); }
    h5 { font-size: var(--text-lg); }
    
    .section-title {
        font-size: var(--text-4xl);
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-xl);
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .image-slider {
        height: 400px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Testimonials Tablet Styles */
    .testimonials-slider {
        min-height: 350px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: var(--text-lg);
        padding-left: 2rem;
    }
    
    .testimonial-text::before {
        font-size: 4rem;
    }
    
    .testimonial-rating {
        font-size: var(--text-lg);
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: var(--text-xl);
    }
    
    .author-info h4 {
        font-size: var(--text-lg);
    }
    
    .author-info p {
        font-size: var(--text-sm);
    }
    
    .testimonial-controls {
        gap: 1.5rem;
    }
    
    .testimonial-btn {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .testimonial-stat {
        padding: 1.5rem;
    }
    
    .testimonial-stat .stat-number {
        font-size: var(--text-2xl);
    }
    
    .testimonial-stat .stat-label {
        font-size: var(--text-sm);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 2rem;
        right: 2rem;
    }
    
    .notification {
        bottom: 2rem;
        left: auto;
        right: 2rem;
        max-width: 300px;
    }
    
    .notification p {
        font-size: var(--text-base);
    }
}

/* Desktop Styles (992px and up) */
@media (min-width: 992px) {
    :root {
        --section-padding: 5rem 0;
    }
    
    h1 { font-size: var(--text-5xl); }
    h2 { font-size: var(--text-4xl); }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    
    .hero-text {
        text-align: left;
        max-width: 600px;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .image-slider {
        height: 500px;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon i {
        font-size: var(--text-3xl);
    }
    
    /* Testimonials Desktop Styles */
    .testimonials-slider {
        min-height: 380px;
    }
    
    .testimonial-card {
        padding: 2.5rem;
    }
    
    .testimonial-text {
        font-size: var(--text-xl);
        line-height: 1.7;
    }
    
    .testimonial-rating {
        font-size: var(--text-xl);
    }
    
    .author-avatar {
        width: 70px;
        height: 70px;
        font-size: var(--text-2xl);
    }
    
    .testimonial-stats {
        gap: 2rem;
    }
    
    .testimonial-stat {
        padding: 2rem;
    }
    
    .testimonial-stat .stat-number {
        font-size: var(--text-3xl);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Large Desktop Styles (1200px and up) */
@media (min-width: 1200px) {
    h1 { font-size: var(--text-6xl); }
    h2 { font-size: var(--text-5xl); }
    
    .hero-title {
        font-size: var(--text-6xl);
    }
    
    /* Testimonials Large Desktop */
    .testimonials-slider {
        min-height: 400px;
    }
    
    .testimonial-card {
        padding: 3rem;
    }
    
    .testimonial-text {
        font-size: var(--text-xl);
        line-height: 1.8;
    }
}

/* Small Mobile Styles (480px and down) */
@media (max-width: 480px) {
    :root {
        --section-padding: 2.5rem 1rem;
        --container-padding: 0 0.75rem;
    }
    
    h1 { font-size: var(--text-2xl); }
    h2 { font-size: var(--text-xl); }
    h3 { font-size: var(--text-lg); }
    
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .image-slider {
        height: 250px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: var(--text-xl);
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: var(--text-sm);
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: var(--text-base);
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn,
    .header-actions .btn {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .step {
        padding: 1.5rem 1rem;
    }
    
    /* Testimonials Small Mobile */
    .testimonials-slider {
        min-height: 280px;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: var(--text-sm);
        padding-left: 1rem;
    }
    
    .testimonial-text::before {
        font-size: 2.5rem;
        top: -0.25rem;
    }
    
    .testimonial-rating {
        font-size: var(--text-sm);
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: var(--text-base);
    }
    
    .author-info h4 {
        font-size: var(--text-sm);
    }
    
    .author-info p {
        font-size: var(--text-xs);
    }
    
    .testimonial-controls {
        margin-bottom: 1.5rem;
    }
    
    .testimonial-btn {
        width: 40px;
        height: 40px;
        min-height: 40px;
    }
    
    .testimonial-stats {
        gap: 0.75rem;
    }
    
    .testimonial-stat {
        padding: 1rem;
    }
    
    .testimonial-stat .stat-number {
        font-size: var(--text-lg);
    }
    
    .testimonial-stat .stat-label {
        font-size: var(--text-xs);
    }
    
    .footer-content,
    .footer-bottom {
        padding: 1rem;
    }
    
    .notification {
        padding: 0.875rem 1rem;
        bottom: 1rem;
    }
}

/* Very Small Mobile Styles (360px and down) */
@media (max-width: 360px) {
    .hero-title {
        font-size: var(--text-xl);
    }
    
    .hero-buttons,
    .cta-buttons {
        gap: 0.5rem;
    }
    
    .hero-buttons .btn,
    .cta-buttons .btn,
    .header-actions .btn {
        width: 42px;
        height: 42px;
        min-width: 42px;
        min-height: 42px;
    }
    
    .feature-card,
    .step {
        padding: 1rem;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
        min-height: 36px;
    }
    
    /* Testimonials Very Small Mobile */
    .testimonials-slider {
        min-height: 260px;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-text {
        font-size: var(--text-xs);
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .testimonial-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== DARK MODE SUPPORT ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --dark-color: #FAF3E0;
        --text-color: #E0D6C9;
        --text-light: #A89B8C;
        --light-color: #2C1810;
        --bg-light: #3E2723;
        --bg-section: #4E342E;
        --bg-card: #3E2723;
        --border-color: #5D4037;
        --white-color: #2C1810;
    }
    
    .landing-hero {
        background: linear-gradient(135deg, #2C1810 0%, #3E2723 100%);
    }
    
    .feature-card,
    .stat,
    .step,
    .testimonial-card,
    .testimonial-stat {
        background-color: var(--bg-section);
    }
    
    .logo,
    .footer-brand .logo {
        color: var(--primary-light);
    }
    
    .btn::after {
        background-color: var(--light-color);
        color: var(--dark-color);
    }
    
    .btn::before {
        border-color: transparent transparent var(--light-color) transparent;
    }
    
    /* Limited Offer Dark Mode */
    .limited-offer-section {
        background: linear-gradient(135deg, #3E2723 0%, #5D4037 100%);
    }
    
    .limited-offer-section.daily-deal-active {
        background: linear-gradient(135deg, #654321 0%, #8B4513 100%) !important;
    }
    
    .offer-feature {
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .offer-timer {
        background-color: rgba(0, 0, 0, 0.4);
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .social-link:hover,
    .feature-card:hover,
    .stat:hover,
    .slider-btn:hover,
    .back-to-top:hover,
    .testimonial-btn:hover,
    .testimonial-stat:hover {
        transform: none;
    }
    
    .btn:active::after,
    .btn:active::before {
        opacity: 1;
        visibility: visible;
    }
    
    .btn,
    .slider-btn,
    .social-link,
    .testimonial-btn {
        min-height: 44px;
    }
    
    /* Limited Offer touch interactions */
    .timer-box:active {
        background-color: rgba(255, 255, 255, 0.2);
        transform: scale(0.95);
    }
    
    .offer-feature:active {
        background-color: rgba(255, 255, 255, 0.15);
        transform: scale(0.98);
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .landing-header,
    .back-to-top,
    .notification,
    .loading-screen {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section {
        padding: 1rem 0;
    }
    
    .btn {
        border: 1px solid #000;
    }
    
    .limited-offer-section {
        background: #f0f0f0 !important;
        color: #000 !important;
    }
    
    .offer-badge,
    .discount-badge {
        border: 1px solid #000 !important;
        background: #fff !important;
        color: #000 !important;
    }
}

/* ===== CUSTOM ICON CLASSES ===== */
.btn-store .btn-icon i::before { content: "\f54e"; }
.btn-explore .btn-icon i::before { content: "\f135"; }
.btn-learn .btn-icon i::before { content: "\f05a"; }
.btn-cart .btn-icon i::before { content: "\f07a"; }
.btn-heart .btn-icon i::before { content: "\f004"; }
.btn-search .btn-icon i::before { content: "\f002"; }
.btn-info .btn-icon i::before { content: "\f05a"; }
.btn-shopping .btn-icon i::before { content: "\f07a"; }