/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F4DF8E;
    --gold-dark: #B8941F;
    --white: #FFFFFF;
    --beige: #F5F1EB;
    --beige-dark: #E8E0D5;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    --shadow-hover: 0 8px 30px rgba(212, 175, 55, 0.25);
}

html {
    scroll-behavior: auto;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Mobile-first container adjustments */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow);
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .btn:hover {
        box-shadow: var(--shadow-hover);
        background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    }
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cairo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.logo img {
    height: 52px;
    width: auto;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile menu animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--beige);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Benefit card hover */
.benefit-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: var(--beige);
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

@media (hover: hover) {
    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow);
    }
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 16px;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    -webkit-tap-highlight-color: transparent;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-price {
    font-family: 'Cairo', sans-serif;
    font-size: 24px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.product-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.product-btn a {
    color: var(--white);
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

/* Product Detail Sections */
.product-detail {
    padding: 80px 0;
    background: var(--white);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.product-detail-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.product-detail-text h1 {
    font-size: 38px;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.product-detail-text h2 {
    font-size: 26px;
    color: var(--gold);
    margin: 25px 0 15px;
}

.product-detail-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 10px 0;
    padding-right: 30px;
    position: relative;
    color: var(--text-dark);
}

.features-list li:before {
    content: '';
    position: absolute;
    right: 10px;
    top: 1.15em;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--beige);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    color: var(--gold-dark);
    font-weight: 600;
}

.stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 15px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    color: var(--gold-dark);
    margin-bottom: 30px;
}

/* ===== FOOTER ===== */
footer {
    background: linear-gradient(160deg, #1a1a1a 0%, #2c2c2c 100%);
    color: var(--white);
    padding: 60px 0 0;
    border-top: 3px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    text-align: right;
}

.footer-brand .footer-logo {
    font-family: 'Cairo', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.footer-brand .footer-logo img {
    height: 72px;
    width: auto;
    border-radius: 10px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    margin-bottom: 20px;
    max-width: 260px;
}

.footer-brand .footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s;
    text-decoration: none;
    justify-content: flex-end;
}

.footer-brand .footer-contact a:hover {
    color: var(--gold);
}

.footer-col h4 {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(212,175,55,0.25);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    transition: color 0.2s, padding-right 0.2s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-right: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin: 0;
}

/* Animations - DISABLED */
/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

.fade-in {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Hero Section */
    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        height: 300px;
        border-radius: 15px;
    }

    .btn {
        padding: 14px 35px;
        font-size: 17px;
    }

    /* Benefits Section */
    .benefits {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        font-size: 50px;
    }

    /* Products Section */
    .products {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-image {
        height: 250px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .section-title p {
        font-size: 16px;
    }

    /* Product Detail Sections */
    .product-detail {
        padding: 60px 0;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-detail-image img {
        height: 300px;
        border-radius: 15px;
    }

    .product-detail-text h1 {
        font-size: 28px;
    }

    .product-detail-text h2 {
        font-size: 22px;
    }

    /* Trust Section */
    .trust {
        padding: 60px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-icon {
        font-size: 45px;
    }

    .trust-item h3 {
        font-size: 20px;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    /* Final CTA */
    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    /* Footer */
    footer {
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    /* Header */
    nav {
        padding: 15px;
    }

    .logo {
        font-size: 24px;
    }

    .logo img {
        height: 42px;
    }

    /* Hero Section */
    .hero {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .hero-text h1 {
        font-size: 26px;
        line-height: 1.4;
    }

    .hero-text p {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-image img {
        height: 250px;
    }

    .btn {
        padding: 12px 28px;
        font-size: 16px;
        width: 100%;
        text-align: center;
    }

    /* Benefits */
    .benefit-card h3 {
        font-size: 20px;
    }

    .benefit-card p {
        font-size: 15px;
    }

    /* Products */
    .product-info {
        padding: 20px;
    }

    .product-name {
        font-size: 18px;
    }

    .product-description {
        font-size: 14px;
    }

    .product-price {
        font-size: 22px;
    }

    .product-btn {
        padding: 10px;
        font-size: 15px;
    }

    /* Product Details */
    .product-detail-text h1 {
        font-size: 24px;
    }

    .product-detail-text h2 {
        font-size: 20px;
        margin: 20px 0 12px;
    }

    .product-detail-text p {
        font-size: 15px;
    }

    .features-list li {
        font-size: 15px;
        padding: 8px 0;
        padding-right: 28px;
    }

    /* Trust Section */
    .trust-item h3 {
        font-size: 18px;
    }

    .trust-item p {
        font-size: 14px;
    }

    /* Testimonials */
    .testimonial-text {
        font-size: 15px;
    }

    .testimonial-author {
        font-size: 16px;
    }

    /* Final CTA */
    .final-cta h2 {
        font-size: 22px;
        line-height: 1.5;
    }

    /* Footer */
    footer p {
        font-size: 13px;
    }
}

/* Product Page Specific Styles */
.product-hero {
    padding-top: 140px;
    padding-bottom: 60px;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-hero-text h1 {
    font-size: 42px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Live Rating Badge */
.product-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: rgba(212, 175, 55, 0.08);
    border: 1.5px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    padding: 8px 18px;
}

.rating-stars-live {
    font-size: 22px;
    color: var(--gold);
    letter-spacing: 2px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.rating-meta-live {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-dark);
    white-space: nowrap;
}

/* Star animation keyframes */
@keyframes starPop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.35); }
    70%  { transform: scale(0.92); }
    100% { transform: scale(1); }
}

@keyframes starFadeOut {
    from { opacity: 1; transform: scale(1); }
    to   { opacity: 0; transform: scale(0.75); }
}

@keyframes starFadeIn {
    from { opacity: 0; transform: scale(0.75); }
    to   { opacity: 1; transform: scale(1); }
}

.rating-stars-live.animate-out {
    animation: starFadeOut 0.2s ease forwards;
}

.rating-stars-live.animate-in {
    animation: starFadeIn 0.25s ease forwards, starPop 0.4s ease;
}

.rating-count {
    color: var(--text-light);
    font-size: 14px;
}

.product-price-display {
    background: var(--beige);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.current-price {
    font-size: 36px;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.old-price {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
}

.discount-badge {
    background: #e74c3c;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.trust-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.trust-badges span {
    background: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 18px 50px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 15px;
}

.urgency-text {
    color: #e74c3c;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

/* Product Detail Section */
.product-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.detail-images .main-image {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 20px;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.thumbnail-grid img {
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.thumbnail-grid img:hover,
.thumbnail-grid img.active {
    transform: scale(1.05);
    border: 2px solid var(--gold);
}

.detail-info h2 {
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.detail-text {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.detail-info h3 {
    font-size: 24px;
    color: var(--gold);
    margin: 30px 0 15px;
}

.features-list.detailed li {
    padding: 12px 0;
    padding-right: 35px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

.features-list.detailed li:before {
    content: '';
    position: absolute;
    right: 10px;
    top: 1.15em;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.specs-table {
    background: var(--beige);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--beige-dark);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-light);
}

.size-guide,
.care-instructions {
    background: var(--beige);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.size-guide h3,
.care-instructions h3 {
    font-size: 20px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.size-guide ul,
.care-instructions ul {
    list-style: none;
    padding-right: 0;
}

.size-guide li,
.care-instructions li {
    padding: 8px 0;
    padding-right: 25px;
    position: relative;
    color: var(--text-dark);
}

.size-guide li:before,
.care-instructions li:before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Benefits Icons Section */
.benefits-icons {
    padding: 60px 0;
    background: var(--beige);
}

.benefits-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-icon-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-icon-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon-card .icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.benefit-icon-card h3 {
    font-size: 18px;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.benefit-icon-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: var(--white);
}

.social-proof h2 {
    text-align: center;
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: 40px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.proof-item {
    text-align: center;
    padding: 28px 16px;
    background: var(--beige);
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.proof-item--rating {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, var(--beige) 100%);
    border-color: rgba(212, 175, 55, 0.35);
}

.proof-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1.1;
}

.proof-number--compact {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
}

.proof-number--muted {
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--gold-dark);
}

.proof-label {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.5;
}

/* Product Reviews */
.product-reviews {
    padding: 80px 0;
    background: var(--beige);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.review-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    border-top: 1px solid var(--beige-dark);
    padding-top: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.reviewer-location {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.verified-purchase {
    font-size: 12px;
    color: #27ae60;
    font-weight: 600;
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
}

.order-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.order-box h2 {
    text-align: center;
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.order-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
}

.order-form-wrapper {
    margin-bottom: 30px;
}

.order-form .form-group {
    margin-bottom: 20px;
}

.order-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 15px;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--beige-dark);
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.order-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-submit:disabled,
.btn-submit.is-oos,
.home-btn.is-oos,
a.is-oos {
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.65;
    background: #8a8a8a !important;
    box-shadow: none;
    transform: none;
}

.home-pack-badge--oos {
    left: 16px;
    right: auto;
    background: #b3261e;
    color: #fff;
}

.home-pack .home-btn.is-oos,
.home-pack a.home-btn-primary.is-oos {
    background: #b3261e !important;
    color: #fff !important;
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

.home-pack .home-btn.is-oos:hover {
    background: #9b1f18 !important;
    color: #fff !important;
}

.form-guarantees {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: var(--beige);
    border-radius: 10px;
    margin-top: 20px;
}

.form-guarantees span {
    font-size: 14px;
    color: var(--text-dark);
}

.contact-alternative {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--beige-dark);
}

.contact-alternative p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact-methods a {
    color: var(--gold);
    font-weight: 600;
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--beige);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    justify-content: flex-end;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.08);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(212,175,55,0.16);
    border-color: #D4AF37;
    box-shadow: 0 6px 20px rgba(212,175,55,0.28);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: url(#selmya-gold-fill);
}

.footer-social a:hover svg {
    fill: url(#selmya-gold-fill-bright);
}

/* Footer responsive */
@media (max-width: 768px) {
    footer { padding: 50px 0 0; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand p { max-width: 100%; }

    .footer-brand .footer-contact a { justify-content: center; }

    .footer-social { justify-content: center; }

    .footer-col ul li a:hover { padding-right: 0; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links { justify-content: center; }
}

/* Responsive for Product Pages */
@media (max-width: 1024px) {
    .product-hero-content,
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-icons-grid,
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-hero-text h1 {
        font-size: 32px;
    }

    .current-price {
        font-size: 28px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .benefits-icons-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .order-box {
        padding: 25px;
    }

    .form-guarantees {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding-top: 100px;
    }

    .product-hero-text h1 {
        font-size: 26px;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 18px;
    }
}

/* =============================================
   BLOG STYLES — REDESIGNED
   ============================================= */

/* ── Reading Progress Bar (disabled — static blog, no scroll animations) ── */
.reading-progress {
    display: none !important;
}

/* ── Blog Homepage Hero ── */
.blog-hero {
    padding-top: 130px;
    padding-bottom: 70px;
    background: linear-gradient(160deg, #1a1208 0%, #2c1f07 50%, #3a2a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212,175,55,0.06) 0%, transparent 40%);
    pointer-events: none;
}

.blog-hero-inner {
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.blog-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.9;
}

.blog-hero-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 22px auto;
    border-radius: 2px;
    opacity: 0.6;
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.blog-cat-btn {
    padding: 8px 22px;
    border-radius: 50px;
    border: 1.5px solid rgba(212,175,55,0.4);
    background: transparent;
    color: rgba(255,255,255,0.7);
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.blog-cat-btn:hover,
.blog-cat-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* ── Featured Article Card ── */
.featured-section {
    padding: 70px 0 0;
    background: var(--white);
}

.featured-label {
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--beige);
}

.featured-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
    background: var(--white);
    min-height: 400px;
}

.featured-img-wrap {
    overflow: hidden;
    position: relative;
}

.featured-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-img-wrap img {
    transform: scale(1.04);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
}

.featured-body {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #fdf9ee 0%, #fff 100%);
}

.featured-body .article-tag {
    align-self: flex-start;
    margin-bottom: 16px;
}

.featured-body h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 26px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 14px;
}

.featured-body p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 22px;
    flex: 1;
}

.featured-meta {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212,175,55,0.35);
    align-self: flex-start;
}

.featured-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212,175,55,0.45);
}

/* ── More Articles grid ── */
.blog-section {
    padding: 60px 0 90px;
    background: var(--white);
}

.blog-section-title {
    font-family: 'Cairo', sans-serif;
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-section-title::before {
    content: '';
    width: 5px;
    height: 30px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 3px;
    display: inline-block;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* ── Article Card ── */
.article-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.article-card-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.article-card:hover .article-card-image {
    transform: scale(1.05);
}

.article-card-image-wrap {
    overflow: hidden;
    height: 210px;
}

.article-card-body {
    padding: 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.article-card-title {
    font-family: 'Cairo', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.55;
}

.article-card-excerpt {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 18px;
    flex: 1;
}

.article-card-meta {
    font-size: 12.5px;
    color: #bbb;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-read-more {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(212,175,55,0.3);
    align-self: flex-start;
}

.article-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

/* ═══════════════════════════════════════
   ARTICLE PAGE — REDESIGNED
   ═══════════════════════════════════════ */

/* Hero banner with overlay */
.article-hero-banner {
    position: relative;
    height: 520px;
    margin-top: 80px;
    overflow: hidden;
}

.article-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 7, 2, 0.88) 0%,
        rgba(10, 7, 2, 0.55) 45%,
        rgba(10, 7, 2, 0.15) 100%
    );
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
}

.article-hero-text {
    max-width: 820px;
}

.article-hero-breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 14px;
}

.article-hero-breadcrumb a {
    color: var(--gold);
    font-weight: 600;
}

.article-hero-breadcrumb a:hover {
    text-decoration: underline;
}

.article-category-tag {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.article-main-title {
    font-family: 'Cairo', sans-serif;
    font-size: 36px;
    color: #fff;
    line-height: 1.45;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.article-hero-meta {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
}

.article-hero-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Two-column layout */
.article-page {
    padding: 60px 0 90px;
    background: #fafaf8;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

/* ── Main Content ── */
.article-content {
    background: var(--white);
    border-radius: 20px;
    padding: 48px 52px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.article-intro {
    background: linear-gradient(135deg, #fdf9ee 0%, #fefcf5 100%);
    border-right: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    padding: 22px 24px;
    margin-bottom: 36px;
    font-size: 16.5px;
    color: #555;
    line-height: 1.9;
}

.article-section {
    margin-bottom: 10px;
}

.article-body {
    font-family: 'Tajawal', sans-serif;
    font-size: 16.5px;
    color: #4a4a4a;
    line-height: 2.05;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 52px 0 20px;
    padding: 14px 20px;
    background: linear-gradient(90deg, rgba(212,175,55,0.08) 0%, transparent 100%);
    border-right: 4px solid var(--gold);
    border-radius: 0 10px 10px 0;
}

/* Occasion cards (2×2 grid) */
.occasion-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0 32px;
}

.occasion-card {
    background: var(--white);
    border: 1.5px solid rgba(212,175,55,0.18);
    border-radius: 16px;
    padding: 22px 20px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.occasion-card:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 24px rgba(212,175,55,0.15);
    transform: translateY(-3px);
}

.occasion-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.occasion-card h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.occasion-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Skin-tone cards (3-column) */
.skin-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0 32px;
}

.skin-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.skin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.skin-swatch {
    height: 8px;
}
.skin-swatch-fair   { background: linear-gradient(90deg, #f5d9b8, #e8c49a); }
.skin-swatch-wheat  { background: linear-gradient(90deg, #d4a574, #c18b56); }
.skin-swatch-dark   { background: linear-gradient(90deg, #8b5e3c, #6b3f24); }

.skin-card-body {
    padding: 18px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-top: none;
}

.skin-card-body h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.skin-card-body p {
    font-size: 13.5px;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

/* Tip Box — enhanced */
.tip-box {
    background: linear-gradient(135deg, #fdf9ee 0%, #fefcf5 100%);
    border: 1.5px solid rgba(212,175,55,0.3);
    border-radius: 20px;
    padding: 30px 36px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.tip-box::before {
    content: '✨';
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 80px;
    opacity: 0.04;
    pointer-events: none;
    line-height: 1;
}

.tip-box h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 19px;
    color: var(--gold-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.tip-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
}

.tip-box ul li {
    font-size: 15px;
    color: #555;
    padding: 11px 0 11px 0;
    padding-right: 26px;
    position: relative;
    border-bottom: 1px dashed rgba(212,175,55,0.2);
    line-height: 1.7;
}

.tip-box ul li:last-child,
.tip-box ul li:nth-last-child(2):nth-child(odd) {
    border-bottom: none;
}

.tip-box ul li::before {
    content: '✦';
    position: absolute;
    right: 0;
    top: 13px;
    color: var(--gold);
    font-size: 11px;
}

/* Blog CTA */
.blog-cta {
    background: linear-gradient(135deg, #2c1f07 0%, #3a2a0a 100%);
    border: 1px solid rgba(212,175,55,0.25);
    padding: 52px 40px;
    border-radius: 24px;
    text-align: center;
    margin: 52px 0 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.15) 0%, transparent 60%);
    pointer-events: none;
}

.blog-cta h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
}

.blog-cta p {
    font-size: 16px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.blog-cta .btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 42px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212,175,55,0.35);
    position: relative;
}

.blog-cta .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.5);
}

/* ── Sidebar ── */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.toc-widget {
    background: var(--white);
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(212,175,55,0.12);
}

.toc-widget h4 {
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--beige);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}

.toc-list li {
    counter-increment: toc;
    margin-bottom: 2px;
}

.toc-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: #666;
    transition: all 0.2s ease;
    text-decoration: none;
}

.toc-list a::before {
    content: counter(toc);
    min-width: 22px;
    height: 22px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--gold-dark);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.toc-list a:hover,
.toc-list a.active {
    background: rgba(212,175,55,0.08);
    color: var(--gold-dark);
}

.toc-list a:hover::before,
.toc-list a.active::before {
    background: var(--gold);
    color: #fff;
}

/* Sidebar Product CTA */
.sidebar-cta {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border: 1px solid rgba(212,175,55,0.12);
}

.sidebar-cta img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.sidebar-cta-body {
    padding: 22px 20px;
    text-align: center;
}

.sidebar-cta-body h4 {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.sidebar-cta-body p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.sidebar-cta-btn {
    display: block;
    padding: 11px 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(212,175,55,0.3);
}

.sidebar-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.4);
}

/* Share row */
.article-share {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--beige);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-label {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 18px;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.share-btn.whatsapp {
    background: #25d366;
    color: #fff;
}

.share-btn.facebook {
    background: #1877f2;
    color: #fff;
}

.share-btn:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}

/* ── Blog homepage (clean layout) ── */
.nav-active {
    color: var(--gold) !important;
}

.blog-page {
    background: var(--beige);
}

.blog-hero--compact {
    padding-top: 120px;
    padding-bottom: 48px;
}

.blog-hero-eyebrow {
    font-family: 'Cairo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.85);
    margin-bottom: 12px;
}

.blog-hero-sub {
    font-size: 17px !important;
    max-width: 480px !important;
}

.blog-list-section {
    padding: 0 0 80px;
}

.blog-featured {
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.blog-featured-link {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    text-decoration: none;
    color: inherit;
    min-height: 340px;
}

.blog-featured-link:hover .blog-featured-image img {
    transform: scale(1.03);
}

.blog-featured-image {
    overflow: hidden;
    min-height: 280px;
    position: relative;
}

.blog-featured-badge {
    position: absolute;
    top: 16px;
    inset-inline-start: 16px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(184, 148, 31, 0.28);
    border-radius: 999px;
    padding: 6px 12px;
    box-shadow: 0 4px 14px rgba(44, 44, 44, 0.08);
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.blog-featured-content {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #fdf9ee 0%, #fff 100%);
}

.blog-featured-content h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 26px;
    color: var(--text-dark);
    line-height: 1.45;
    margin: 10px 0 14px;
}

.blog-featured-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 20px;
}

.blog-grid--clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-body h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 8px 0 10px;
}

.blog-card-body p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-date {
    font-size: 12px;
    color: #999;
    font-weight: 500;
}

.blog-card-cta {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card-cta::after {
    content: '←';
    transition: transform 0.2s ease;
}

.blog-card-link:hover .blog-card-cta::after,
.blog-featured-link:hover .blog-card-cta::after {
    transform: translateX(-4px);
}

.blog-shop-banner {
    margin-top: 48px;
    padding: 32px 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1a1208 0%, #2c1f07 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.blog-shop-banner h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 6px;
}

.blog-shop-banner p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.blog-shop-banner-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
}

.blog-shop-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.45);
}

/* Article hero — cleaner without category */

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
    .article-layout { grid-template-columns: 1fr 260px; gap: 28px; }
    .article-content { padding: 36px 36px; }
    .blog-grid--clean { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
    .toc-widget, .sidebar-cta { flex: 1 1 260px; }
    .featured-card { grid-template-columns: 1fr; }
    .featured-img-wrap { height: 260px; }
    .featured-body { padding: 32px 28px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-featured-link { grid-template-columns: 1fr; }
    .blog-featured-image { min-height: 220px; }
    .blog-featured-content { padding: 28px 24px; }
    .blog-featured-content h2 { font-size: 22px; }
}

@media (max-width: 768px) {
    .blog-hero--compact { padding-top: 100px; padding-bottom: 36px; }
    .blog-hero h1 { font-size: 34px; }
    .blog-shop-banner { padding: 24px; flex-direction: column; text-align: center; }
    .blog-shop-banner-btn { width: 100%; text-align: center; }
    .article-hero-banner { height: 320px; margin-top: 70px; }
    .article-hero-overlay { padding-bottom: 30px; }
    .article-main-title { font-size: 24px; }
    .article-content { padding: 28px 22px; }
    .article-body { font-size: 15.5px; }
    .article-body h2 { font-size: 22px; padding: 12px 16px; }
    .occasion-cards { grid-template-columns: 1fr; }
    .skin-cards { grid-template-columns: 1fr; }
    .tip-box ul { grid-template-columns: 1fr; }
    .tip-box { padding: 24px 20px; }
    .blog-cta { padding: 36px 22px; }
    .blog-cta h3 { font-size: 22px; }
}

@media (max-width: 480px) {
    .blog-hero h1 { font-size: 28px; }
    .article-hero-banner { height: 260px; }
    .article-main-title { font-size: 20px; }
    .featured-body h2 { font-size: 20px; }
    .blog-cta h3 { font-size: 20px; }
    .article-content { padding: 22px 16px; }
}

/* Performance: no animations / transitions anywhere on the site */
*,
*::before,
*::after {
    animation: none !important;
    transition: none !important;
}

*:hover {
    transform: none !important;
}

/* =============================================
   HOME PAGE — conversion-focused redesign
   Shared visual system also used by .page-product
   ============================================= */
.page-home {
    background: #F7F3EC;
    color: #2C2C2C;
}

.page-home header {
    background: rgba(247, 243, 236, 0.96);
}

.page-home .logo {
    color: #1a1a1a;
    letter-spacing: 0.18em;
    font-size: 22px;
}

.page-home .nav-links a {
    color: #3a3a3a;
    font-size: 15px;
    font-weight: 500;
}

.page-home .nav-links a:hover {
    color: var(--gold-dark);
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.home-btn-primary {
    background: #1a1a1a;
    color: #F7F3EC;
}

.home-btn-primary:hover {
    background: #2e2e2e;
    color: #fff;
}

.home-btn-block {
    width: 100%;
}

/* Hero */
.home-hero {
    padding: 120px 0 48px;
    background:
        radial-gradient(ellipse at 15% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #F7F3EC 0%, #EFE8DC 100%);
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.home-hero-media {
    border-radius: 28px;
    overflow: hidden;
    background: #E8E0D5;
    aspect-ratio: 4 / 5;
    box-shadow: 0 20px 50px rgba(44, 44, 44, 0.08);
}

.home-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-eyebrow {
    font-family: 'Cairo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--gold-dark);
    margin-bottom: 18px;
}

.home-hero-copy h1 {
    font-size: clamp(32px, 4vw, 48px);
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 18px;
    max-width: 12ch;
}

.home-hero-lead {
    font-size: 17px;
    color: #5c5c5c;
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 34ch;
}

.home-hero-trust {
    margin-top: 16px;
    font-size: 13px;
    color: #7a7a7a;
    letter-spacing: 0.01em;
}

/* Benefits */
.home-benefits {
    padding: 28px 0 20px;
}

.home-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-benefit {
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 18px;
    padding: 22px 20px;
    text-align: center;
}

.home-benefit-icon {
    display: block;
    font-size: 22px;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.home-benefit h2 {
    font-size: 17px;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.home-benefit p {
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
}

/* Collections */
.home-collections {
    padding: 56px 0 40px;
}

.home-section-head {
    text-align: center;
    margin-bottom: 36px;
}

.home-section-head h2 {
    font-size: clamp(26px, 3vw, 34px);
    color: #1a1a1a;
    margin-bottom: 10px;
}

.home-section-head p {
    font-size: 16px;
    color: #6b6b6b;
    max-width: 36ch;
    margin: 0 auto;
}

.home-shop-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 12px;
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.home-shop-trust li {
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.22);
    color: #3a3a3a;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    font-family: 'Cairo', sans-serif;
}

.home-collections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.home-pack {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 28px rgba(44, 44, 44, 0.05);
    display: flex;
    flex-direction: column;
}

.home-pack:hover {
    border-color: rgba(184, 148, 31, 0.28);
    box-shadow: 0 14px 36px rgba(44, 44, 44, 0.09);
}

.home-pack--featured {
    border-color: rgba(184, 148, 31, 0.4);
    box-shadow: 0 12px 36px rgba(184, 148, 31, 0.14);
}

.home-pack-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #EFE8DC;
    overflow: hidden;
}

.home-pack-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, transparent, rgba(26, 26, 26, 0.12));
    pointer-events: none;
}

.home-pack-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-pack-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
    background: #1a1a1a;
    color: #F7F3EC;
    font-family: 'Cairo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.home-pack-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    border-top: 1px solid rgba(184, 148, 31, 0.12);
}

.home-pack-body h3 {
    font-size: 20px;
    color: #1a1a1a;
}

.home-pack-tagline {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.home-pack-price {
    font-family: 'Cairo', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-dark);
    margin: 8px 0 0;
}

.home-pack-reassure {
    font-size: 12px;
    color: #7a7a7a;
    margin: 0 0 6px;
}

.home-pack .home-btn-block {
    margin-top: 4px;
}

.home-sticky-cta {
    display: none;
}

/* Why Selmya */
.home-why {
    padding: 48px 0;
    background: #fff;
}

.home-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.home-why-item {
    padding: 24px 20px;
    border-radius: 18px;
    background: #F7F3EC;
    border: 1px solid rgba(184, 148, 31, 0.1);
}

.home-why-mark {
    display: block;
    font-family: 'Cairo', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 12px;
    letter-spacing: 0.08em;
}

.home-why-item h3 {
    font-size: 17px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.home-why-item p {
    font-size: 14px;
    color: #6b6b6b;
    margin: 0;
    line-height: 1.7;
}

/* Reviews */
.home-reviews {
    padding: 56px 0 40px;
    background: #F7F3EC;
}

.home-reviews-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.home-review-card {
    background: #fff;
    border-radius: 20px;
    padding: 26px 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 6px 22px rgba(44, 44, 44, 0.04);
}

.home-review-stars {
    color: var(--gold-dark);
    letter-spacing: 2px;
    font-size: 16px;
    margin-bottom: 14px;
}

.home-review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.85;
    margin-bottom: 18px;
}

.home-review-author {
    font-size: 13px;
    color: #8a8a8a;
    margin: 0;
    font-weight: 600;
}

/* Purchase trust */
.home-purchase-trust {
    padding: 12px 0 48px;
}

.home-purchase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    background: #1a1a1a;
    border-radius: 22px;
    padding: 28px 24px;
}

.home-purchase-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #F7F3EC;
}

.home-purchase-item span {
    font-size: 22px;
    line-height: 1;
}

.home-purchase-item strong {
    display: block;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    margin-bottom: 4px;
    color: #fff;
}

.home-purchase-item p {
    margin: 0;
    font-size: 13px;
    color: rgba(247, 243, 236, 0.7);
}

/* Final CTA */
.home-final-cta {
    padding: 20px 0 72px;
}

.home-final-inner {
    text-align: center;
    background: #fff;
    border-radius: 28px;
    padding: 48px 28px;
    border: 1px solid rgba(184, 148, 31, 0.16);
}

.home-final-inner h2 {
    font-size: clamp(24px, 3vw, 32px);
    color: #1a1a1a;
    margin-bottom: 12px;
}

.home-final-inner p {
    font-size: 16px;
    color: #6b6b6b;
    margin: 0 auto 26px;
    max-width: 38ch;
}

@media (max-width: 980px) {
    .home-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-hero-media {
        order: -1;
        aspect-ratio: 5 / 4;
        max-height: 420px;
    }

    .home-hero-copy h1 {
        max-width: none;
    }

    .home-hero-lead {
        max-width: none;
    }

    .home-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Reviews: vertical stack on tablet/mobile — no carousel */
    .home-reviews {
        overflow-x: visible;
    }

    .home-reviews .container {
        max-width: 100%;
        min-width: 0;
    }

    .home-reviews-track {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        gap: 14px;
        overflow: visible;
        padding-bottom: 0;
        scroll-snap-type: none;
    }

    .home-review-card {
        flex: none;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}

@media (max-width: 720px) {
    .home-hero {
        padding: 100px 0 32px;
    }

    .home-benefits-grid {
        grid-template-columns: 1fr;
    }

    .home-collections-grid {
        grid-template-columns: 1fr;
    }

    .home-why-grid {
        grid-template-columns: 1fr;
    }

    .home-purchase-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home-final-inner {
        padding: 36px 20px;
    }

    .home-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: rgba(247, 243, 236, 0.96);
        border-top: 1px solid rgba(184, 148, 31, 0.18);
        box-shadow: 0 -8px 28px rgba(44, 44, 44, 0.08);
        transform: translateY(110%);
    }

    .home-sticky-cta.is-visible {
        transform: translateY(0);
    }

    .home-sticky-cta[hidden] {
        display: none !important;
    }

    .home-sticky-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        max-width: 560px;
        margin: 0 auto;
    }

    .home-sticky-copy {
        font-family: 'Cairo', sans-serif;
        font-size: 15px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .home-sticky-inner .home-btn {
        padding: 12px 22px;
        font-size: 15px;
        flex-shrink: 0;
    }

    body.page-home.has-home-sticky {
        padding-bottom: 76px;
    }
}

/* =============================================
   PRODUCT PAGES — same design system as Home
   ============================================= */
.page-product {
    background: #F7F3EC;
    color: #2C2C2C;
}

.page-product header {
    background: rgba(247, 243, 236, 0.96);
}

.page-product .logo {
    color: #1a1a1a;
    letter-spacing: 0.18em;
    font-size: 22px;
}

.page-product .nav-links a {
    color: #3a3a3a;
    font-size: 15px;
    font-weight: 500;
}

.page-product .nav-links a:hover {
    color: var(--gold-dark);
}

.pp-hero {
    padding: 120px 0 40px;
    background:
        radial-gradient(ellipse at 85% 15%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #F7F3EC 0%, #EFE8DC 100%);
}

.pp-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: start;
}

.pp-gallery-main {
    border-radius: 28px;
    overflow: hidden;
    background: #E8E0D5;
    aspect-ratio: 1;
    box-shadow: 0 20px 50px rgba(44, 44, 44, 0.08);
}

.pp-gallery-main img,
.pp-gallery-main .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pp-thumbs,
.page-product .thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.pp-thumbs img,
.page-product .thumbnail-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 14px;
    cursor: pointer;
    border: 2px solid transparent;
    background: #E8E0D5;
}

.pp-thumbs img.active,
.page-product .thumbnail-grid img.active {
    border-color: var(--gold-dark);
}

.pp-eyebrow {
    font-family: 'Cairo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.pp-hero-copy h1 {
    font-size: clamp(28px, 3.6vw, 42px);
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 12px;
}

.pp-subtitle {
    font-size: 16px;
    color: #5c5c5c;
    line-height: 1.75;
    margin-bottom: 18px;
}

.pp-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.pp-rating .rating-stars-live {
    color: var(--gold-dark);
    letter-spacing: 2px;
    font-size: 18px;
}

.pp-rating .rating-meta-live {
    font-size: 14px;
    color: #7a7a7a;
}

.pp-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 20px;
}

.page-product .pp-price .current-price {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    color: var(--gold-dark);
    display: inline;
    margin: 0;
}

.page-product .pp-price .old-price {
    font-size: 18px;
    color: #9a9a9a;
    text-decoration: line-through;
    display: inline;
}

.page-product .pp-price .discount-badge {
    background: rgba(184, 148, 31, 0.12);
    color: var(--gold-dark);
    border: 1px solid rgba(184, 148, 31, 0.28);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin: 0;
}

.pp-quick-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.pp-quick-benefits span {
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 13px;
    color: #3a3a3a;
}

.pp-cta {
    min-width: 220px;
}

.pp-trust-line {
    margin-top: 14px;
    font-size: 13px;
    color: #7a7a7a;
    line-height: 1.6;
}

.pp-details {
    padding: 28px 0 12px;
}

.pp-details-card {
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 8px 28px rgba(44, 44, 44, 0.04);
}

.pp-details-card h2 {
    font-size: clamp(22px, 3vw, 28px);
    color: #1a1a1a;
    margin-bottom: 14px;
}

.pp-detail-text {
    font-size: 16px;
    color: #5c5c5c;
    line-height: 1.85;
    margin-bottom: 28px;
}

.pp-details-card h3 {
    font-size: 18px;
    color: #1a1a1a;
    margin: 28px 0 14px;
}

.page-product .pp-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.page-product .pp-features li {
    background: #F7F3EC;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.page-product .pp-features li strong {
    color: #1a1a1a;
}

.page-product .pp-features li::before,
.page-product .features-list li::before {
    content: none;
    display: none;
}

.pp-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pp-spec {
    background: #F7F3EC;
    border-radius: 16px;
    padding: 18px 16px;
    border: 1px solid rgba(184, 148, 31, 0.1);
}

.pp-spec strong {
    display: block;
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.pp-spec span {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

.pp-care {
    margin-top: 28px;
    padding-top: 8px;
}

.pp-care ul {
    margin: 0;
    padding-right: 18px;
    color: #555;
    line-height: 1.85;
}

.pp-benefits {
    padding: 28px 0 20px;
}

.pp-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pp-benefits .home-benefit h3 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.pp-benefits .home-benefit p {
    font-size: 13px;
    color: #6a6a6a;
    margin: 0;
}

.page-product .pp-social-proof {
    padding: 40px 0;
    background: transparent;
}

.page-product .pp-social-proof h2 {
    text-align: center;
    font-size: clamp(22px, 3vw, 28px);
    color: #1a1a1a;
    margin-bottom: 28px;
}

.page-product .proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.page-product .proof-item {
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 18px;
    padding: 22px 16px;
    text-align: center;
    box-shadow: 0 6px 22px rgba(44, 44, 44, 0.04);
}

.page-product .proof-number {
    font-family: 'Cairo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.page-product .proof-number--compact {
    font-size: 18px;
}

.page-product .proof-number--muted {
    font-size: 22px;
    color: #c4b89a;
}

.page-product .proof-label {
    font-size: 14px;
    color: #666;
}

.page-product .pp-order {
    padding: 28px 0 40px;
    background: transparent;
}

.page-product .pp-order-box {
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 12px 36px rgba(44, 44, 44, 0.05);
    max-width: 640px;
    margin: 0 auto;
}

.page-product .pp-order-box h2 {
    text-align: center;
    font-size: clamp(22px, 3vw, 28px);
    color: #1a1a1a;
    margin-bottom: 8px;
}

.page-product .order-subtitle {
    text-align: center;
    color: #6a6a6a;
    margin-bottom: 28px;
}

.page-product .order-form .form-group label {
    color: #3a3a3a;
    font-weight: 600;
}

.page-product .order-form input,
.page-product .order-form select,
.page-product .order-form textarea {
    border: 1px solid rgba(184, 148, 31, 0.22);
    border-radius: 14px;
    background: #F7F3EC;
    padding: 14px 16px;
    font-family: 'Tajawal', sans-serif;
}

.page-product .order-form input:focus,
.page-product .order-form select:focus,
.page-product .order-form textarea:focus {
    outline: none;
    border-color: var(--gold-dark);
    background: #fff;
}

.page-product .btn-submit.home-btn {
    width: 100%;
    margin-top: 8px;
}

.page-product .form-guarantees {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 18px;
    margin-top: 18px;
    font-size: 13px;
    color: #7a7a7a;
}

.page-product .pp-faq {
    padding: 40px 0 28px;
    background: transparent;
}

.page-product .pp-faq h2 {
    text-align: center;
    font-size: clamp(22px, 3vw, 28px);
    color: #1a1a1a;
    margin-bottom: 28px;
}

.page-product .faq-item {
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 18px;
    padding: 20px 22px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(44, 44, 44, 0.03);
}

.page-product .faq-item h3 {
    color: #1a1a1a;
    margin-bottom: 0;
    font-size: 16px;
    position: relative;
    padding-left: 28px;
}

.page-product .faq-item h3::after {
    content: '+';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-dark);
    font-weight: 700;
}

.page-product .faq-item.active h3::after {
    content: '−';
}

.page-product .faq-item p {
    display: none;
    margin-top: 12px;
    color: #666;
}

.page-product .faq-item.active p {
    display: block;
}

.page-product .pp-final-cta {
    padding: 20px 0 48px;
}

/* Server-injected reviews */
.page-product .pp-reviews,
.page-product .reviews-section.pp-reviews {
    padding: 40px 0;
    background: #F7F3EC;
    border-top: none;
}

.pp-reviews-head {
    text-align: center;
    margin-bottom: 28px;
}

.pp-reviews-head h2 {
    font-size: clamp(22px, 3vw, 28px);
    color: #1a1a1a;
    margin-bottom: 8px;
}

.pp-reviews-summary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 20px;
    padding: 20px 36px;
    margin-bottom: 28px;
    box-shadow: 0 6px 22px rgba(44, 44, 44, 0.04);
}

.pp-reviews-summary .pp-avg {
    font-family: 'Cairo', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
}

.pp-reviews-summary .pp-avg-stars {
    color: var(--gold-dark);
    letter-spacing: 2px;
    font-size: 18px;
}

.pp-reviews-summary .pp-avg-meta {
    font-size: 13px;
    color: #7a7a7a;
}

.pp-review-form-card {
    max-width: 560px;
    margin: 0 auto 36px;
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: 0 6px 22px rgba(44, 44, 44, 0.04);
}

.pp-review-form-card h3 {
    text-align: center;
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.pp-review-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pp-review-form input,
.pp-review-form textarea {
    padding: 12px 15px;
    border: 1px solid rgba(184, 148, 31, 0.22);
    border-radius: 14px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    direction: rtl;
    background: #F7F3EC;
}

.pp-review-form input:focus,
.pp-review-form textarea:focus {
    outline: none;
    border-color: var(--gold-dark);
    background: #fff;
}

.pp-star-input {
    text-align: center;
}

.pp-star-input > label:first-child {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.pp-star-input .star-rating-input {
    display: flex;
    justify-content: center;
    gap: 8px;
    direction: ltr;
    font-size: 32px;
}

.pp-star-input .star-rating-input input {
    display: none;
}

.pp-star-input .star-label {
    cursor: pointer;
    color: #ddd;
    user-select: none;
}

.pp-review-form .home-btn {
    width: 100%;
}

.pp-reviews-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 0;
}

.pp-review-card {
    background: transparent;
    border-radius: 0;
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.12);
    box-shadow: none;
}

.pp-review-card:last-child {
    border-bottom: 0;
}

.pp-review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.pp-review-card-top strong {
    color: #1a1a1a;
    font-size: 15px;
    font-family: 'Cairo', sans-serif;
}

.pp-review-card-top span {
    color: var(--gold-dark);
    letter-spacing: 2px;
    font-size: 16px;
}

.pp-review-card p {
    color: #444;
    line-height: 1.85;
    font-size: 15px;
    margin: 0 0 8px;
}

.pp-review-card time {
    color: #999;
    font-size: 12px;
}

.pp-reviews-empty {
    text-align: center;
    color: #999;
    padding: 28px 0;
    font-size: 15px;
}

.pp-alert {
    max-width: 600px;
    margin: 0 auto 24px;
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
}

.pp-alert--ok {
    background: #eef6ee;
    color: #1e5a2a;
    border: 1px solid #b7dbb9;
}

.pp-alert--err {
    background: #fbf0f0;
    color: #7a1f1f;
    border: 1px solid #e8bcbc;
}

/* Mobile sticky purchase bar */
.pp-sticky-cta {
    display: none;
}

@media (max-width: 900px) {
    .pp-hero-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pp-hero {
        padding: 100px 0 28px;
    }

    .pp-specs {
        grid-template-columns: 1fr;
    }

    .pp-benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-product .proof-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pp-details-card,
    .page-product .pp-order-box {
        padding: 28px 20px;
    }

    .pp-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
        background: rgba(247, 243, 236, 0.96);
        border-top: 1px solid rgba(184, 148, 31, 0.18);
        box-shadow: 0 -8px 28px rgba(44, 44, 44, 0.08);
        transform: translateY(110%);
        transition: transform 0.25s ease;
    }

    .pp-sticky-cta.is-visible {
        transform: translateY(0);
    }

    .pp-sticky-cta[hidden] {
        display: none !important;
    }

    .pp-sticky-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        max-width: 560px;
        margin: 0 auto;
    }

    .pp-sticky-price {
        font-family: 'Cairo', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: var(--gold-dark);
        white-space: nowrap;
    }

    .pp-sticky-inner .home-btn {
        padding: 12px 22px;
        font-size: 15px;
        flex-shrink: 0;
    }

    .page-product body,
    body.page-product {
        padding-bottom: 0;
    }

    body.page-product.has-sticky-cta {
        padding-bottom: 76px;
    }
}

@media (max-width: 720px) {
    .pp-benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-product .proof-grid {
        grid-template-columns: 1fr;
    }

    .pp-quick-benefits span {
        font-size: 12px;
        padding: 7px 12px;
    }

    .pp-cta {
        width: 100%;
    }
}

/* =============================================
   SHARED STORE PAGES — blog / legal / thank-you
   Same chrome as Home + Product
   ============================================= */
.page-store {
    background: #F7F3EC;
    color: #2C2C2C;
}

.page-store header {
    background: rgba(247, 243, 236, 0.96);
}

.page-store .logo {
    color: #1a1a1a;
    letter-spacing: 0.18em;
    font-size: 22px;
}

.page-store .nav-links a {
    color: #3a3a3a;
    font-size: 15px;
    font-weight: 500;
}

.page-store .nav-links a:hover,
.page-store .nav-links a.nav-active {
    color: var(--gold-dark);
}

.page-store .home-btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1.5px solid rgba(26, 26, 26, 0.22);
}

.page-store .home-btn-secondary:hover {
    background: #1a1a1a;
    color: #F7F3EC;
    border-color: #1a1a1a;
}

/* Soft page hero */
.store-hero {
    padding: 120px 0 36px;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #F7F3EC 0%, #EFE8DC 100%);
    text-align: center;
}

.store-hero .pp-eyebrow,
.store-hero .store-eyebrow {
    font-family: 'Cairo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.store-hero h1 {
    font-size: clamp(28px, 4vw, 42px);
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.store-hero p {
    font-size: 16px;
    color: #5c5c5c;
    max-width: 42ch;
    margin: 0 auto;
    line-height: 1.75;
}

/* Blog under store chrome */
.page-store .blog-page {
    background: transparent;
}

.page-store .blog-hero,
.page-store .blog-hero--compact {
    padding: 120px 0 36px;
    background:
        radial-gradient(ellipse at 80% 10%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #F7F3EC 0%, #EFE8DC 100%);
    text-align: center;
}

.page-store .blog-hero::before {
    display: none;
}

.page-store .blog-hero-eyebrow {
    color: var(--gold-dark);
    letter-spacing: 0.22em;
}

.page-store .blog-hero h1 {
    color: #1a1a1a;
    font-size: clamp(28px, 4vw, 42px);
}

.page-store .blog-hero-sub {
    color: #5c5c5c !important;
    margin-left: auto;
    margin-right: auto;
}

.page-store .blog-featured {
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    box-shadow: 0 8px 28px rgba(44, 44, 44, 0.04);
}

.page-store .blog-featured-content {
    background: #fff;
}

.page-store .blog-featured-content h2,
.page-store .blog-card-body h2 {
    color: #1a1a1a;
}

.page-store .blog-card {
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    box-shadow: 0 6px 22px rgba(44, 44, 44, 0.04);
}

.page-store .blog-card-cta {
    color: var(--gold-dark);
}

.page-store .blog-shop-banner {
    background: #1a1a1a;
    border-radius: 22px;
    padding: 28px 32px;
}

.page-store .blog-shop-banner h3 {
    color: #fff;
}

.page-store .blog-shop-banner p {
    color: rgba(247, 243, 236, 0.72);
}

.page-store .blog-shop-banner .home-btn {
    white-space: nowrap;
}

.page-store .blog-empty {
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 24px;
    padding: 48px 24px;
    text-align: center;
    box-shadow: 0 8px 28px rgba(44, 44, 44, 0.04);
    margin-bottom: 28px;
}

.page-store .blog-empty-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.page-store .blog-empty h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    color: #1a1a1a;
    margin: 0 0 8px;
}

.page-store .blog-empty p {
    margin: 0;
    color: #6b6b6b;
    font-size: 15px;
}

/* Blog category archives */
.blog-crumbs {
    padding: 96px 0 0;
}

.blog-crumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    color: #8a8a8a;
}

.blog-crumbs li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-crumbs li:not(:last-child)::after {
    content: "/";
    color: #c5bba8;
}

.blog-crumbs a {
    color: #6b6b6b;
    text-decoration: none;
}

.blog-crumbs a:hover {
    color: var(--gold-dark);
}

.blog-crumbs [aria-current="page"] {
    color: #1a1a1a;
    font-weight: 600;
}

.blog-cat .blog-hero--compact {
    padding-top: 28px;
}

.blog-cat-hero .blog-hero-sub {
    font-size: 15px !important;
    letter-spacing: 0.04em;
}

.blog-cat--styling .blog-hero {
    background:
        radial-gradient(ellipse at 85% 8%, rgba(212, 175, 55, 0.14) 0%, transparent 48%),
        linear-gradient(180deg, #F7F3EC 0%, #EFE8DC 100%);
}

.blog-cat--care .blog-hero {
    background:
        radial-gradient(ellipse at 12% 90%, rgba(184, 148, 31, 0.1) 0%, transparent 46%),
        linear-gradient(180deg, #F4F1EA 0%, #E8E2D6 100%);
}

.blog-cat--guides .blog-hero {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(26, 26, 26, 0.05) 0%, transparent 42%),
        linear-gradient(180deg, #F8F4EC 0%, #EDE6D8 100%);
}

.blog-cat--gifting .blog-hero {
    background:
        radial-gradient(ellipse at 78% 70%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #F9F4EC 0%, #EFE6D9 100%);
}

.blog-cat-intro {
    padding: 8px 0 36px;
}

.blog-cat-intro-inner {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 8px 28px rgba(44, 44, 44, 0.04);
}

.blog-cat-intro h2 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.blog-cat-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 12px;
}

.blog-cat-covers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
}

.blog-cat-covers li {
    font-size: 13px;
    color: #3a3a3a;
    background: #F7F3EC;
    border: 1px solid rgba(184, 148, 31, 0.18);
    border-radius: 999px;
    padding: 6px 14px;
}

.blog-card-cat {
    display: inline-block;
    font-family: 'Cairo', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.blog-featured-content h3,
.blog-card-body h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 8px 0 10px;
}

.blog-featured-content h3 {
    font-size: 24px;
}

.blog-cat-kicker,
.blog-cat-list-title {
    font-size: 18px;
    color: #1a1a1a;
    margin: 8px 0 18px;
}

.blog-cat-featured-wrap {
    margin-bottom: 36px;
}

.blog-cat-cta {
    margin-top: 40px;
    padding: 28px 28px 30px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.16);
    text-align: center;
}

.blog-cat-cta h2 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.blog-cat-cta p {
    color: #6b6b6b;
    font-size: 15px;
    margin: 0 0 18px;
    line-height: 1.8;
}

.blog-related {
    margin-top: 40px;
}

.blog-related h2,
.blog-index-cats-title {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-align: center;
}

.blog-index-cats {
    margin-bottom: 36px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.blog-index-cats .blog-related-grid {
    grid-template-columns: repeat(2, 1fr);
}

.blog-related-card {
    display: block;
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.16);
    border-radius: 18px;
    padding: 18px 16px;
    text-decoration: none;
    min-width: 0;
}

.blog-related-card:hover,
.blog-related-card.is-active {
    border-color: rgba(184, 148, 31, 0.55);
}

.blog-related-card.is-active {
    box-shadow: 0 6px 18px rgba(184, 148, 31, 0.12);
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 14px;
    color: #7a7a7a;
    margin: 0 0 28px;
    padding: 12px 0;
    border-top: 1px solid rgba(184, 148, 31, 0.14);
    border-bottom: 1px solid rgba(184, 148, 31, 0.14);
}

.blog-article-meta a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
}

.blog-card-date {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.blog-related-articles {
    margin: 8px 0 36px;
}

.blog-related-articles h2 {
    font-size: 20px;
    color: #1a1a1a;
    margin: 8px 0 20px;
    text-align: center;
}

.blog-related-en {
    display: block;
    font-size: 11px;
    letter-spacing: 0.06em;
    color: #9a9a9a;
    margin-bottom: 6px;
}

.blog-related-card strong {
    display: block;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
}

.blog-cat-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.blog-cat-pagination a,
.blog-cat-pagination span {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.blog-cat-pagination a {
    color: #1a1a1a;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(184, 148, 31, 0.22);
    background: #fff;
}

.blog-cat-pagination .is-disabled {
    color: #b0b0b0;
}

.blog-cat-page-status {
    color: #7a7a7a;
    font-weight: 500;
}

@media (max-width: 900px) {
    .blog-related-grid,
    .blog-index-cats .blog-related-grid {
        grid-template-columns: 1fr;
    }

    .blog-cat-intro-inner {
        padding: 24px 18px;
    }

    .blog-crumbs {
        padding-top: 88px;
    }
}

.blog-article .blog-page {
    padding-bottom: 64px;
}

.blog-article-card {
    max-width: 760px;
    margin: 0 auto 40px;
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 24px;
    padding: 36px 32px 48px;
    box-shadow: 0 8px 28px rgba(44, 44, 44, 0.04);
}

.blog-article-card > .blog-hero-eyebrow {
    margin-bottom: 10px;
}

.blog-article-card > h1 {
    font-size: clamp(24px, 3.4vw, 34px);
    color: #1a1a1a;
    line-height: 1.4;
    margin: 0 0 22px;
}

.blog-article-card .article-featured {
    margin: 0 0 28px;
}

.blog-article-card .article-featured img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.blog-article-card figcaption {
    font-size: 13px;
    color: #8a8a8a;
    margin-top: 8px;
}

.blog-article-card section {
    margin-bottom: 8px;
}

.blog-article-card p,
.blog-article-card li {
    font-size: 16.5px;
    color: #4a4a4a;
    line-height: 1.95;
}

.blog-article-card p {
    margin-bottom: 16px;
}

.blog-article-card h2 {
    font-family: 'Cairo', sans-serif;
    font-size: 22px;
    color: #1a1a1a;
    margin: 36px 0 14px;
    padding: 10px 0 10px 0;
    border-right: 3px solid var(--gold-dark);
    padding-right: 14px;
}

.blog-article-card h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    color: #1a1a1a;
    margin: 22px 0 10px;
}

.blog-article-card ul,
.blog-article-card ol {
    margin: 0 0 18px 0;
    padding: 0 22px 0 0;
}

.blog-article-card li {
    margin-bottom: 8px;
}

.blog-article-card a {
    color: var(--gold-dark);
    font-weight: 600;
}

.blog-article-card table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 24px;
    font-size: 14.5px;
}

.blog-article-card caption {
    text-align: right;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.blog-article-card th,
.blog-article-card td {
    border: 1px solid rgba(184, 148, 31, 0.18);
    padding: 10px 12px;
    text-align: right;
    vertical-align: top;
}

.blog-article-card th {
    background: #F7F3EC;
    color: #1a1a1a;
}

@media (max-width: 720px) {
    .blog-article-card {
        padding: 24px 16px 36px;
        border-radius: 18px;
    }

    .blog-article-card table {
        display: block;
        overflow-x: auto;
    }
}

/* Legal / policy pages */
.store-legal {
    padding: 12px 0 64px;
}

.store-legal-card {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 8px 28px rgba(44, 44, 44, 0.04);
}

.store-legal .last-updated {
    text-align: center;
    color: #9a9a9a;
    font-size: 13px;
    margin-bottom: 32px;
}

.store-section {
    margin-bottom: 36px;
}

.store-section h2 {
    font-size: 20px;
    color: #1a1a1a;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(184, 148, 31, 0.16);
}

.store-section p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 12px;
}

.store-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.store-section ul li {
    position: relative;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    padding: 10px 28px 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.store-section ul li:last-child {
    border-bottom: none;
}

.store-section ul li::before {
    content: '✦';
    position: absolute;
    right: 0;
    top: 12px;
    color: var(--gold-dark);
    font-size: 12px;
}

.store-highlight {
    background: #F7F3EC;
    border-right: 3px solid var(--gold-dark);
    padding: 16px 20px;
    border-radius: 0 14px 14px 0;
    margin: 12px 0;
}

.store-highlight p {
    margin: 0;
    color: #444;
}

.store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.store-badge {
    background: #F7F3EC;
    border: 1px solid rgba(184, 148, 31, 0.22);
    color: var(--gold-dark);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.store-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(184, 148, 31, 0.14);
}

.store-table th {
    background: #1a1a1a;
    color: #F7F3EC;
    padding: 14px 16px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    text-align: right;
}

.store-table td {
    padding: 12px 16px;
    font-size: 14px;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    background: #fff;
    vertical-align: top;
}

.store-table tr:nth-child(even) td {
    background: #F7F3EC;
}

.store-table tr:last-child td {
    border-bottom: none;
}

.store-contact-box {
    margin-top: 40px;
    background: #1a1a1a;
    color: #F7F3EC;
    border-radius: 22px;
    padding: 32px 28px;
    text-align: center;
}

.store-contact-box h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.store-contact-box p {
    font-size: 14px;
    color: rgba(247, 243, 236, 0.75);
    margin-bottom: 6px;
}

.store-contact-box a {
    color: #F7F3EC;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Thank you page */
.ty-section {
    padding: 120px 0 64px;
    background:
        radial-gradient(ellipse at 70% 10%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #F7F3EC 0%, #EFE8DC 100%);
    min-height: 70vh;
}

.ty-box {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 28px;
    padding: 48px 40px;
    box-shadow: 0 12px 36px rgba(44, 44, 44, 0.05);
    text-align: center;
}

.ty-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: #F7F3EC;
    border: 1px solid rgba(184, 148, 31, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--gold-dark);
}

.ty-box h1 {
    font-size: clamp(28px, 4vw, 38px);
    color: #1a1a1a;
    margin-bottom: 12px;
}

.ty-subtitle {
    font-size: 16px;
    color: #5c5c5c;
    line-height: 1.8;
    margin-bottom: 28px;
}

.ty-details {
    background: #F7F3EC;
    border: 1px solid rgba(184, 148, 31, 0.12);
    border-radius: 18px;
    padding: 22px 20px;
    margin-bottom: 24px;
    text-align: right;
}

.ty-details .order-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ty-details .order-detail-row:last-child {
    border-bottom: none;
}

.ty-details .order-detail-label {
    font-weight: 600;
    color: #3a3a3a;
    font-size: 14px;
}

.ty-details .order-detail-value {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 14px;
}

.ty-details .ty-empty {
    text-align: center;
    color: #8a8a8a;
    margin: 0;
}

.ty-next {
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.14);
    border-radius: 18px;
    padding: 22px 20px;
    margin-bottom: 28px;
    text-align: right;
}

.ty-next h3 {
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 12px;
}

.ty-next ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ty-next li {
    position: relative;
    padding: 8px 28px 8px 0;
    color: #555;
    font-size: 14px;
    line-height: 1.7;
}

.ty-next li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--gold-dark);
    font-weight: 700;
}

.ty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 28px;
}

.ty-packs {
    padding-top: 24px;
    border-top: 1px solid rgba(184, 148, 31, 0.14);
    margin-bottom: 22px;
}

.ty-packs h4 {
    color: #1a1a1a;
    font-size: 16px;
    margin-bottom: 14px;
}

.ty-pack-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.ty-pack-grid a {
    display: block;
    padding: 14px 12px;
    background: #F7F3EC;
    border: 1px solid rgba(184, 148, 31, 0.12);
    border-radius: 14px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.ty-pack-grid a:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
}

.ty-contact {
    background: #F7F3EC;
    border-radius: 16px;
    padding: 18px 16px;
}

.ty-contact p {
    margin: 4px 0;
    font-size: 14px;
    color: #666;
}

.ty-contact a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 900px) {
    .page-store .blog-featured-link {
        grid-template-columns: 1fr;
    }

    .page-store .blog-grid--clean {
        grid-template-columns: 1fr;
    }

    .store-legal-card,
    .ty-box {
        padding: 28px 20px;
    }

    .ty-pack-grid {
        grid-template-columns: 1fr;
    }

    .ty-actions .home-btn {
        width: 100%;
    }

    .page-store .blog-shop-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .store-hero,
    .page-store .blog-hero--compact,
    .ty-section {
        padding-top: 100px;
    }
}

.page-404-main {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    text-align: center;
}

.page-404-main h1 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    margin: 12px 0 16px;
}

.page-404-lead {
    color: #6b6b6b;
    margin-bottom: 28px;
}

.blog-sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.blog-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    z-index: 200;
    background: rgba(184, 148, 31, 0.12);
    pointer-events: none;
}

.blog-progress span {
    display: block;
    height: 100%;
    width: 0;
    margin-inline-start: auto;
    background: var(--gold);
}

.blog-search {
    display: flex;
    gap: 8px;
    margin: 0 0 28px;
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.22);
    border-radius: 999px;
    padding: 6px 6px 6px 16px;
    box-shadow: 0 6px 20px rgba(44, 44, 44, 0.04);
}

.blog-search-input {
    flex: 1;
    border: 0;
    background: transparent;
    font-family: 'Tajawal', sans-serif;
    font-size: 16px;
    color: #1a1a1a;
    min-width: 0;
}

.blog-search-input:focus {
    outline: none;
}

.blog-search-btn {
    border: 0;
    border-radius: 999px;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 10px 18px;
    cursor: pointer;
}

.blog-search-btn:focus-visible,
.blog-cat-pill:focus-visible,
.blog-save-btn:focus-visible,
.blog-share-btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.blog-search-status {
    margin: 0 4px 18px;
    font-size: 14px;
    color: #6b6b6b;
}

.blog-cat-nav {
    margin-bottom: 28px;
}

.blog-cat-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 4px 2px 10px;
    scrollbar-width: thin;
}

.blog-cat-pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.2);
    color: #3a3a3a;
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.blog-cat-pill:hover,
.blog-cat-pill.is-active {
    border-color: rgba(184, 148, 31, 0.7);
    color: #1a1a1a;
    background: #FBF6EC;
}

.blog-cat-pill.is-active {
    box-shadow: 0 4px 14px rgba(184, 148, 31, 0.14);
}

.blog-grid--clean {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (min-width: 1101px) {
    .blog-grid--clean > .blog-card:last-child:nth-child(3n+1) {
        grid-column: 2;
    }
    .blog-grid--related > .blog-card:last-child:nth-child(3n+1) {
        grid-column: auto;
    }
}

@media (max-width: 1100px) and (min-width: 641px) {
    .blog-grid--clean > .blog-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 420px;
        justify-self: center;
        width: 100%;
    }
    .blog-grid--related > .blog-card:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .blog-grid--clean {
        grid-template-columns: 1fr;
    }
}

.blog-card-cta {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(184, 148, 31, 0.16);
}

.blog-toc {
    background: #FBF8F1;
    border: 1px solid rgba(184, 148, 31, 0.16);
    border-radius: 16px;
    padding: 18px 20px;
    margin: 0 0 28px;
}

.blog-toc-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 15px;
    margin: 0 0 10px;
    color: #1a1a1a;
}

.blog-toc ol {
    margin: 0;
    padding: 0 18px 0 0;
}

.blog-toc li {
    margin: 6px 0;
    font-size: 14px;
}

.blog-toc-h3 {
    font-size: 13px;
    opacity: 0.92;
}

.blog-toc a {
    color: #3a3a3a;
    text-decoration: none;
}

.blog-toc a:hover {
    color: var(--gold-dark);
}

.blog-khulasa {
    background: #FBF8F1;
    border-right: 3px solid var(--gold);
    border-radius: 12px;
    padding: 8px 18px 4px;
    margin: 24px 0;
}

.blog-faq-item {
    border: 1px solid rgba(184, 148, 31, 0.16);
    border-radius: 12px;
    padding: 0 16px;
    margin: 10px 0;
    background: #fff;
}

.blog-faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 12px 0;
}

.blog-faq-item summary::-webkit-details-marker {
    display: none;
}

.blog-faq-item summary h3 {
    display: inline;
    font-size: 16px;
}

.blog-faq-a {
    padding: 0 0 14px;
}

.blog-article-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 148, 31, 0.16);
}

.blog-save-btn,
.blog-share-btn {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    font-weight: 700;
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.28);
    border-radius: 999px;
    padding: 8px 14px;
    color: #1a1a1a;
    text-decoration: none;
    cursor: pointer;
}

.blog-share {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-product-rec {
    margin: 8px 0 36px;
    background: #fff;
    border: 1px solid rgba(184, 148, 31, 0.16);
    border-radius: 22px;
    padding: 22px;
}

.blog-product-rec-kicker {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    margin: 0 0 14px;
    color: #1a1a1a;
}

.blog-product-rec-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.blog-product-rec-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
}

.blog-product-rec-card strong {
    display: block;
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.blog-product-rec-card span {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 640px) {
    .blog-search {
        padding: 6px;
    }
    .blog-product-rec-card {
        grid-template-columns: 88px 1fr;
    }
    .blog-product-rec-card img {
        width: 88px;
        height: 88px;
    }
    .blog-featured-link {
        grid-template-columns: 1fr;
    }
}



