:root {
    --primary: #e11d48;
    --primary-dark: #be123c;
    --accent: #991b1b;
    --bg-light: #ffffff;
    --bg-alt: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

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

/* Header & Nav */
.header {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--accent);
}

.search-bar {
    flex: 1;
    max-width: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar i {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    width: 18px;
}

.search-bar input {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    outline: none;
    background: #f1f5f9;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 70, 190, 0.1);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links li a:hover, .nav-links li a.active {
    color: var(--primary);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--text-main);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Deal of the Week Banner */
.deal-of-week {
    padding: 2rem 0 3rem; /* Tighter top padding for hero-level placement */
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.deal-slider-container {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(225, 29, 72, 0.15);
}

.deal-slides {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.deal-banner {
    flex: 0 0 100%;
    padding: 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    position: relative;
}

/* Slide: Noon */
.banner-noon {
    background: #FFDE00;
    color: #000 !important;
}

.banner-noon .deal-badge {
    background: rgba(0, 0, 0, 0.07);
    color: #000;
    border: 1px solid rgba(0,0,0,0.1);
}

.banner-noon .deal-btn {
    background: #000;
    color: #FFDE00;
}

.banner-noon .deal-title {
    color: #000;
}

.banner-noon .deal-title span {
    color: #e11d48;
    text-decoration: none;
    font-weight: 800;
}

.banner-noon .timer-item span {
    color: #000;
}

.banner-noon .deal-subtitle {
    color: rgba(0,0,0,0.7);
}

/* Slide 1: Namshi */
.banner-namshi {
    background: linear-gradient(135deg, #e11d48 0%, #881337 100%);
}

/* Slide 2: Bloomingdales */
.banner-bloomingdales {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* Slide 3: Vogacloset */
.banner-vogacloset {
    background: linear-gradient(135deg, #be123c 0%, #4c0519 100%);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    width: 30px;
    border-radius: 10px;
    background: var(--primary);
}

.deal-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.deal-content {
    max-width: 500px;
}

.deal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.deal-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.deal-title span {
    color: #fda4af; /* Soft pink glow */
}

.deal-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.deal-footer {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.deal-btn {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    animation: buttonPulse 2s infinite;
}

.deal-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.deal-timer {
    display: flex;
    gap: 1.5rem;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-item span:first-child {
    font-size: 1.5rem;
    font-weight: 700;
}

.timer-item span:last-child {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.7;
}

.deal-visual {
    flex-shrink: 0;
}

.deal-logo-box {
    width: 140px; 
    height: 140px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.deal-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@media (max-width: 768px) {
    .deal-of-week {
        padding: 1.5rem 0;
    }
    .deal-slider-container {
        width: calc(100% - 30px);
        margin: 0 auto;
        border-radius: 20px;
    }
    .deal-banner {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        min-height: auto;
    }
    .deal-content {
        max-width: 100%;
    }
    .deal-title {
        font-size: 1.5rem;
    }
    .deal-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .deal-footer {
        flex-direction: column;
        gap: 1rem;
    }
    .deal-logo-box {
        width: 110px;
        height: 110px;
    }
    .deal-timer {
        justify-content: center;
    }
}

/* Hero Section (Now 2nd section) */
.hero {
    background: #f8fafc; /* Very light subtle tint to separate from white slider bg */
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2rem;
}

.hero-stats span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-stats i {
    color: var(--primary);
    width: 20px;
}

/* Sections */
.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Categories Filter UI */
.filters {
    display: flex;
    gap: 0.75rem;
    background: #f1f5f9;
    padding: 0.4rem;
    border-radius: 50px;
}

.filter-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover:not(.active) {
    color: var(--text-main);
    background: rgba(255,255,255,0.5);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

/* Trending Stores Section Redesign - Infinite Loop */
.top-stores {
    padding: 3rem 0;
    margin-bottom: 2rem;
    overflow: hidden; /* Hide the overflow for loop */
    position: relative;
}

/* Gradient Mask to fade logos on edges */
.top-stores::before, .top-stores::after {
    display: none; /* Removed for now, can add if wanted */
}

.stores-grid {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding: 1rem 0 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.stores-grid::-webkit-scrollbar {
    display: none;
}

.scroll-wrapper {
    position: relative;
    width: 100%;
}

.scroll-nav {
    position: absolute;
    top: calc(50% - 1rem); /* Precisely center against bubbles, adjusting for grid padding */
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.scroll-nav:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.2);
}

.scroll-wrapper:hover .scroll-nav {
    opacity: 1;
}

.scroll-nav.prev {
    left: -22px; /* Hang slightly off the edge for premium look */
}

.scroll-nav.next {
    right: -22px;
}

@media (max-width: 768px) {
    .scroll-nav {
        display: none; /* Hide on mobile touch devices */
    }
}

.store-card {
    flex: 0 0 170px; /* Increased for 6 visible */
    width: 170px;
    height: 170px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 2px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.store-card:hover {
    transform: scale(1.15) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.25);
    background: var(--white);
    z-index: 10;
}

.store-card img {
    max-width: 110px; /* Increased */
    max-height: 55px; /* Increased */
    object-fit: contain;
    mix-blend-mode: multiply;
}

@media (max-width: 768px) {
    .store-card {
        flex: 0 0 130px;
        width: 130px;
        height: 130px;
    }
    .store-card img {
        max-width: 85px;
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    .stores-grid {
        animation-duration: 20s; /* Faster scroll on mobile */
    }
}

/* Coupons Grid */
.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem; /* Increased whitespace between cards */
    margin-bottom: 4rem;
}

.coupon-card {
    background: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column; /* Vertical layout for clean look */
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.coupon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(225, 29, 72, 0.1);
    border-color: var(--primary);
}

.coupon-logo-box {
    height: 140px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.coupon-logo-box img {
    max-width: 140px;
    max-height: 70px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.coupon-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.coupon-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.status-verified {
    font-size: 0.75rem;
    color: #059669;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-used {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.coupon-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.coupon-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.coupon-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.show-code-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.4rem;
    border-radius: 50px; /* Pill shape */
    font-weight: 700;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.show-code-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Related Stores Section */
.related-stores {
    margin-top: 6rem;
    padding-top: 4rem;
    padding-bottom: 6rem; /* Substantial bottom whitespace */
    border-top: 1px solid #f1f5f9;
}

.related-stores h3 {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

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

.similar-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #f1f5f9;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.similar-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.1);
}

.similar-item img {
    max-width: 120px;
    max-height: 50px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.similar-item span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

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

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    gap: 0.5rem;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumbs span::before {
    content: '/';
    margin-right: 0.5rem;
}

.coupon-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.show-code-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}

.show-code-btn:hover {
    background: var(--primary-dark);
}

/* Peel Effect on Button */
.show-code-btn::after {
    content: '...';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.1);
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px dashed rgba(255,255,255,0.3);
}

/* SEO Section */
.seo-content {
    margin-bottom: 4rem;
}

.seo-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.seo-card h2 {
    margin-bottom: 1rem;
}

.seo-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease-out;
}

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

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-header img {
    max-height: 60px;
    margin-bottom: 1rem;
}

.modal-body {
    text-align: center;
}

.code-box {
    margin: 1.5rem 0;
    border: 2px dashed var(--primary);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8fafc;
}

#couponCodeDisplay {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

#copyBtn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.go-to-store {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    margin-top: 1rem;
}

/* Footer Redesign */
.footer {
    background: #0f172a;
    color: var(--white);
    padding: 5rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 5rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.footer ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #94a3b8;
    transition: color 0.3s;
}

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

/* How it Works Section */
.how-it-works {
    padding: 5rem 0;
    background: #fdfdfd;
    border-bottom: 1px solid #f1f5f9;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 500px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: rgba(225, 29, 72, 0.05); /* Light Ruby Tint */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.step-icon i {
    width: 32px;
    height: 32px;
}

.step-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.4rem;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* FAQ Styles */
.faq-section {
    margin-top: 3rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 2rem;
}

.faq-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Elite Store Page Layout */
.store-grid-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.store-main-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.store-hero {
    background: var(--white);
    border-bottom: 2px solid #f8fafc;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.store-info-main {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.store-hero-left {
    flex: 0 0 240px;
    display: flex;
    justify-content: center;
}

.store-logo-large {
    width: 240px;
    height: 120px;
    background: var(--white);
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.store-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.store-hero-center {
    flex: 1;
}

.store-hero-center h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.store-primary-deal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.deal-percentage {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

.deal-vertical-line {
    width: 2px;
    height: 50px;
    background: #e2e8f0;
}

.deal-short-desc {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.3;
}

.hero-cta-box {
    margin-top: 2rem;
}

.hero-show-code {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.2);
    transition: all 0.3s;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

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

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.badge i {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.content-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.content-card h2, .brand-faqs h2 {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.content-card h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.savings-guide ul {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Sidebar Styles */
.store-sidebar {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f1f5f9;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-list li {
    display: flex;
    gap: 1.2rem;
}

.info-list li i {
    width: 24px;
    height: 24px;
    color: var(--primary);
    background: rgba(225, 29, 72, 0.05);
    padding: 10px;
    border-radius: 10px;
    box-sizing: content-box;
}

.info-list li strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-list li span, .info-list li a {
    font-size: 1rem;
    color: var(--text-main);
    font-weight: 500;
}

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

/* Similar Stores Sidebar */
.similar-grid-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.similar-item-sidebar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.similar-item-sidebar:hover {
    border-color: var(--primary);
    background: #fdfdfd;
}

.similar-item-sidebar img {
    width: 50px;
    height: 30px;
    object-fit: contain;
}

.similar-item-sidebar span {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

@media (max-width: 992px) {
    .store-grid-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .store-sidebar {
        position: static;
        order: 2;
    }
}

@media (max-width: 768px) {
    .store-hero {
        padding: 2.5rem 1.5rem;
    }
    .store-info-main {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    .store-hero-left {
        flex: 0 0 auto;
        width: 100%;
    }
    .store-logo-large {
        width: 180px;
        height: 90px;
        margin: 0 auto;
    }
    .store-hero-center h1 {
        font-size: 1.6rem;
    }
    .store-primary-deal {
        flex-direction: column;
        gap: 0.5rem;
    }
    .deal-vertical-line {
        display: none;
    }
    .deal-percentage {
        font-size: 3rem;
    }
    .hero-cta-box {
        margin-top: 1.5rem;
    }
    .store-hero-right {
        display: none; /* Hide features on mobile to keep it clean */
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Brand Pages & Hero Styles */
.logo-box-final {
    width: 150px;
    height: 150px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid #f1f5f9;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.logo-box-final img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.hero-banner {
    background: linear-gradient(to right, #ffffff, #f8fafc);
    padding: 4rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.hero-info h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.cta-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.2);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(225, 29, 72, 0.3);
}

.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    padding: 4rem 0;
}

.savings-card {
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-info {
    position: sticky;
    top: 100px;
    background: var(--white);
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

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

.faq-item h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .main-content-grid {
        grid-template-columns: 1fr;
    }
    .sidebar-info {
        position: static;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .logo {
        order: 1;
        flex: 1;
    }

    .logo a {
        font-size: 1.25rem;
    }

    .hamburger-menu {
        order: 2;
        margin-left: auto;
    }

    .search-bar {
        order: 3;
        display: flex;
        flex-basis: 100%;
        width: 100%;
        margin-top: 0.5rem;
    }

    .nav-links {
        order: 4;
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background-color: var(--white);
        width: 80%;
        height: 100vh;
        padding: 80px 40px;
        transition: 0.3s;
        box-shadow: 10px 0 15px rgba(0,0,0,0.1);
        z-index: 1000;
        gap: 2rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .seo-features {
        grid-template-columns: 1fr;
    }
    
    .coupons-grid {
        grid-template-columns: 1fr;
    }

    /* Hamburger Animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg);
    }
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    /* Fix Logos on brand pages */
    .logo-box-final {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        margin: 0 auto;
    }
    
    .hero-info h1 {
        font-size: 1.8rem;
    }
    
    .savings-card {
        padding: 1.5rem;
    }
}


/* FAQ Grid Layout */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
