:root {
    --primary-blue: #003366;
    --accent-orange: #FF8C00;
    --accent-orange-hover: #e67e00;
    --dark-grey: #212529;
    --body-bg: #F5F5F5;
    --white: #ffffff;
    --text-main: #333;
    --text-muted: #666;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-lg: 16px;
    --radius-md: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--body-bg);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #f22424;
    /* Light Blue for contrast */
    color: var(--text-main);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.top-nav {
    padding: 15px 0;
}

.top-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
}

.logo-container {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    font-size: 28px;
    display: block;
}

.logo-edit-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-container:hover .logo-edit-overlay {
    opacity: 1;
}

.logo-container:hover .logo-icon {
    filter: blur(1px);
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.main-menu a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.main-menu a:hover {
    opacity: 0.8;
}

.btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-orange {
    background-color: var(--accent-orange);
    color: var(--white);
}

.btn-orange:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
}

.btn-blue {
    background-color: var(--primary-blue);
    color: var(--white);
}

.search-nav {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 0;
}

.search-wrapper {
    display: flex;
    background-color: var(--white);
    border-radius: 50px;
    overflow: hidden;
    padding: 5px;
}

.category-dropdown {
    padding: 0 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    border-right: 1px solid #eee;
    font-size: 14px;
    cursor: pointer;
}

.search-input-group {
    flex: 1;
    display: flex;
}

.search-input-group input {
    flex: 1;
    border: none;
    padding: 0 20px;
    font-size: 15px;
    outline: none;
}

.btn-search {
    background-color: var(--accent-orange);
    border: none;
    padding: 0 30px;
    font-weight: 600;
    cursor: pointer;
}

/* Hero Slider */
.hero {
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 60%);
}

.hero-content {
    color: var(--white);
    max-width: 500px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary-blue);
}

.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 10px;
}

/* Popular Stores Section */
.popular-stores {
    padding: 40px 20px;
    background: #fdfdfd;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 30px;
}

.section-header-centered h2 {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-blue);
    /* Green color from image */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popular-stores-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.popular-store-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    width: 140px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    cursor: pointer;
}

.popular-store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.store-top {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    width: 100%;
}

.store-top img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.store-top .logo-placeholder {
    font-size: 16px;
    font-weight: 700;
}

.store-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.store-offers {
    font-size: 13px;
    color: var(--accent-orange);
    font-weight: 500;
}

/* Deals */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.deal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid #eee;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.scalloped-divider {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: radial-gradient(circle at 10px 10px, var(--white) 8px, transparent 9px);
    background-size: 20px 20px;
    background-position: center bottom;
    z-index: 5;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.deal-card:hover .card-image img {
    transform: scale(1.1);
}

.store-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: var(--shadow-soft);
    z-index: 10;
}

.store-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.discount-pill {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-orange);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-body {
    padding: 24px;
    position: relative;
    background: var(--white);
}

/* Pricing */
.price-container {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.sale-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-orange);
}

.original-price {
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Progress bar for carousels */
.scroll-container {
    position: relative;
    padding-bottom: 30px;
}

.progress-track {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-thumb {
    width: 30%;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: left 0.3s ease;
}

.store-label {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 8px;
    display: block;
}

.card-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-main);
    font-weight: 700;
    transition: var(--transition);
}

.deal-card:hover .card-body h3 {
    color: var(--primary-blue);
}

.card-body p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

/* Horizontal Coupon Cards */
.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.coupon-card {
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    box-shadow: var(--shadow-soft);
    padding: 0;
    transition: var(--transition);
    height: 140px;
}

.coupon-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.coupon-left {
    width: 120px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-right: 2px dashed #ddd;
    padding: 15px;
}

/* Punch holes for coupon effect */
.coupon-left::before,
.coupon-left::after {
    content: '';
    position: absolute;
    right: -8px;
    width: 16px;
    height: 16px;
    background: var(--body-bg);
    border-radius: 50%;
    z-index: 2;
}

.coupon-left::before {
    top: -8px;
}

.coupon-left::after {
    bottom: -8px;
}

.coupon-left img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.coupon-right {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coupon-right h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-main);
}

.coupon-right p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.btn-coupon {
    background: var(--accent-orange);
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-coupon:hover {
    background: #ffd54f;
}

/* Coolest Offers Section */
.coolest-offers {
    background: #fff;
    padding: 60px 0;
    margin-bottom: 50px;
}

.offer-carousel-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.offer-carousel-grid::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.offer-item {
    min-width: 300px;
    height: 400px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
}

.offer-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.offer-overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.offer-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .carousel-item {
        height: 400px;
    }

    .coupon-card {
        height: auto;
        flex-direction: column;
    }

    .coupon-left {
        width: 100%;
        border-right: none;
        border-bottom: 2px dashed #ddd;
        height: 100px;
    }

    .coupon-left::before,
    .coupon-left::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-nav .container {
        flex-direction: column;
        gap: 15px;
    }

    .main-menu ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
    }

    .hero-nav {
        display: none;
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .promo-banner {
        padding: 30px;
        height: auto !important;
    }
}

/* Footer */
footer {
    background-color: red;
    /* Changed from var(--primary-blue) to red */
    color: var(--white);
    padding-top: 60px;
}


.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
}

.app-badges {
    display: flex;
    gap: 15px;
}

.badge-placeholder {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 12px;
}

.footer-bottom {
    background: var(--dark-grey);
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* Vouchers Section */
.vouchers-section {
    padding: 40px 0;
    background: #f9f9f9;
}

.vouchers-grid {
    display: grid;
    /* Compact width for smaller decent cards */
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.voucher-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.voucher-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.voucher-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.voucher-image {
    position: relative;
    height: 120px;
    /* Compact height */
    overflow: hidden;
    background: #f0f0f0;
}

.voucher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.voucher-card:hover .voucher-image img {
    transform: scale(1.05);
}

/* Wavy divider effect */
.wavy-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 12px;
    background-image: radial-gradient(circle at 10px 0px, transparent 10px, var(--white) 10px);
    background-size: 20px 20px;
    background-position: 0 bottom;
    z-index: 5;
}

/* Store logo badge overlapping image and content */
.store-logo-badge {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    z-index: 10;
    border: 2px solid var(--white);
}

.store-logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    border-radius: 50%;
}

.store-logo-badge .logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 11px;
    border-radius: 50%;
}

/* Discount badge */
.discount-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #76A713;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.discount-badge.super-deal {
    background: #FF6B35;
}

/* Voucher content */
.voucher-content {
    padding: 24px 15px 15px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.voucher-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.35;
    /* Limit lines */
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.voucher-description {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
    min-height: 34px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.voucher-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    font-size: 11px;
    color: #888;
    margin-bottom: 10px;
}

.voucher-verified {
    color: #76A713;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.btn-voucher {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: block;
    text-align: center;
}

.btn-voucher:hover {
    background: #e9ecef;
    border-color: #ccc;
    color: #000;
}

.btn-voucher.super-deal {
    background: #FFF0E6;
    border: 1px solid #FFD8C2;
    color: #D94514;
}

.btn-voucher.super-deal:hover {
    background: #FFE0CC;
}

/* Responsive adjustments for vouchers */
@media (max-width: 768px) {
    .vouchers-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .voucher-image {
        height: 110px;
    }
}

/* --- Store Detail Page Styles --- */

.store-page {
    background-color: #f4f6f8;
    padding-bottom: 60px;
}

.store-hero {
    position: relative;
    margin-bottom: 60px;
    /* Space for the overlapping box */
}

.store-banner {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.store-info-box {
    position: absolute;
    top: -80px;
    /* Overlap the banner */
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.store-logo-large {
    width: 120px;
    height: 120px;
    border: 1px solid #eee;
    border-radius: var(--radius-md);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.store-logo-large img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.store-details {
    flex: 1;
}

.store-details h1 {
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
}

.text-yellow {
    color: var(--accent-yellow);
}

.store-desc {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 600px;
}

.btn-favorite {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    color: #666;
    cursor: pointer;
    transition: var(--transition);
}

.btn-favorite:hover {
    background: #ffebee;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

/* Page Layout */
.page-layout {
    display: flex;
    gap: 30px;
}

.main-content {
    flex: 1;
    min-width: 0;
    /* HTML/CSS quirk fix */
}

.sidebar {
    width: 320px;
    flex-shrink: 0;
}

/* Content Header */
.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.content-header h2 {
    font-size: 24px;
}


.filter-tabs {
    display: flex;
    background: #fff;
    padding: 4px;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.tab {
    border: none;
    background: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.tab.active {
    background: var(--primary-red);
    color: var(--white);
}

/* Detailed Voucher Card */
.voucher-card-detail {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.voucher-card-detail:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.voucher-left {
    width: 140px;
    background: #fff8e1;
    /* Light yellow bg for codes */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 2px dashed #e0e0e0;
    position: relative;
    text-align: center;
}

.deal-type .voucher-left {
    background: #e3f2fd;
    /* Light blue for deals */
}

.voucher-discount {
    font-size: 24px;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
    margin-bottom: 5px;
}

.voucher-type {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.voucher-middle {
    flex: 1;
    padding: 25px;
}

.voucher-middle h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.voucher-terms {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.voucher-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #4caf50;
    /* Green */
}

.verified {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.users-used {
    color: var(--text-muted);
}

.voucher-right {
    width: 160px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #f0f0f0;
}

.btn-reveal {
    background: var(--dark-grey);
    color: var(--white);
    border: 2px dashed #666;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.btn-reveal:hover {
    background: #000;
}

.btn-reveal.revealed {
    background: #4caf50;
    border: 2px solid #4caf50;
    border-style: solid;
}

.btn-activate {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-red);
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-activate:hover {
    background: #b71c1c;
}

.expiry {
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin-bottom: 25px;
}

.sidebar-widget h4 {
    font-size: 16px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Video Placeholder */
.video-container {
    height: 180px;
    background: #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    gap: 10px;
}

.video-placeholder i {
    font-size: 40px;
    opacity: 0.8;
}

/* Map Placeholder */
.map-container {
    height: 180px;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
    color: var(--primary-red);
}

/* Newsletter */
.newsletter-widget p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.newsletter-widget input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
}

.btn-subscribe {
    width: 100%;
    padding: 10px;
    background: #2e7d32;
    /* Green */
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

/* Popular Stores Sidebar */
.sidebar-stores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mini-store-logo {
    height: 60px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.mini-store-logo:hover {
    border-color: var(--primary-red);
}

.mini-store-logo img {
    max-width: 80%;
    max-height: 80%;
}

.logo-text-ph {
    font-weight: 700;
    font-size: 14px;
}

/* Categories List */
.sidebar-categories {
    list-style: none;
}

.sidebar-categories li {
    margin-bottom: 10px;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.sidebar-categories a:hover {
    background: #f5f5f5;
    color: var(--primary-red);
}

.sidebar-categories .count {
    background: #eee;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 900px) {
    .page-layout {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .store-info-box {
        position: relative;
        top: 0;
        margin-top: -50px;
        flex-direction: column;
        text-align: center;
    }

    .store-hero {
        margin-bottom: 30px;
    }
}