@import url('https://fonts.googleapis.com/css2?family=Poppins:wght=400;500;600;700;800&display=swap');

body {
    background-color: #f4f7f6;
    font-family: 'Poppins', sans-serif;
    margin: 0; padding: 0; color: #333;
}

/* Header */
.brand-header {
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 999;
    border-bottom: 2px solid #ff5722;
}
.brand-header img { max-width: 120px; height: auto; }
.header-dept {
    font-size: 15px;
    font-weight: 800;
    color: #ff5722;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.header-badge {
    background: linear-gradient(135deg, #ff5722, #ff3d00);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3);
    text-transform: uppercase;
}
@media (max-width: 768px) {
    .brand-header {
        padding: 10px 12px;
    }
    .brand-header img {
        max-width: 100px;
    }
    .header-dept {
        font-size: 12px;
    }
}

/* Scrolling Sale Patti */
.scrolling-banner {
    background: linear-gradient(90deg, #ff3d00, #ff5722, #ff9800); color: #fff; padding: 8px 0;
    overflow: hidden; white-space: nowrap; position: relative; font-weight: 700;
}
.scrolling-text {
    display: inline-block; padding-left: 100%;
    animation: scroll-left 20s linear infinite;
    font-size: 13px; letter-spacing: 0.5px;
}
@keyframes scroll-left { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* Page Title */
.main-heading {
    text-align: center; font-size: 22px; font-weight: 800;
    margin: 25px 0 10px; color: #111; text-transform: uppercase;
}

/* 🟢 TRUST BADGES 🟢 */
.top-trust-badges {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
    margin-bottom: 25px; padding: 0 10px;
}
.trust-tag {
    background: #e8f5e9; border: 1px solid #c8e6c9; color: #1b5e20;
    padding: 6px 12px; border-radius: 20px; font-size: 11.5px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 5px;
    box-shadow: 0 2px 6px rgba(46, 125, 50, 0.1);
}

/* Products Grid */
.products-container { padding: 5px 12px; }
.card {
    border-radius: 12px;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    height: 100%;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: #ff5722;
}
.card-sold {
    opacity: 0.85;
    cursor: default;
    pointer-events: none;
}
.card-sold:hover {
    transform: none !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04) !important;
    border-color: #eaeaea !important;
}
.discount-badge {
    position: absolute; top: 10px; right: 10px; background: #ff3d00;
    color: white; padding: 5px 12px; border-radius: 20px; font-weight: 800; font-size: 11px; z-index: 10;
    box-shadow: 0 4px 8px rgba(255, 61, 0, 0.3); letter-spacing: 0.5px;
}
.card-img-wrapper {
    width: 100%;
    height: 130px;
    overflow: hidden;
    background: #fdfdfd;
    position: relative;
}
@media (max-width: 768px) {
    .card-img-wrapper {
        height: 105px;
    }
}
.card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    transition: transform 0.5s ease;
}
.card:hover .card-img-top {
    transform: scale(1.05);
}
.card-body {
    padding: 10px 10px 12px 10px !important;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}
.card-title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 12px;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-align: left;
    text-transform: capitalize;
}

/* Card Bottom Action Row (Price next to button) */
.card-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    border-top: 1px solid #f5f5f5;
    padding-top: 8px;
}
.price-block {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.price-curr {
    font-size: 15px;
    font-weight: 800;
    color: #ff5722;
    line-height: 1.1;
}
.price-old {
    font-size: 10.5px;
    color: #999;
    font-weight: 600;
    line-height: 1;
    margin-top: 2px;
}
.btn-block {
    flex-shrink: 0;
    width: 55%;
}
.btn-sold {
    width: 100%;
    height: 30px;
    background: #e0e0e0 !important;
    color: #888 !important;
    border: none;
    padding: 0 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px !important;
    line-height: 1 !important;
    text-transform: uppercase;
    cursor: not-allowed;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes pulse-btn {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 61, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 4px 14px rgba(255, 61, 0, 0.55);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(255, 61, 0, 0.3);
    }
}

@keyframes shine-sweep {
    0% {
        left: -120%;
    }
    30% {
        left: 120%;
    }
    100% {
        left: 120%;
    }
}

.btn-primary { 
    background: linear-gradient(135deg, #ff1a00, #ff5722, #ff9800) !important; 
    border-radius: 20px; 
    font-size: 11px !important; 
    line-height: 1 !important;
    height: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2); 
    box-shadow: 0 3px 10px rgba(255, 61, 0, 0.4); 
    border: none; 
    padding: 0 10px; 
    width: 100%; 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    transition: all 0.3s ease; 
    animation: pulse-btn 2s infinite ease-in-out !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-primary::after, .btn-buy::after, .pdp-buy-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine-sweep 3s infinite ease-in-out;
    pointer-events: none;
}
.btn-primary:hover { 
    background: linear-gradient(135deg, #ff5722, #ff1a00, #ff5722) !important; 
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 5px 15px rgba(255, 61, 0, 0.7) !important;
}
.btn-buy {
    width: 100%;
    height: 30px;
    background: linear-gradient(135deg, #ff1a00, #ff5722, #ff9800);
    border: none;
    padding: 0 10px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 11px !important;
    line-height: 1 !important;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 10px rgba(255, 61, 0, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse-btn 2s infinite ease-in-out !important;
    position: relative;
    overflow: hidden;
}
.btn-buy:hover {
    background: linear-gradient(135deg, #ff5722, #ff1a00, #ff5722);
    box-shadow: 0 5px 15px rgba(255, 61, 0, 0.7) !important;
    transform: translateY(-1px) scale(1.03);
}
.btn-secondary { background: #e0e0e0; color: #777; border: none; padding: 10px; border-radius: 8px; width: 100%; font-weight: 800; font-size: 14px; }

/* Full Screen PDP */
.pdp-fullscreen {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #f8f9fb; z-index: 10000; overflow-y: auto;
}
.pdp-container {
    max-width: 700px; margin: 0 auto; background: #fff; min-height: 100vh;
    padding: 15px 15px 130px 15px; position: relative;
    box-shadow: 0 0 25px rgba(0,0,0,0.08);
}
.pdp-header-actions { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.pdp-title { font-size: 18px; font-weight: 700; color: #111; margin: 0; padding-right: 10px; line-height: 1.3; }
.close-btn { background: #ffebee; color: #ff3d00; border: none; border-radius: 50%; width: 34px; height: 34px; font-size: 18px; font-weight: bold; display: flex; align-items: center; justify-content: center; }

/* YouTube & Slider */
.pdp-video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; margin-bottom: 15px; border-radius: 12px; overflow: hidden; background: #000; display: none; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.pdp-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.slider-wrapper-main { display: none; margin-bottom: 15px; }
.slider-container { position: relative; overflow: hidden; border-radius: 12px; background: #000; aspect-ratio: 16/10; margin-bottom: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.slider-wrapper { display: flex; transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1); height: 100%; }
.slider-wrapper img { width: 100%; height: 100%; object-fit: contain; flex-shrink: 0; }
.dots-container { display: flex; justify-content: center; gap: 8px; margin-bottom: 10px; }
.dot { width: 8px; height: 8px; background: #ddd; border-radius: 50%; cursor: pointer; transition: 0.3s; }
.dot.active { width: 24px; border-radius: 10px; background: #ff5722; }

/* Bullets Style */
.bullets-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 8px; 
    margin-top: 15px; 
    margin-bottom: 20px; 
}
.bullet-item { 
    background: #f8f9fa; 
    padding: 6px 8px; 
    border-radius: 6px; 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    border: 1px solid #eee; 
    box-shadow: none; 
}
.indicator { 
    display: none; 
}
.bullet-text { 
    font-size: 11px; 
    font-weight: 600; 
    color: #333; 
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1.2;
    text-align: left;
}

/* Fixed Floating Bottom Bar */
.pdp-bottom-bar {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    width: 95%; max-width: 680px; background: #fff; padding: 12px 18px;
    border-radius: 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); display: flex; justify-content: space-between; align-items: center; border: 2px solid #2e7d32; z-index: 100;
}
.pdp-price-area span { color: #ff5722; font-size: 24px; font-weight: 800; display: block; line-height: 1; }
.pdp-price-area del { color: #999; font-size: 12px; font-weight: 600; }
.pdp-buy-btn { background: #ff5722; color: white; border: none; padding: 12px 30px; border-radius: 10px; font-weight: 800; font-size: 16px; box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3); display: flex; align-items: center; gap: 6px; }

/* Processing Modal */
.modal-overlay {
    display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.75); z-index: 10005; justify-content: center; align-items: center; padding: 20px;
    backdrop-filter: blur(5px);
}
.modal-content-box { background: #fff; width: 100%; max-width: 420px; padding: 30px 25px; border-radius: 16px; position: relative; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.3); border-top: 5px solid #2e7d32; }
.modal-close { position: absolute; top: 15px; right: 15px; background: #f4f6f9; border: none; font-size: 20px; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; color: #555; display: flex; justify-content: center; align-items: center; font-weight: bold; }
.form-input { width: 100%; padding: 14px; margin-bottom: 15px; border: 2px solid #e0e0e0; border-radius: 10px; font-family: 'Poppins', sans-serif; font-size: 15px; background: #fafafa; transition: 0.3s; text-align: center; font-weight: 700; color: #111; }
.form-input:focus { border-color: #2e7d32; outline: none; background: #fff; box-shadow: 0 0 10px rgba(46, 125, 50, 0.1); }

/* 🟢 MODERN REVIEWS CSS 🟢 */
.trust-banner-pro {
    background: linear-gradient(135deg, #1b5e20, #388e3c);
    border-radius: 14px; padding: 20px; text-align: center; margin-top: 35px; margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.25); color: white; border: 1px solid #4caf50;
}
.trust-banner-pro h4 { font-weight: 800; font-size: 20px; margin: 0 0 8px 0; letter-spacing: 0.5px; display: flex; justify-content: center; align-items: center; gap: 8px; }
.trust-banner-pro p { font-size: 13.5px; margin: 0; font-weight: 600; opacity: 0.95; }

.reviews-section { margin-top: 10px; margin-bottom: 50px; }

.rating-summary-box { 
    background: #fff; border-radius: 14px; padding: 20px; display: flex; align-items: center; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.04); border: 1px solid #eaeaea; margin-bottom: 25px; 
}
.big-rating-number { font-size: 46px; font-weight: 800; color: #111; line-height: 1; margin-right: 20px; }
.rating-stars-summary { color: #ffb400; font-size: 18px; margin-bottom: 4px; letter-spacing: 2px; }
.rating-text-summary { color: #777; font-size: 13px; font-weight: 600; }

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

.modern-review-card { 
    background: #fff; border-radius: 14px; padding: 20px; margin-bottom: 16px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); border: 1px solid #f0f0f0; transition: transform 0.2s; 
    animation: fadeInReview 0.6s ease forwards;
}
.reviewer-profile { display: flex; align-items: center; margin-bottom: 12px; }
.reviewer-avatar { 
    width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, #28a745, #20c997); 
    color: white; display: flex; align-items: center; justify-content: center; font-size: 18px; 
    font-weight: 800; margin-right: 12px; text-transform: uppercase; box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}
.reviewer-details { display: flex; flex-direction: column; }
.reviewer-name { font-weight: 800; font-size: 14.5px; color: #222; display: flex; align-items: center; gap: 6px; }
.verified-badge { 
    background: #e8f5e9; color: #2e7d32; padding: 3px 8px; border-radius: 20px; 
    font-size: 10px; font-weight: 800; display: inline-flex; align-items: center; gap: 4px; border: 1px solid #c8e6c9;
}
.review-meta { font-size: 11px; color: #888; margin-top: 3px; font-weight: 600; }
.review-rating-stars { color: #ffb400; font-size: 13px; margin-bottom: 10px; letter-spacing: 1px; }
.review-content { font-size: 13.5px; color: #333; line-height: 1.6; margin-bottom: 15px; font-weight: 500; }
.review-actions { border-top: 1px solid #f5f5f5; padding-top: 12px; display: flex; gap: 20px; }
.action-btn { background: none; border: none; color: #777; font-size: 12px; font-weight: 700; cursor: pointer; display: flex; align-items: center; gap: 5px; padding: 0; transition: 0.2s; }
.action-btn:hover { color: #ff5722; }

.write-review-btn { 
    width: 100%; background: #fdfdfd; border: 2px dashed #bbb; color: #666; padding: 14px; 
    border-radius: 12px; font-weight: 800; font-size: 15px; cursor: pointer; transition: 0.3s; margin-bottom: 25px; 
}
.write-review-btn:hover { background: #f4f6f9; border-color: #999; color: #333; }

.footer-area { background: #ffffff; padding: 35px 15px; text-align: center; border-top: 1px solid #eaeaea; margin-top: 20px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-bottom: 15px; }
.footer-links a { color: #555; font-size: 14px; text-decoration: none; font-weight: 700; text-transform: uppercase; }

@media (max-width: 768px) {
    .main-heading { font-size: 16px !important; white-space: nowrap !important; margin: 15px 0 5px !important; }
    .col-6 { padding-left: 6px; padding-right: 6px; }
    
    .card-body { padding: 10px 8px !important; }
    .card-title { font-size: 11px !important; height: 32px !important; line-height: 1.3 !important; margin-bottom: 6px !important; }
    .card-img-top { height: 110px !important; padding: 5px !important; }
    .price-display { font-size: 1.1em !important; margin-bottom: 8px !important; }
    .btn-primary, .btn-secondary, .btn-buy { font-size: 10px !important; height: 26px !important; padding: 0 8px !important; border-radius: 20px !important; letter-spacing: 0px !important; line-height: 1 !important; }
    
    .pdp-bottom-bar { padding: 10px 15px; width: 92%; }
    .pdp-buy-btn { padding: 12px 20px; font-size: 15px; }
    
    .top-trust-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 5px; }
    .trust-tag { font-size: 9.5px; padding: 5px 8px; }
    .trust-tag span { font-size: 11px !important; }
    
    /* Mobile adjustment for PDP Trust Badges */
    .pdp-container .top-trust-badges { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 5px; margin-bottom: 15px !important; }
    
    /* Responsive sales toast positioning and sizing */
    .sales-toast {
        bottom: 90px !important;
        left: -400px;
        width: 92% !important;
        max-width: 92% !important;
        padding: 8px 12px !important;
        transform: none !important;
    }
    .sales-toast.show {
        left: 4% !important;
    }
    .sales-toast .toast-avatar {
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
        margin-right: 8px !important;
    }
    .sales-toast .toast-sale-msg {
        font-size: 11px !important;
    }

    /* Trust Banner & Footer Compact View */
    .trust-banner-pro { padding: 12px 10px !important; margin-top: 20px !important; margin-bottom: 20px !important; }
    .trust-banner-pro h4 { font-size: 15px !important; margin-bottom: 4px !important; }
    .trust-banner-pro p { font-size: 10.5px !important; }

    .footer-area { padding: 20px 10px !important; margin-top: 10px !important; }
    .footer-links { gap: 12px !important; margin-bottom: 10px !important; }
    .footer-links a { font-size: 12px !important; }
    .footer-area p { font-size: 10px !important; }
}

/* ==========================================
   RECENT SALES FLOATING TOAST STYLES
   ========================================== */
.sales-toast {
    position: fixed;
    bottom: 25px;
    left: -400px; /* Start off-screen */
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    z-index: 10002;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 350px;
    pointer-events: none;
}
.sales-toast.show {
    left: 25px; /* Slide-in position */
}
.toast-avatar { 
    width: 40px; 
    height: 40px; 
    border-radius: 50%; 
    background: linear-gradient(135deg, #ff5722, #ff9800); 
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 18px; 
    font-weight: 800; 
    flex-shrink: 0; 
    margin-right: 12px; 
    box-shadow: 0 4px 10px rgba(255, 87, 34, 0.3); 
}
.toast-checkmark {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #2e7d32;
    color: #ffffff;
    font-size: 9px;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.toast-content-wrapper {
    display: flex;
    flex-direction: column;
}
.toast-sale-msg {
    font-size: 12px;
    color: #333333;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}
.toast-sale-msg span {
    color: #ff5722;
    font-weight: 700;
}
.toast-sale-msg strong {
    color: #111111;
    font-weight: 700;
}
.toast-time-ago {
    font-size: 10px;
    color: #2e7d32;
    font-weight: 600;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Poppins', sans-serif;
}

/* Updated side-by-side premium cards styling completed successfully */

/* ==========================================
   FREE FIRE 9TH ANNIVERSARY CELEBRATION POPUP
   ========================================== */
.anniversary-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 15000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.anniversary-popup-overlay.show {
    display: flex;
    opacity: 1;
}
.anniversary-popup-box {
    background: linear-gradient(145deg, #120c1f, #1f1133);
    border: 3px solid #ff9800;
    box-shadow: 0 0 35px rgba(255, 152, 0, 0.5);
    width: 90%;
    max-width: 320px;
    border-radius: 16px;
    position: relative;
    text-align: center;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
}
.anniversary-popup-overlay.show .anniversary-popup-box {
    transform: scale(1);
}
.anniversary-img-container {
    width: 100%;
    height: 150px;
    overflow: hidden;
    background: #000;
    position: relative;
    border-bottom: 2px solid #ff9800;
}
.anniversary-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}
.anniversary-badge-top {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(90deg, #ff3d00, #ff9800);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 61, 0, 0.5);
}
.anniversary-body {
    padding: 15px;
}
.anniversary-title-p {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 152, 0, 0.6);
}
.anniversary-subtitle-p {
    font-size: 12px;
    font-weight: 600;
    color: #ff9800;
    margin: 5px 0 10px 0;
    text-transform: uppercase;
}
.anniversary-description-p {
    font-size: 11px;
    color: #ddd;
    line-height: 1.4;
    margin: 0 0 15px 0;
    font-weight: 500;
}
.anniversary-claim-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff3d00, #ff5722, #d50000);
    color: #fff !important;
    border: none;
    padding: 10px 0;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255, 61, 0, 0.4);
    display: inline-block;
    text-decoration: none !important;
}
.anniversary-claim-btn:hover {
    background: linear-gradient(135deg, #d50000, #ff3d00, #ff5722);
    box-shadow: 0 8px 25px rgba(255, 61, 0, 0.7);
    transform: translateY(-2px);
}
.anniversary-close-x {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    z-index: 10;
    transition: 0.2s;
}
.anniversary-close-x:hover {
    background: #ff3d00;
    border-color: #ff3d00;
}

/* Celebration Sub-Header Styling */
.anniversary-sub-header {
    background: linear-gradient(90deg, #1a0033, #33001a, #1a0033);
    border-bottom: 2px solid #ff9800;
    color: #ff9800;
    font-size: 13.5px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 10px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(255, 152, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
@media (max-width: 768px) {
    .anniversary-sub-header {
        font-size: 11px;
        padding: 6px 8px;
    }
}
