/* =========================================================================
   Clean Girl Aesthetic - Beauty E-commerce
   ========================================================================= */

/* --- Variables & Design Tokens --- */
:root {
    --bg-color: #FAFAFA;
    /* Off-white main background */
    --surface-color: #FFFFFF;
    /* Pure white surface */
    --surface-hover: #F8F8F8;

    --text-main: #3A3A3A;
    /* Grafite - readable dark gray for titles */
    --text-muted: #737373;
    /* Subtle text for descriptions */

    --primary-color: #DAA6A4;
    /* Rosa Quartzo Suave */
    --primary-hover: #C58F8D;
    --accent-color: #D4A373;
    /* Muted gold/beige for stars */

    --border-color: #E8E8E8;
    --border-radius: 8px;
    /* Softer, slightly less rounded for modern look */

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.08);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 600;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* --- Layout & Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.bg-soft {
    background-color: var(--surface-color);
}

/* --- Top Announcement Bar --- */
.announcement-bar {
    background-color: var(--primary-color);
    color: #FFF;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

/* --- Header & Navigation --- */
.header {
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    flex-direction: row;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.logo-dot {
    color: var(--primary-color);
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background-color: var(--bg-color);
    border-radius: 50px;
    padding: 8px 16px;
    width: 100%;
    max-width: 400px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.search-bar:focus-within {
    border-color: var(--primary-color);
    background-color: var(--surface-color);
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-main);
}

.search-bar input::placeholder {
    color: #A0A0A0;
}

.search-bar button {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.action-btn {
    font-size: 1.5rem;
    color: var(--text-main);
    position: relative;
}

.action-btn:hover {
    color: var(--primary-color);
}

.cart-btn {
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--primary-color);
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Navigation Links */
.nav-links-wrapper {
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
    display: none;
    /* Hidden on mobile by default */
}

@media (min-width: 900px) {
    .nav-links-wrapper {
        display: block;
    }

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

.nav-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 16px 0;
}

.nav-links a,
.mobile-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active,
.mobile-links a:hover,
.mobile-links a.active {
    color: var(--primary-color);
}

.highlight-link {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

/* --- Mobile Menu --- */
.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    /* Controlled by active class & JS logic */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    width: 100%;
    max-width: 400px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateY(0);
}

.close-menu-btn {
    position: absolute;
    top: -40px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.25rem;
    color: var(--text-main);
    cursor: pointer;
    padding: 10px;
}

.mobile-search {
    margin-bottom: 40px;
    width: 100%;
    max-width: 320px;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.mobile-links li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active .mobile-links li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for links */
.mobile-links li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-links li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-links li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-links li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-links li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-links a {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 8px 0;
}

.mobile-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.mobile-links a:hover::after,
.mobile-links a.active::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 500px;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 80px 24px;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.5rem;
    color: #FFF;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 450px;
}

.btn-primary {
    display: inline-flex;
    background: linear-gradient(135deg, #DAA6A4, #E63946);
    color: #FFF;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
    filter: brightness(1.1);
}

.hero-image-placeholder {
    flex: 1;
    min-width: 300px;
    min-height: 500px;
    background-image: url('assets/hero_clean.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* --- Trust Section --- */
.trust-section {
    padding: 40px 0;
    background-color: var(--surface-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-main);
}

.trust-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- Social Proof --- */
.social-proof {
    padding: 80px 0;
}

.stars-group {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 40px;
}

.reviews-carousel {
    max-width: 600px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--bg-color);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 16px;
}

.review-author {
    font-weight: 600;
    color: var(--text-muted);
}

/* --- Catalog Section --- */
.catalog-section {
    padding: 80px 0;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
    margin-top: -30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    grid-auto-rows: 1fr;
    /* Force all rows to have the same height */
    justify-content: start;
}

.product-card {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 640px;
    /* Increased to accommodate ratings */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-badge.discount {
    background-color: #E63946;
    color: white;
}

.product-badge.bestseller {
    background-color: var(--text-main);
    color: white;
}

.product-badge.super-promo {
    background: linear-gradient(45deg, #FFD700, #FFEA00);
    color: #000;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: pulse-mini 2s infinite;
}

@keyframes pulse-mini {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* Force square aspect ratio for uniformity */
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    height: 1rem;
    display: flex;
    align-items: center;
}

.product-title {
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 8px;
    /* Reduced from 12px */
    height: 3.2rem;
    line-height: 1.6rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    color: var(--text-main);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #FFD700;
    /* Luxury Gold */
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.product-price {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
    min-height: 60px;
    /* Use min-height to reserve space */
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.current-price {
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.25rem;
}

.btn-buy {
    background: linear-gradient(135deg, #DAA6A4, #DB7093);
    color: white;
    border: none;
    padding: 14px;
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    /* Push button to the bottom */
}

.btn-buy:hover {
    background: linear-gradient(135deg, #E63946, #D0312D);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.w-full {
    width: 100%;
}

/* --- Modal (Product Quick View) --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--surface-color);
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: var(--border-radius);
    position: relative;
    overflow-y: auto;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    border: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.modal-image-col {
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image-col img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
}

.modal-info-col {
    padding: 40px 40px 40px 0;
    display: flex;
    flex-direction: column;
}

.product-title-large {
    font-size: 2rem;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.modal-reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.modal-reviews span {
    color: var(--text-muted);
}

.product-price.large .old-price {
    font-size: 1.1rem;
}

.product-price.large .current-price {
    font-size: 2rem;
}

.text-highlight {
    color: #E63946;
}

/* Scarcity */
.scarcity-box {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #B91C1C;
    padding: 10px 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 500;
}

.scarcity-box i {
    font-size: 1.2rem;
}

.modal-promo-box {
    display: none;
    background: linear-gradient(135deg, #4ADE80, #22C55E);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    animation: slide-in-top 0.5s ease;
}

.modal-promo-box.active {
    display: block;
}

@keyframes slide-in-top {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Pain Copy */
.modal-description {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Variations Selector */
.modal-variations {
    margin-bottom: 24px;
}

.variation-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

.variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.variation-btn {
    min-width: 48px;
    height: 40px;
    border: 1px solid var(--border-color);
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.variation-btn:hover {
    border-color: var(--text-main);
}

.variation-btn.active {
    background-color: var(--text-main);
    color: white;
    border-color: var(--text-main);
}

/* Qty Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    font-weight: 500;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    overflow: hidden;
}

.qty-control button {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
}

.qty-control button:hover {
    background-color: var(--surface-hover);
}

.qty-control input {
    width: 40px;
    height: 40px;
    border: none;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-main);
    pointer-events: none;
}

.pulse {
    animation: pulse-soft 2s infinite;
}

@keyframes pulse-soft {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 30px rgba(230, 57, 70, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
    }
}

.trust-seals {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.trust-seals span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-seals i {
    font-size: 1.5rem;
    color: var(--text-main);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
}

/* --- Footer --- */
.footer {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0 0;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 16px 0;
}

.social-links {
    display: flex;
    gap: 16px;
    font-size: 1.5rem;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.payment-methods {
    font-size: 2rem;
    display: flex;
    gap: 12px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.security-note {
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-bottom {
    background-color: #F8F8F8;
    padding: 24px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
    .search-bar {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        padding: 60px 24px;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 32px auto;
    }

    .hero-image-placeholder {
        min-height: 400px;
    }

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

    .trust-item {
        flex-direction: column;
        gap: 8px;
    }

    /* Modal Mobile Formatting */
    .modal-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .modal-info-col {
        padding: 24px;
    }

    /* Hide the inline buy button and qty on mobile — the sticky bar handles it */
    .modal-actions {
        display: none;
    }

    .quantity-selector {
        display: none;
    }

    .mobile-sticky-cta {
        display: flex;
        position: sticky;
        bottom: 0;
        background-color: var(--surface-color);
        padding: 16px 24px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
        align-items: center;
        justify-content: space-between;
        z-index: 10;
        border-top: 1px solid var(--border-color);
    }

    .sticky-info {
        display: flex;
        flex-direction: column;
    }

    .sticky-qty {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

    .sticky-price {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--text-main);
    }

    .mobile-sticky-cta .btn-primary {
        padding: 12px 24px;
    }
}