/* Reset and Base Styles (scoped to storefront pages) */
.site-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-dark: #6A0DAD;
    --purple-light: #C8A2C8;
    --purple-lavender: #E6D9F0;
    --pink: #FF69B4;
    --pink-light: #FFB6C1;
    --purple-gradient-start: #FF69B4;
    --purple-gradient-end: #9932CC;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light-gray: #999999;
    --white: #FFFFFF;
    --green-stock: #90EE90;
    --star-yellow: #FFD700;
}

.site-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* ============================
   Account page layout & helpers
   ============================ */

body.account-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f5f7fb;
}

.account-main {
    flex: 1 0 auto;
}

body.account-page .footer {
    flex-shrink: 0;
}

/* Avatar + country select helpers used in account.php */

.account-avatar-wrapper {
    width: 80px;
    height: 80px;
}

.account-avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fce7f3, #e9d5ff);
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.country-select {
    width: 100%;
}

/* ============================
   Storefront sections
   ============================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.language-selector:hover {
    background-color: rgba(106, 13, 173, 0.1);
}

.language-selector span {
    font-size: 14px;
    font-weight: 600;
    user-select: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: none;
    margin: 0;
    padding: 0 clamp(20px, 4vw, 56px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.62) 26%, rgba(255, 255, 255, 0.22) 56%, rgba(255, 255, 255, 0.18) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-copy {
    max-width: 520px;
    padding: 28px 30px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(255, 255, 255, 0.72) 100%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 20px 45px rgba(45, 55, 72, 0.14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 500px;
    text-wrap: balance;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 28px;
    max-width: 430px;
    line-height: 1.65;
    text-wrap: pretty;
}

.cta-button {
    background: linear-gradient(90deg, var(--purple-gradient-start) 0%, var(--purple-gradient-end) 100%);
    color: var(--white);
    border: none;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none; /* remove underline on links */
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(153, 50, 204, 0.4);
    text-decoration: none;
}

.cta-button i {
    font-size: 16px;
}

.hero-cta-button {
    display: flex;
    width: fit-content;
    min-width: 160px;
    justify-content: center;
    margin: 0 auto;
}

.hero-mobile-copy-section {
    display: none;
}

/* Shop by Collection Section */
.shop-collection {
    padding: 80px 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 261px);
    justify-content: center;
    gap: 30px;
}

.collection-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.collection-image {
    width: 100%;
    height: 260px;
    background-size: cover;
    background-position: center;
}

.img-1 {
    background-image: url('https://images.unsplash.com/photo-1581833971358-2c8b550f87b3?w=400&q=80');
}

.img-2 {
    background-image: url('https://images.unsplash.com/photo-1581833971358-2c8b550f87b3?w=400&q=80');
}

.img-3 {
    background-image: url('https://images.unsplash.com/photo-1581833971358-2c8b550f87b3?w=400&q=80');
}

.img-4 {
    background-image: url('https://images.unsplash.com/photo-1581833971358-2c8b550f87b3?w=400&q=80');
}

.collection-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Best Sellers Section */
.best-sellers {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--purple-lavender) 0%, var(--white) 100%);
}

.selling-fast {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.product-card-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.product-title-link {
    color: inherit;
    text-decoration: none;
}

.product-title-link:hover {
    color: var(--purple-dark);
}

.product-image-display {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image-display {
    transform: scale(1.05);
}

.product-image-placeholder {
    background: linear-gradient(135deg, #fdf2f8 0%, #ede9fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 34px;
}

.selling-fast-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f97316 0%, #ef4444 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(239, 68, 68, 0.22);
}

.product-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.wishlist-btn:hover {
    transform: scale(1.06);
}

.wishlist-btn i {
    color: var(--pink);
    font-size: 16px;
}

.wishlist-btn.is-active {
    background-color: var(--pink);
}

.wishlist-btn.is-active i {
    color: #fff;
}

.wishlist-feedback {
    position: fixed;
    top: 90px;
    right: 18px;
    z-index: 2000;
    min-width: 220px;
    max-width: 360px;
    padding: 10px 14px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.wishlist-feedback.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-feedback.is-success {
    background: #2f9e44;
}

.wishlist-feedback.is-error {
    background: #e03131;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: var(--star-yellow);
    font-size: 14px;
}

.rating-count {
    font-size: 14px;
    color: var(--text-gray);
}

.stock-badge {
    display: inline-block;
    background-color: var(--green-stock);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.stock-badge-low {
    background: #fff7d1;
    color: #9a6b00;
}

.stock-badge-out {
    background: #fee2e2;
    color: #b91c1c;
}

.stock-badge-alt {
    background: #ede9fe;
    color: #6d28d9;
}

/* View All Products Section */
.view-all-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.view-all-btn {
    background-color: var(--white);
    color: var(--purple-dark);
    border: 2px solid var(--purple-dark);
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.view-all-btn:hover {
    background-color: var(--purple-dark);
    color: var(--white);
}

/* Follow Our Journey Section */
.follow-journey {
    padding: 80px 0;
    background-color: var(--white);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 361px);
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.journey-item {
    text-align: center;
}

.journey-image {
    width: 361px;
    max-width: 100%;
    height: 260px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin-bottom: 10px;
}

.journey-image:hover {
    transform: scale(1.05);
}

.img-journey-1 {
    background-image: url('https://images.unsplash.com/photo-1581833971358-2c8b550f87b3?w=400&q=80');
}

.img-journey-2 {
    background-image: url('https://images.unsplash.com/photo-1581833971358-2c8b550f87b3?w=400&q=80');
}

.img-journey-3 {
    background-image: url('https://images.unsplash.com/photo-1581833971358-2c8b550f87b3?w=400&q=80');
}

.img-journey-4 {
    background-image: url('https://images.unsplash.com/photo-1581833971358-2c8b550f87b3?w=400&q=80');
}

.journey-caption {
    font-size: 14px;
    color: var(--text-gray);
    max-width: 260px;
    margin: 0 auto;
}

.view-instagram-btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(90deg, var(--purple-gradient-start) 0%, var(--purple-gradient-end) 100%);
    color: #fff;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: radial-gradient(circle, var(--pink-light) 0%, var(--purple-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--white);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--purple-lavender);
    padding: 60px 0 30px;
    color: var(--text-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--purple-dark);
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--purple-dark);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-flash {
    margin-bottom: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.newsletter-flash-success {
    background: #e8f7ed;
    color: #185a35;
    border: 1px solid #c7e8d1;
}

.newsletter-flash-error {
    background: #fff1f1;
    color: #a23c3c;
    border: 1px solid #f1c3c3;
}

.newsletter-input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    color: var(--text-dark);
}

.newsletter-input::placeholder {
    color: var(--text-light-gray);
}

.newsletter-btn {
    background: linear-gradient(90deg, var(--purple-gradient-start) 0%, var(--purple-gradient-end) 100%);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 50, 204, 0.3);
}

.footer-inline-link {
    appearance: none;
    border: none;
    padding: 0;
    background: transparent;
    color: var(--text-gray);
    font: inherit;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-inline-link:hover {
    color: var(--purple-dark);
}

.footer-legal-summary {
    margin-bottom: 36px;
    padding: 28px;
    border-radius: 24px;
    border: 1px solid rgba(106, 13, 173, 0.12);
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0) 48%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.48) 100%);
    box-shadow: 0 18px 40px rgba(106, 13, 173, 0.08);
}

.footer-kicker {
    margin-bottom: 10px;
    color: #8b5dc5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-legal-title {
    margin-bottom: 12px;
}

.footer-legal-text {
    max-width: 960px;
}

.footer-legal-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.footer-legal-list li {
    position: relative;
    min-height: 100%;
    padding: 16px 16px 16px 44px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    color: #4d4260;
    font-size: 14px;
    line-height: 1.7;
}

.footer-legal-list li::before {
    content: "\f058";
    position: absolute;
    top: 18px;
    left: 16px;
    color: var(--purple-dark);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
}

.footer-legal-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--purple-dark);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.footer-legal-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(106, 13, 173, 0.2);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icon.instagram {
    background: linear-gradient(90deg, var(--purple-gradient-start) 0%, var(--purple-gradient-end) 100%);
    color: var(--white);
}

.social-icon.facebook {
    background-color: var(--white);
    color: var(--purple-dark);
}

.social-icon.email {
    background-color: var(--white);
    color: var(--purple-dark);
}

.social-icon:hover {
    transform: translateY(-2px);
}

.copyright {
    margin: 0;
    font-size: 14px;
    color: var(--text-gray);
}

.footer-copyright-row {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-info {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.footer-info-toggle {
    width: 22px;
    height: 22px;
    border: 1px solid rgba(106, 13, 173, 0.32);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    color: var(--purple-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 11px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.footer-info-toggle:hover,
.footer-info-toggle:focus-visible,
.footer-info.is-open .footer-info-toggle {
    background: var(--purple-dark);
    border-color: var(--purple-dark);
    color: var(--white);
}

.footer-info-toggle:focus-visible,
.footer-info-close:focus-visible {
    outline: 3px solid rgba(255, 105, 180, 0.28);
    outline-offset: 2px;
}

.footer-info-popup {
    position: absolute;
    right: 50%;
    bottom: calc(100% + 10px);
    z-index: 20;
    width: min(300px, calc(100vw - 32px));
    padding: 16px 40px 16px 16px;
    border: 1px solid rgba(106, 13, 173, 0.16);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #fcf8ff 100%);
    box-shadow: 0 18px 45px rgba(34, 16, 57, 0.2);
    color: var(--text-dark);
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(50%, 8px) scale(0.96);
    transform-origin: bottom center;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.footer-info.is-open .footer-info-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(50%, 0) scale(1);
}

.footer-info-popup::after {
    content: "";
    position: absolute;
    right: 50%;
    bottom: -7px;
    width: 12px;
    height: 12px;
    border-right: 1px solid rgba(106, 13, 173, 0.16);
    border-bottom: 1px solid rgba(106, 13, 173, 0.16);
    background: #fcf8ff;
    transform: translateX(50%) rotate(45deg);
}

.footer-info-popup p {
    margin: 0;
    color: var(--text-gray);
    font-size: 13px;
    line-height: 1.55;
}

.footer-info-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--purple-dark);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}

.footer-info-close:hover {
    background: rgba(106, 13, 173, 0.1);
}

.cookie-consent-open,
.cookie-consent-open body {
    overflow: hidden;
}

.cookie-consent-shell {
    position: fixed;
    inset: 0;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.cookie-consent-shell[hidden] {
    display: none !important;
}

.cookie-consent-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(35, 24, 54, 0.64);
    backdrop-filter: blur(6px);
}

.cookie-consent-dialog {
    position: relative;
    z-index: 1;
    width: min(760px, 100%);
    max-height: min(90vh, 760px);
    overflow-y: auto;
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(143, 84, 217, 0.18);
    background:
        radial-gradient(circle at top right, rgba(255, 220, 241, 0.8) 0%, rgba(255, 220, 241, 0) 30%),
        linear-gradient(180deg, #ffffff 0%, #fcf8ff 100%);
    box-shadow: 0 28px 70px rgba(34, 16, 57, 0.28);
}

.cookie-consent-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: rgba(106, 13, 173, 0.08);
    color: var(--purple-dark);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.cookie-consent-eyebrow {
    margin-bottom: 10px;
    color: #a64d8b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cookie-consent-dialog h2 {
    margin-bottom: 14px;
    color: #2b1848;
    font-size: clamp(1.9rem, 2.4vw, 2.4rem);
    line-height: 1.15;
}

.cookie-consent-description,
.cookie-consent-note {
    color: #5c516f;
    font-size: 15px;
    line-height: 1.75;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 20px;
}

.cookie-consent-btn {
    min-height: 48px;
    border-radius: 999px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cookie-consent-btn:hover {
    transform: translateY(-1px);
}

.cookie-consent-btn-primary {
    border: none;
    background: linear-gradient(90deg, var(--purple-gradient-start) 0%, var(--purple-gradient-end) 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(153, 50, 204, 0.2);
}

.cookie-consent-btn-secondary,
.cookie-consent-btn-outline {
    border: 1px solid rgba(106, 13, 173, 0.18);
    background: #fff;
    color: #442b67;
}

.cookie-consent-panel {
    display: grid;
    gap: 14px;
    margin-bottom: 18px;
}

.cookie-consent-panel[hidden] {
    display: none !important;
}

.cookie-consent-option {
    padding: 18px 18px 16px;
    border-radius: 20px;
    border: 1px solid #eadff7;
    background: rgba(255, 255, 255, 0.84);
}

.cookie-consent-option-locked {
    border-color: rgba(143, 84, 217, 0.2);
    background: linear-gradient(180deg, rgba(245, 236, 255, 0.9) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.cookie-consent-option-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.cookie-consent-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2e184d;
    font-size: 15px;
    font-weight: 700;
}

.cookie-consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #8f54d9;
}

.cookie-consent-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(143, 84, 217, 0.12);
    color: #6a0dad;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cookie-consent-option p {
    color: #5c516f;
    font-size: 14px;
    line-height: 1.7;
}

.cookie-consent-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 12px;
}

.cookie-consent-links a {
    color: var(--purple-dark);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.cookie-consent-links a:hover {
    text-decoration: underline;
}

@supports (content-visibility: auto) {
    body.site-page.is-long-scroll-page .shop-collection,
    body.site-page.is-long-scroll-page .selling-fast,
    body.site-page.is-long-scroll-page .best-sellers,
    body.site-page.is-long-scroll-page .follow-journey,
    body.site-page.is-long-scroll-page .features,
    body.site-page.is-long-scroll-page .view-all-section,
    body.site-page.is-long-scroll-page .reviews-section,
    body.site-page.is-long-scroll-page .footer-legal-summary,
    body.site-page.is-long-scroll-page .product-card,
    body.site-page.is-long-scroll-page .shop-product-card,
    body.site-page.is-long-scroll-page .info-card,
    body.site-page.is-long-scroll-page .faq-item,
    body.site-page.is-long-scroll-page .review-card {
        content-visibility: auto;
    }

    body.site-page.is-long-scroll-page .shop-collection,
    body.site-page.is-long-scroll-page .selling-fast,
    body.site-page.is-long-scroll-page .best-sellers,
    body.site-page.is-long-scroll-page .follow-journey,
    body.site-page.is-long-scroll-page .features {
        contain-intrinsic-size: 820px;
        contain-intrinsic-size: auto 820px;
    }

    body.site-page.is-long-scroll-page .view-all-section {
        contain-intrinsic-size: 180px;
        contain-intrinsic-size: auto 180px;
    }

    body.site-page.is-long-scroll-page .reviews-section {
        contain-intrinsic-size: 1120px;
        contain-intrinsic-size: auto 1120px;
    }

    body.site-page.is-long-scroll-page .footer-legal-summary {
        contain-intrinsic-size: 520px;
        contain-intrinsic-size: auto 520px;
    }

    body.site-page.is-long-scroll-page .product-card {
        contain-intrinsic-size: 520px;
        contain-intrinsic-size: auto 520px;
    }

    body.site-page.is-long-scroll-page .shop-product-card {
        contain-intrinsic-size: 600px;
        contain-intrinsic-size: auto 600px;
    }

    body.site-page.is-long-scroll-page .info-card {
        contain-intrinsic-size: 320px;
        contain-intrinsic-size: auto 320px;
    }

    body.site-page.is-long-scroll-page .faq-item {
        contain-intrinsic-size: 180px;
        contain-intrinsic-size: auto 180px;
    }

    body.site-page.is-long-scroll-page .review-card {
        contain-intrinsic-size: 260px;
        contain-intrinsic-size: auto 260px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-grid {
        grid-template-columns: repeat(2, 261px);
    }

    .journey-grid {
        grid-template-columns: repeat(2, 361px);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-legal-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 440px;
    }

    .hero-content {
        padding: 0 18px;
    }

    .hero-copy {
        max-width: 100%;
        padding: 22px 20px;
        border-radius: 22px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .collection-grid,
    .products-grid,
    .journey-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .collection-grid,
    .journey-grid {
        justify-content: center;
    }

    .collection-card {
        width: min(261px, 100%);
        margin: 0 auto;
    }

    .journey-image {
        width: min(361px, 100%);
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .cookie-consent-actions {
        flex-direction: column;
    }

    .cookie-consent-btn {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 14px;
    }

    .hero {
        height: clamp(240px, 62vw, 340px);
        min-height: 0;
        padding: 0;
        background-position: center top;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 55%, rgba(255, 255, 255, 0.12) 100%);
    }

    .hero-content {
        display: none;
    }

    .hero-mobile-copy-section {
        display: block;
        padding: 18px 0 6px;
    }

    .hero-copy-mobile {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .hero-copy-mobile .hero-title {
        font-size: 28px;
    }

    .hero-copy-mobile .hero-subtitle {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .shop-collection,
    .best-sellers,
    .selling-fast,
    .follow-journey,
    .features,
    .view-all-section {
        padding: 54px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .collection-card {
        width: 100%;
        max-width: 340px;
    }

    .collection-image,
    .product-image-wrapper,
    .journey-image {
        height: 220px;
    }

    .product-info {
        padding: 16px;
    }

    .product-name {
        font-size: 17px;
    }

    .product-price {
        font-size: 20px;
    }

    .feature-icon {
        width: 82px;
        height: 82px;
        margin-bottom: 18px;
        font-size: 32px;
    }

    .feature-title {
        font-size: 20px;
    }

    .footer {
        padding: 48px 0 24px;
    }

    .footer-content {
        gap: 24px;
        margin-bottom: 28px;
    }

    .footer-legal-summary {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .footer-legal-list li {
        padding: 14px 14px 14px 40px;
    }

    .footer-info-popup {
        position: fixed;
        right: 16px;
        bottom: 24px;
        left: 16px;
        width: auto;
        transform: translateY(8px) scale(0.98);
        transform-origin: bottom center;
    }

    .footer-info.is-open .footer-info-popup {
        transform: translateY(0) scale(1);
    }

    .footer-info-popup::after {
        display: none;
    }

    .cookie-consent-shell {
        padding: 14px;
    }

    .cookie-consent-dialog {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .cookie-consent-option-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =============================================
   CHECKOUT PAGE
   ============================================= */

.checkout-container {
    max-width: 1160px;
    margin: 36px auto 72px;
    padding: 0 20px;
}

.checkout-title {
    margin: 0 0 18px;
    color: #2d184d;
    font-size: clamp(1.9rem, 2.7vw, 2.4rem);
    line-height: 1.1;
    letter-spacing: 0.2px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    align-items: start;
}

.checkout-form {
    border: 1px solid #e6dff2;
    border-radius: 18px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(63, 32, 102, 0.08);
}

.checkout-form fieldset {
    border: 1px solid #e5dcf2;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 18px;
    background: #fff;
}

.checkout-form legend {
    color: #4e2f74;
    font-weight: 700;
    font-size: 14px;
    padding: 0 10px;
    letter-spacing: 0.2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #443058;
    font-size: 14px;
    font-weight: 600;
}

.form-group input:not([type="radio"]):not([type="checkbox"]),
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d5cae8;
    border-radius: 10px;
    padding: 11px 13px;
    color: #2f2342;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:not([type="radio"]):not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #a879e2;
    box-shadow: 0 0 0 3px rgba(168, 121, 226, 0.15);
}

.form-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.form-options.form-options-column {
    flex-direction: column;
    gap: 8px;
}

.option-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #3a294f;
    font-size: 14px;
    font-weight: 500;
}

.checkout-form input[type="radio"],
.checkout-form input[type="checkbox"] {
    accent-color: #8a4dd6;
}

.form-helper {
    display: block;
    margin-top: 6px;
    color: #6e5e84;
    font-size: 12px;
    line-height: 1.35;
}

.coupon-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.coupon-row input[type="text"] {
    flex: 1;
}

.coupon-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.btn-inline {
    border: 1px solid #d4c3eb;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    background: #fff;
    color: #45286d;
}

.btn-inline.btn-apply {
    border-color: #7f46cf;
    background: #7f46cf;
    color: #fff;
}

.error {
    display: block;
    margin-top: 7px;
    color: #b42318;
    font-size: 13px;
    font-weight: 600;
}

.error-field {
    border-color: #d64545 !important;
    background: #fff7f7 !important;
}

.free-shipping-notice {
    margin-bottom: 18px;
    border: 1px solid #d0e9d8;
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
    color: #185a35;
    background: #e8f7ed;
    font-size: 14px;
    font-weight: 600;
}

.guest-notice {
    margin-bottom: 16px;
    border: 1px solid #cfe0ff;
    border-radius: 12px;
    padding: 14px 15px;
    background: #ebf3ff;
    color: #1e3a68;
    font-size: 14px;
}

.guest-notice a {
    color: #114a9c;
    font-weight: 600;
    text-decoration: underline;
}

.checkout-error {
    margin-bottom: 16px;
    border: 1px solid #f1aeb5;
    border-radius: 12px;
    background: #fcebed;
    color: #8a1f2d;
    padding: 14px 16px;
    font-weight: 600;
}

.terms-row {
    margin: 18px 0 14px;
}

.terms-label {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    color: #3f3058;
    font-size: 14px;
    font-weight: 500;
}

.btn-primary {
    width: 100%;
    border: none;
    border-radius: 11px;
    padding: 13px 16px;
    background: linear-gradient(90deg, #8f54d9 0%, #5c2ea0 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.2px;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(108, 58, 176, 0.28);
}

.order-summary {
    position: sticky;
    top: 90px;
    border: 1px solid #e5dbf2;
    border-radius: 16px;
    padding: 22px;
    background: linear-gradient(180deg, #fbf9ff 0%, #f5f1fb 100%);
    box-shadow: 0 10px 24px rgba(61, 30, 98, 0.08);
}

.order-summary h2 {
    margin: 0 0 12px;
    color: #2f1d49;
    font-size: 24px;
    line-height: 1.2;
}

.courier-map-card {
    margin-top: 14px;
    border: 1px solid #e5dbf2;
    border-radius: 16px;
    padding: 14px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(61, 30, 98, 0.08);
}

.courier-map-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    color: #2f1d49;
}

.courier-map-card p {
    margin: 0 0 10px;
    font-size: 12px;
    color: #6f5f85;
    line-height: 1.4;
}

.courier-map-frame {
    width: 100%;
    height: 220px;
    border: 1px solid #dfd3ef;
    border-radius: 10px;
    background: #f8f4ff;
    overflow: hidden;
}

.courier-map-links {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.courier-map-links a {
    font-size: 12px;
    color: #5c2ea0;
    text-decoration: underline;
    font-weight: 600;
}

.courier-map-points {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.courier-map-points span {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    border-radius: 999px;
    background: #f2ebff;
    color: #4f3774;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid #ddd1f0;
}

.courier-map-points span.is-closest {
    background: #e2d3ff;
    border-color: #b99cf2;
    color: #34185f;
}

.order-item {
    padding: 11px 0;
    border-bottom: 1px solid #e6deef;
}

.order-item-main {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #3c2a57;
    font-size: 14px;
    font-weight: 600;
}

.order-item-addons {
    margin-top: 6px;
    color: #6f5f85;
    font-size: 12px;
    line-height: 1.4;
}

.summary-divider {
    border: none;
    border-top: 1px solid #ddd2ec;
    margin: 15px 0 13px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: #432f60;
    font-size: 14px;
    margin-bottom: 8px;
}

.summary-row-total {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #d5c8e7;
    color: #291747;
    font-size: 18px;
    font-weight: 800;
}

@media (max-width: 1024px) {
    .checkout-container {
        margin-top: 24px;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .order-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .checkout-container {
        margin-bottom: 50px;
        padding: 0 14px;
    }

    .checkout-form {
        padding: 17px;
    }

    .checkout-form fieldset {
        padding: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}
