/* Store Page Styles - Puma Inspired Design */

/* Store Content Sections */
.store-content-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #E5E7EB;
}

.store-content-section:last-child {
    border-bottom: none;
}

.store-content-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #28a745;
}

.store-content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #6B7280;
    white-space: pre-wrap;
}

.store-content-html {
    font-size: 1rem;
    line-height: 1.8;
    color: #6B7280;
}

.store-content-html h2,
.store-content-html h3,
.store-content-html h4 {
    color: #0F172A;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.store-content-html h2 {
    font-size: 1.5rem;
}

.store-content-html h3 {
    font-size: 1.3rem;
}

.store-content-html h4 {
    font-size: 1.1rem;
}

.store-content-html p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.store-content-html ul,
.store-content-html ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.store-content-html li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.store-content-html table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.store-content-html table th,
.store-content-html table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.store-content-html table th {
    background-color: #F8FAFC;
    font-weight: 600;
    color: #0F172A;
}

.store-content-html table tr:hover {
    background-color: #F8FAFC;
}

.store-content-html a {
    color: #007bff;
    text-decoration: none;
}

.store-content-html a:hover {
    text-decoration: underline;
}

/* Offers Table */
.offers-table-container {
    margin: 1.5rem 0;
    overflow-x: auto;
}

.offers-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.offers-table thead {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
}

.offers-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offers-table td {
    padding: 1rem;
    border-bottom: 1px solid #E5E7EB;
    color: #0F172A;
    font-size: 0.95rem;
}

.offers-table tbody tr {
    transition: background-color 0.2s ease;
}

.offers-table tbody tr:hover {
    background-color: #F8FAFC;
}

.offers-table tbody tr:last-child td {
    border-bottom: none;
}

.offers-table td strong {
    color: #16A34A;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Store Page Styles - Puma Inspired Design */

/* Coupon Overlay Styles */
.coupon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.overlay-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: overlaySlideIn 0.3s ease-out;
}

@keyframes overlaySlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.overlay-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
}

.close-overlay {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close-overlay:hover {
    background: #f8f9fa;
    color: #333;
}

.overlay-body {
    padding: 1.5rem;
}

.coupon-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.coupon-details {
    flex: 1;
}

.coupon-details p {
    margin: 0.5rem 0;
    color: #555;
    line-height: 1.5;
}

.coupon-code-section {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.coupon-code-section label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.coupon-code-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coupon-code {
    background: white;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: #333;
    flex: 1;
    text-align: center;
}

.copy-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s ease;
}

.copy-btn:hover {
    background: #218838;
}

.deal-info {
    margin: 1rem 0;
    padding: 1rem;
    background: #e3f2fd;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.deal-info p {
    margin: 0;
    color: #1976d2;
    font-weight: 500;
}

.overlay-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.overlay-actions .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.overlay-actions .btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.overlay-actions .btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.overlay-actions .btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .overlay-content {
        width: 95%;
        margin: 1rem;
    }
    
    .coupon-info {
        flex-direction: column;
        text-align: center;
    }
    
    .overlay-actions {
        flex-direction: column;
    }
}

.store-main {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

.store-layout {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Make category pages wider */
.category-page .store-layout,
.store-main.category-page .store-layout {
    max-width: 1600px;
}

/* Also make the container wider for category pages */
.category-page .container,
.store-main.category-page .container {
    max-width: 1600px;
}

/* Left Sidebar - Filters */
.store-sidebar {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 1.5rem;
    height: fit-content;
    border: 1px solid #f0f0f0;
}

.filters-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filters-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

/* Search Bar */
.search-filters {
    position: relative;
}

.filter-search-input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.filter-search-input:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 0.9rem;
}

/* Filter Groups */
.filter-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow: visible;
    padding-bottom: 1.5rem;
}

.filter-group-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* Subcategory Checkboxes */
.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 200px;
    overflow-y: auto;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}

.filter-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.clear-filters-btn {
    background: none;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background-color: #dc3545;
    color: white;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.filter-checkbox:hover {
    background-color: #f8f9fa;
}

.filter-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.filter-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: #667eea;
    border-color: #667eea;
}

.filter-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
}

/* Stores Grid */
.stores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    overflow: visible;
}

.filter-group {
    overflow: visible;
    position: relative;
}

.store-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: visible;
    margin-bottom: 1.5rem;
}

.store-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: #667eea;
    z-index: 10;
}

.store-item::after {
    content: 'Click to visit';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #667eea;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1000;
}

.store-item:hover::after {
    opacity: 1;
}

.store-item .store-logo {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.store-item .store-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.store-logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.store-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Main Content Area */
.store-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

/* Breadcrumb Styling */
.breadcrumb {
    padding: 1.5rem 2rem 1rem;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: #5a67d8;
    text-decoration: underline;
}

.breadcrumb-separator {
    color: #999;
    margin: 0 0.25rem;
}

.breadcrumb span:last-child {
    color: #333;
    font-weight: 500;
}

/* Store Header Section */
.store-header {
    background: white;
    padding: 0;
    border-bottom: 1px solid #e9ecef;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Store Image Banner */
.store-image-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.store-banner-image:hover {
    transform: scale(1.05);
}

/* Category Image Banner */
.category-image-banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.category-banner-image:hover {
    transform: scale(1.05);
}

.store-info {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.store-logo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 0.5rem;
    overflow: hidden;
}

.store-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.store-details {
    flex: 1;
}

.store-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.store-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coupon-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    font-size: 0.95rem;
    font-weight: 600;
    background: #f0f4ff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.coupon-count i {
    color: #667eea;
}

/* Store Action Buttons */
.store-actions {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.action-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.action-btn i {
    font-size: 1rem;
}

/* Store Description Section */
.store-description {
    background: white;
    border-bottom: 1px solid #e9ecef;
    padding: 2rem;
    animation: slideDown 0.3s ease-out;
}


@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0 2rem;
}

.filter-tab {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
}

.filter-tab:hover {
    color: #333;
    background: rgba(102, 126, 234, 0.05);
}

.filter-tab.active {
    color: #667eea;
    border-bottom-color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

/* Offers Section */
.offers-section {
    padding: 2rem;
}

/* Stack coupon list cards one below the other (single column) */
.offers-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem;
}
.offers-section .offers-grid,
.store-content .offers-grid {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: unset !important;
}

/* Coupon list cards (Lovehoney-style: left logo/discount + tag, middle description + meta, right Get Code/Sale/Deal) */
.coupon-list-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s ease;
}
.coupon-list-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.coupon-list-card-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 100px;
}
.coupon-list-card-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    background: #fff;
    border-radius: 10px;
    padding: 6px;
    border: 1px solid #e9ecef;
}
.coupon-list-card-discount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.1;
}
.coupon-list-card-discount small {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748B;
}
.offer-tag {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}
.offer-tag.code { background: #b45309; color: #fff; }
.offer-tag.sale { background: #7c3aed; color: #fff; }
.offer-tag.deal { background: #0284c7; color: #fff; }
.offer-tag.exclusive { background: #c2410c; color: #fff; }
.coupon-list-card-middle {
    flex: 1;
    min-width: 0;
}
.coupon-list-card-middle .offer-tag.exclusive { margin-bottom: 0.35rem; }
.coupon-list-card-desc {
    font-size: 1rem;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 0.35rem 0;
    line-height: 1.4;
}
.coupon-list-card-meta {
    font-size: 0.8rem;
    color: #64748B;
    margin: 0 0 0.25rem 0;
}
.coupon-list-card-meta .dot { margin: 0 0.35rem; }
.coupon-list-card-terms {
    font-size: 0.8rem;
    color: #667eea;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}
.coupon-list-card-terms:hover { text-decoration: underline; }
.coupon-list-card-terms-content.open { display: block !important; }
.coupon-list-card-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
}
.coupon-list-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1.1rem;
    background: #facc15;
    color: #0F172A;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.coupon-list-card-btn:hover {
    background: #fde047;
    transform: translateY(-1px);
}
.coupon-list-card-btn.revealed { background: #e5e7eb; color: #374151; cursor: default; }
.coupon-list-card-added {
    font-size: 0.75rem;
    color: #94a3b8;
}
@media (max-width: 768px) {
    .coupon-list-card { flex-wrap: wrap; }
    .coupon-list-card-left { min-width: 80px; }
    .coupon-list-card-right { width: 100%; align-items: stretch; }
    .coupon-list-card-btn { justify-content: center; }
}

/* Offer Cards */
.offer-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.offer-main {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.offer-discount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
}

.offer-content {
    flex: 1;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.verified-badge i {
    font-size: 0.9rem;
}

.offer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.show-details {
    color: #667eea;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.show-details:hover {
    text-decoration: underline;
}

.offer-validity {
    font-size: 0.8rem;
    color: #666;
}

.offer-details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0;
}

.offer-action {
    flex-shrink: 0;
}

/* Additional Content Styles */
.store-additional-content {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e5e7eb;
}

.content-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #e5e7eb;
}

.content-section h3 {
    color: #1a1a1a;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-section h3 i {
    color: #667eea;
}

.brand-info p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.brand-info h4 {
    color: #2d3748;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-info h4 i {
    color: #667eea;
}

.brand-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.brand-features li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.brand-features li::before {
    content: "✓";
    color: #48bb78;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.brand-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2d3748;
    font-weight: 500;
}

.highlight-item i {
    color: #48bb78;
    font-size: 1.1rem;
}

.step-by-step {
    margin-bottom: 2rem;
}

.step-by-step-detailed {
    margin-bottom: 2rem;
}

.detailed-steps {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    margin: 0;
    counter-reset: step-counter;
}

.detailed-steps li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    counter-increment: step-counter;
}

.detailed-steps li::before {
    content: counter(step-counter);
    background: #667eea;
    color: white;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    position: absolute;
    left: 0;
    top: 0.1rem;
}

.step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: #667eea;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

.tips-section {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.tips-section h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tips-section h4 i {
    color: #f6ad55;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.tips-list li::before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.help-section p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.help-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.help-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #667eea;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.help-btn:hover {
    background: #5a67d8;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .store-additional-content {
        margin-top: 2rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .brand-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .help-actions {
        flex-direction: column;
    }
    
    .help-btn {
        justify-content: center;
    }
}

.code-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.code-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

/* No Offers */
.no-offers {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-offers p {
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .store-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .store-sidebar {
        order: 2;
    }
    
    .store-content {
        order: 1;
    }
    
    .category-image-banner {
        height: 200px;
    }
    
    .store-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .store-info {
        padding: 1.5rem;
    }
    
    .store-title {
        font-size: 1.5rem;
    }
    
    .filter-tabs {
        flex-wrap: wrap;
        padding: 0 1rem;
    }
    
    .filter-tab {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }
    
    .offer-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .offer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .stores-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .store-item {
        margin-bottom: 1.5rem;
    }
    
    .store-item::after {
        bottom: -25px;
    }
    
    .filter-group {
        padding-bottom: 2rem;
    }
    
    .store-actions {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .action-btn {
        justify-content: center;
        padding: 1rem;
    }
    
    .store-description {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .store-main {
        padding: 1rem 0;
    }
    
    .store-image-banner,
    .category-image-banner {
        height: 150px;
    }
    
    .store-header {
        padding: 0;
    }
    
    .store-info {
        padding: 1rem;
    }
    
    .store-logo {
        width: 60px;
        height: 60px;
    }
    
    .store-header {
        padding: 0;
    }
    
    .store-info {
        padding: 1rem;
    }
    
    .offers-section {
        padding: 1rem;
    }
    
    .offer-card {
        padding: 1rem;
    }
}

/* Highlighted Coupon Styles */
.highlighted-coupon {
    border: 3px solid #ffd700 !important;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3) !important;
    transform: scale(1.02);
    position: relative;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.highlight-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #ffd700;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    z-index: 10;
}

.coupon-code-display {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coupon-code-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.coupon-code-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: 2px;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    flex: 1;
    text-align: center;
}

.copy-code-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.copy-code-btn:hover {
    background: #218838;
}

.copy-code-btn:active {
    background: #1e7e34;
}

/* Show/Hide Details Link */
.show-details {
    color: #007bff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

.show-details:hover {
    color: #0056b3;
    text-decoration: underline;
}

.show-details.active {
    color: #dc3545;
}

.show-details i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.show-details.active i {
    transform: rotate(180deg);
}

/* Coupon Details Section */
.coupon-details {
    margin-top: 1rem;
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        padding-top: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
        padding-top: 1rem;
    }
}

.details-content {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    border-left: 4px solid #007bff;
}

.details-content h4 {
    color: #333;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.details-content ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #666;
    line-height: 1.5;
}

.details-content li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.details-actions {
    margin-top: 1rem;
    text-align: center;
}

.hide-details {
    color: #dc3545;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.hide-details:hover {
    color: #c82333;
    text-decoration: underline;
}

.hide-details i {
    font-size: 0.8rem;
}

/* Coupon Details Overlay */
.coupon-details-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.coupon-details-overlay.show {
    opacity: 1;
    visibility: visible;
}

.overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.coupon-details-modal {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(-50px);
    transition: all 0.3s ease;
}

.coupon-details-overlay.show .coupon-details-modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f8f9fa;
    color: #333;
}

.modal-content {
    padding: 2rem;
}

.coupon-info {
    text-align: center;
    margin-bottom: 2rem;
}

.coupon-discount {
    font-size: 2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.coupon-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.coupon-store {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.coupon-validity {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
}

.coupon-code-section {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.code-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 1rem;
}

.code-display {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.code-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    letter-spacing: 2px;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    flex: 1;
    text-align: center;
}

.coupon-description {
    margin-bottom: 2rem;
}

.coupon-description h4 {
    color: #333;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.coupon-description ol {
    color: #666;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.coupon-description li {
    margin-bottom: 0.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-actions .btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.modal-actions .btn-primary {
    background: #007bff;
    color: white;
}

.modal-actions .btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.modal-actions .btn-secondary {
    background: #6c757d;
    color: white;
}

.modal-actions .btn-secondary:hover {
    background: #545b62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}


/* Right Sidebar */
.store-right-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.sidebar-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sidebar-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 1rem 0;
}

.sidebar-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
    margin: 0 0 1rem 0;
}

/* Verification Card */
.verification-card {
    text-align: center;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffd700;
    border: 2px solid #333;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.verification-badge i {
    font-size: 1.5rem;
    color: #333;
}

.badge-text-small {
    font-size: 0.7rem;
    font-weight: 600;
    color: #333;
    display: block;
    line-height: 1;
}

.badge-text-large {
    font-size: 1rem;
    font-weight: 900;
    color: #333;
    display: block;
    line-height: 1;
}

.verification-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 1rem 0;
}

.verification-card h3 u {
    text-decoration: underline;
    text-decoration-color: #ffd700;
    text-decoration-thickness: 2px;
}

.terms-text {
    font-size: 0.75rem;
    color: #666;
    margin: 0.5rem 0;
}

.trustpilot-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.trustpilot-rating .stars {
    color: #00b67a;
    font-size: 1rem;
}

.trustpilot-text {
    color: #00b67a;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* VIP Card */
.vip-card {
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
    border: 1px solid #ffd700;
}

.vip-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.vip-icon {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.7rem;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.vip-icon i {
    font-size: 1rem;
}

.vip-header .sidebar-card-title {
    margin: 0;
    font-size: 1rem;
    flex: 1;
}

.vip-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.vip-btn-primary {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.vip-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.vip-btn-secondary {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.vip-btn-secondary:hover {
    border-color: #333;
    background: #f8f9fa;
}

/* Codes Summary Card */
.codes-summary-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.codes-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.codes-summary-item:last-of-type {
    border-bottom: none;
}

.codes-summary-item span:first-child {
    color: #666;
    font-size: 0.9rem;
}

.codes-summary-item span:last-child {
    font-weight: 600;
    color: #333;
}

.codes-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #fff9e6;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.codes-total strong {
    color: #333;
    font-size: 1rem;
}

/* Hints & Tips Card */
.hints-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hints-card li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: #555;
    font-size: 0.9rem;
}

.hints-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Right sidebar: prevent any content from overflowing (e.g. broken image alt text) */
.store-sidebar .sidebar-card,
.store-sidebar .filter-group {
    overflow: hidden;
}
.store-sidebar .sidebar-card-title,
.store-sidebar .shopper-like-name,
.store-sidebar .store-name {
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Shoppers Also Like Card */
.shoppers-like-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shopper-like-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.shopper-like-item:hover {
    background: #f8f9fa;
}

.shopper-like-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}
.shopper-like-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shopper-like-info {
    flex: 1;
    min-width: 0;
}

.shopper-like-name {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vip-badge-small {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.vip-badge-small i {
    font-size: 0.6rem;
}

.shopper-like-discounts {
    font-size: 0.8rem;
    color: #666;
}

/* Related Categories Card */
.related-categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.related-category-chip {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.related-category-chip:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

/* Popular Brands Card */
.popular-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.brand-chip {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.brand-chip:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

.brand-chip.vip {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff9e6, #ffffff);
}

.brand-chip.vip:hover {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
}

/* Category Highlights Section - Right Sidebar */
.category-highlights-section {
    margin-bottom: 1.5rem;
}

.category-highlights-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-name-highlight {
    margin-bottom: 1.5rem;
}

.highlighted-category-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.subcategories-list {
    margin-top: 1.5rem;
}

.subcategories-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin: 0 0 1rem 0;
}

.subcategories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.subcategory-chip {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.subcategory-chip:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

/* Popular Brands Section - Right Sidebar */
.popular-brands-section {
    margin-bottom: 1.5rem;
}

.popular-brands-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.popular-brands-header {
    margin-bottom: 1.5rem;
}

.popular-brands-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.popular-brands-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.vip-brands-section {
    margin-bottom: 2rem;
}

.vip-offer-banner {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.vip-badge-small {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 0.65rem;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.vip-badge-small i {
    font-size: 1rem;
    margin-bottom: 2px;
}

.vip-offer-text {
    flex: 1;
    font-size: 0.85rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.vip-brands-grid .brand-chip {
    background: #fff9e6;
    border-color: #ffd700;
}

.regular-brands-section {
    margin-top: 1.5rem;
}

.browse-az-link {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.browse-az-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: #333;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.browse-az-btn:hover {
    background: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .store-layout {
        grid-template-columns: 250px 1fr;
    }
    
    .store-right-sidebar {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        position: static;
    }
}

@media (max-width: 768px) {
    .store-layout {
        grid-template-columns: 1fr;
    }
    
    .store-right-sidebar {
        grid-column: 1;
        grid-template-columns: 1fr;
    }
    
    .coupon-details-modal {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .code-display {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .code-value {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
    }
}

/* Store Page Banner Styles */
.store-page-banner {
    width: 100%;
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-page-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.store-page-banner img {
    width: 100%;
    height: auto;
    display: block;
}