/* Single Store Page Styles */

/* Typography Hierarchy - Store Pages */
.store-hero h1,
h1 {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
}

h2 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin-bottom: 0.8rem !important;
}

h3 {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.6rem !important;
}

h4 {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
}

/* Ensure proper hierarchy specificity */
.store-hero-info h1 {
    font-size: 1.8rem !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
}

/* Layout */
.page-layout-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
    min-height: 100vh;
    /* Ensure grid doesn't break */
    grid-template-rows: 1fr;
    align-items: start;
}

/* Main column should contain all sections without breaking grid */
.main-column {
    min-width: 0; /* Prevent grid items from overflowing */
    overflow-wrap: break-word;
    /* Critical: Prevent any float/position issues from breaking grid */
    contain: layout style;
    /* Ensure all content stays within the column */
    overflow: visible;
    position: relative;
}

/* Ensure all sections within main column don't break layout */
.main-column > * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Store Hero Section */
.store-hero {
    background: linear-gradient(135deg, var(--primary-color-light) 0%, #ffffff 100%);
    color: var(--text-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.store-hero-main-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.store-hero-logo {
    position: relative;
    min-width: 120px;
    min-height: 120px;
}

.store-hero-logo img {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    background-color: white;
    padding: 0.5rem;
    object-fit: contain;
}

.store-logo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark, #008a80) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.store-hero-info h1 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.store-description {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.store-trust-signals {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.store-category-tags {
    margin-top: 10px;
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag,
.category-tag-link,
.category-tag-button {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-color-light);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 169, 157, 0.2);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
    cursor: pointer;
}

.category-tag-button {
    border: 1px solid rgba(0, 169, 157, 0.2);
    background-color: var(--primary-color-light);
    font-family: inherit;
    outline: none;
}

.category-tag:hover,
.category-tag-link:hover,
.category-tag-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.category-tag::before,
.category-tag-link::before,
.category-tag-button::before {
    content: '#';
    margin-right: 3px;
    opacity: 0.7;
}

.category-tag::after,
.category-tag-link::after,
.category-tag-button::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 12px;
    right: 12px;
    height: 1px;
    background-color: currentColor;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none; /* Ensure pseudo-element doesn't block clicks */
}

.category-tag-link:hover::after,
.category-tag-button:hover::after {
    opacity: 0.7;
}

.category-tag-button:active {
    transform: translateY(0);
}

/* Ensure category links are clickable */
.category-tag-link {
    pointer-events: auto;
    z-index: 10;
    position: relative;
}

.category-tag-link:active {
    transform: translateY(0);
}

/* Offer Cards */
.offer-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.offer-card {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 1rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.offer-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Featured Offer Card Style */
.offer-card--featured {
    border: 2px solid var(--accent-color);
    position: relative;
}

.offer-card-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 1rem;
    border-right: 1px solid var(--border-color);
    min-width: 80px;
}

.offer-strength {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.offer-tag {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.25rem;
}

.offer-tag-code {
    background-color: var(--primary-color-light);
    color: var(--primary-color);
}

.offer-tag-deal {
    background-color: var(--accent-color-light);
    color: #B8860B;
}

.offer-tag-top {
    background-color: #FFE4E1;
    color: #FF6347;
}

.offer-card-content {
    flex: 1;
}

.offer-title {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.offer-exclusive-tag {
    background-color: var(--accent-color);
    color: #333;
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.offer-meta {
    color: var(--text-color-light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.offer-additional-info {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
}

.works-with-sale {
    color: var(--success-color);
}

.verified-badge {
    color: var(--primary-color);
    font-weight: 500;
}

.offer-card-action {
    display: flex;
    align-items: center;
}

.cta-button-main {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.cta-button-main:hover {
    background-color: var(--primary-color-dark);
}

.cta-button-deal-secondary {
    background-color: var(--accent-color);
    color: #333;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}

.cta-button-deal-secondary:hover {
    background-color: var(--accent-color-dark);
}

.offer-card-footer {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-color-light);
}

.offer-stats {
    display: flex;
    gap: 1rem;
}

.terms-text {
    cursor: pointer;
    text-decoration: underline;
    color: var(--text-color-light);
}

.added-by {
    font-style: italic;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Ensure sidebar stays in place */
    min-width: 0;
    position: relative;
    z-index: 2;
    /* Prevent sidebar from being affected by main content */
    align-self: start;
    max-width: 100%;
}

.sidebar-widget {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--text-color);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    margin-bottom: 0.5rem;
}

.sidebar-widget ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-widget ul li a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
}

/* Modern Coupon Card V2 Design */
.coupon-card-v2 {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.coupon-card-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Priority-based styling */
.coupon-card-v2.premium-deal {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
}

.coupon-card-v2.featured-deal {
    border: 2px solid #FF6B6B;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.coupon-card-v2.verified-deal {
    border: 2px solid #00A99D;
    background: linear-gradient(135deg, #f0fffe 0%, #ffffff 100%);
}

/* Priority badges */
.priority-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 12px;
    border-radius: 0 12px 0 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    z-index: 2;
}

.priority-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.priority-badge.featured {
    background: linear-gradient(135deg, #FF6B6B, #FF5252);
}

.priority-badge.verified {
    background: linear-gradient(135deg, #00A99D, #00897B);
}

.priority-badge.exclusive {
    background: linear-gradient(135deg, #FFD700, #00A99D, #00D4AA);
}

.coupon-card-v2.exclusive-deal {
    border: 2px solid #FFD700;
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
}

/* Coupon header */
.coupon-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #f0f0f0;
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.discount-display {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.coupon-title-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

.discount-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.deal-type {
    font-size: 0.8rem;
    font-weight: 600;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Modern CTA button - Universal styling */
.modern-cta,
.cta-button-main,
.cta-button-deal-secondary {
    padding: 12px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    min-width: 100px !important;
    text-align: center !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    height: 44px !important;
    width: 100px !important;
}

/* Specific colors for different button types */
.cta-button-main {
    background-color: #00A99D !important;
    color: white !important;
}

.cta-button-deal-secondary {
    background-color: #FFD700 !important;
    color: #333 !important;
}

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

.modern-cta:hover::before {
    left: 100%;
}

.modern-cta:hover,
.cta-button-main:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    background-color: #008C82 !important;
}

.cta-button-deal-secondary:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    background-color: #E6C200 !important;
}

/* Coupon content */
.coupon-content {
    padding: 1.5rem;
}

.coupon-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    line-height: 1.4;
}

.coupon-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.coupon-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.coupon-meta i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.usage-stats {
    color: #3498db;
}

.success-rate {
    color: #27ae60;
}

.expiry-info {
    color: #e67e22;
}

.added-by {
    color: #95a5a6;
    font-style: italic;
}

/* How We Find Deals Flow Section */
.how-we-find-deals-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}


.deals-discovery-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    width: 100%;
    max-width: 500px;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.flow-step.verification-step {
    border-left: 4px solid var(--primary-color);
    background: linear-gradient(135deg, #f0fffe 0%, #ffffff 100%);
}

.flow-step.team-step {
    border-left: 4px solid var(--accent-color);
    background: linear-gradient(135deg, #fffbf0 0%, #ffffff 100%);
}

.step-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark, #008a80) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 169, 157, 0.3);
}

.verification-step .step-icon {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.team-step .step-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, #e6c200 100%);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
}

.step-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1rem 0;
    opacity: 0.7;
}

.flow-result {
    margin-top: 2rem;
    text-align: center;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark, #008a80) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 169, 157, 0.3);
}

.result-badge i {
    font-size: 1.2rem;
}

/* Mobile responsive for flow */
@media (max-width: 768px) {
    .how-we-find-deals-section {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .flow-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .step-icon {
        min-width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(0deg);
        margin: 0.5rem 0;
    }
    
    .result-badge {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .page-layout-container {
        grid-template-columns: 1fr;
    }
    
    .store-hero-main-content {
        flex-direction: column;
        text-align: center;
    }
    
    .offer-card {
        grid-template-columns: 1fr;
    }
    
    .offer-card-type {
        flex-direction: row;
        justify-content: center;
        padding-right: 0;
        padding-bottom: 0.75rem;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .offer-strength {
        margin-right: 0.5rem;
        margin-bottom: 0;
    }
    
    .offer-card-action {
        justify-content: center;
        margin-top: 0.5rem;
    }
    
    /* Mobile adjustments for new cards */
    .coupon-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .coupon-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .discount-display {
        align-items: center;
    }
}

/* Recently Added Coupons List - Simple Design */
.recently-added-coupons {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    /* Ensure section doesn't break the grid layout */
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.recently-added-coupons h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.recently-added-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-deal-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: all 0.2s ease;
}

.recent-deal-item:hover {
    background: #f0f0f0;
    transform: translateX(2px);
}

.deal-info {
    flex: 1;
    min-width: 0;
}

.deal-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.deal-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.deal-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.deal-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-color-light);
}

.discount-amount {
    background: var(--primary-color);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8rem;
}

.deal-separator {
    color: #ccc;
    font-weight: bold;
}

.added-date,
.expiry-date {
    color: var(--text-color-light);
}

.code-required {
    background: var(--accent-color);
    color: #333;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.75rem;
}

.deal-status {
    flex-shrink: 0;
    margin-left: 1rem;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-badge.active {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-badge.verified {
    background-color: #cce7ff;
    color: #004085;
    border: 1px solid #b3d7ff;
}

.status-badge.expired {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Discount badge styling */
.discount-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark, #008a80) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    display: inline-block;
    min-width: 80px;
    box-shadow: 0 2px 8px rgba(0, 169, 157, 0.2);
}

/* Mobile responsive table */
@media (max-width: 768px) {
    .recently-added-coupons {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .recently-added-table {
        font-size: 0.8rem;
    }
    
    .recently-added-table th,
    .recently-added-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .title-cell {
        max-width: 200px;
    }
    
    .deal-title-link {
        font-size: 0.9rem;
    }
    
    .discount-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        min-width: 60px;
    }
    
    /* Stack table cells on very small screens */
    @media (max-width: 480px) {
        .recently-added-table,
        .recently-added-table thead,
        .recently-added-table tbody,
        .recently-added-table th,
        .recently-added-table td,
        .recently-added-table tr {
            display: block;
        }
        
        .recently-added-table thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }
        
        .recently-added-table tr {
            border: 1px solid var(--border-color);
            margin-bottom: 1rem;
            border-radius: var(--border-radius);
            padding: 1rem;
            background: white;
        }
        
        .recently-added-table td {
            border: none;
            position: relative;
            padding: 0.5rem 0 0.5rem 50%;
            text-align: left;
        }
        
        .recently-added-table td:before {
            content: attr(data-label) ": ";
            position: absolute;
            left: 0;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
            font-weight: 600;
            color: var(--text-color);
        }
    }
}
