/* ===== CSS Variables ===== */
:root {
    --pearl: #F8F6F3;
    --pearl-light: #FDFCFB;
    --nude: #E8DDD5;
    --nude-dark: #D4C4B8;
    --champagne: #F7E7CE;
    --champagne-gold: #D4AF37;
    --text-primary: #2D2A26;
    --text-secondary: #5A5651;
    --text-muted: #8A8580;
    --accent: #9B7B5C;
    --accent-hover: #7D6349;
    --white: #FFFFFF;
    --shadow-soft: 0 4px 20px rgba(45, 42, 38, 0.08);
    --shadow-medium: 0 8px 30px rgba(45, 42, 38, 0.12);
    --shadow-strong: 0 12px 40px rgba(45, 42, 38, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--pearl) 0%, var(--pearl-light) 50%, var(--nude) 100%);
    color: var(--text-primary);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--accent-hover);
}

ul {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ===== Layout ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section--alt {
    background: linear-gradient(180deg, var(--pearl-light) 0%, var(--champagne) 100%);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 246, 243, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 196, 184, 0.3);
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-soft);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 0.05em;
}

.logo span {
    color: var(--champagne-gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--champagne-gold);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--text-primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, var(--champagne) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.5rem;
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--champagne-gold);
    border-radius: 50%;
}

.hero__title {
    margin-bottom: 1.5rem;
}

.hero__title span {
    color: var(--champagne-gold);
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero__image {
    position: relative;
    z-index: 1;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.hero__image-wrapper {
    position: relative;
    background: linear-gradient(145deg, var(--white) 0%, var(--champagne) 100%);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-strong);
}

.hero__image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--champagne-gold);
    border-radius: 50%;
    opacity: 0.2;
}

.hero__image-wrapper img {
    border-radius: var(--radius-lg);
    width: 100%;
    object-fit: contain;
    max-height: 500px;
}

.hero__disclaimer {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--champagne-gold);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== Order Section ===== */
.order {
    background: linear-gradient(135deg, var(--nude) 0%, var(--champagne) 100%);
    position: relative;
}

.order::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--champagne-gold), transparent);
}

.order__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.order__content h2 {
    margin-bottom: 1rem;
}

.order__content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.order__price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.order__price-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.order__price-currency {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.order__form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form__input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--nude);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--pearl-light);
    transition: var(--transition);
}

.form__input:focus {
    outline: none;
    border-color: var(--champagne-gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form__input::placeholder {
    color: var(--text-muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--accent) 100%);
    color: var(--white);
    width: 100%;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.btn--secondary {
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn--secondary:hover {
    background: var(--accent);
    color: var(--white);
}

/* ===== Features Section ===== */
.features {
    position: relative;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    text-align: center;
}

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

.feature-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--champagne) 0%, var(--nude) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.feature-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ===== Content Section ===== */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-section--reverse {
    direction: rtl;
}

.content-section--reverse > * {
    direction: ltr;
}

.content__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.content__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.content__image:hover img {
    transform: scale(1.03);
}

.content__text h2 {
    margin-bottom: 1.5rem;
}

.content__text p {
    margin-bottom: 1rem;
}

.content__list {
    margin-top: 1.5rem;
}

.content__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.content__list li::before {
    content: '✓';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 700;
}

/* ===== Ingredients Section ===== */
.ingredients__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.ingredient-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid transparent;
}

.ingredient-card:hover {
    border-color: var(--champagne-gold);
    transform: translateY(-3px);
}

.ingredient-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ingredient-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.ingredient-card__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ===== How to Use Section ===== */
.usage__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.usage-step {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.usage-step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.usage-step__title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.usage-step__text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-primary);
    color: var(--pearl);
    padding: 4rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__brand .logo {
    color: var(--pearl);
    margin-bottom: 1rem;
    display: inline-block;
}

.footer__brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pearl);
    margin-bottom: 1.5rem;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

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

.footer__links a:hover {
    color: var(--champagne-gold);
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer__contact li span:first-child {
    flex-shrink: 0;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer__disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    max-width: 500px;
    text-align: right;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.cookie-banner__text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 1rem;
}

.cookie-banner__btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-banner__btn--accept {
    background: var(--champagne-gold);
    color: var(--white);
    border: none;
}

.cookie-banner__btn--accept:hover {
    background: var(--accent);
}

.cookie-banner__btn--reject {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--nude-dark);
}

.cookie-banner__btn--reject:hover {
    background: var(--nude);
}

/* ===== Page Header ===== */
.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, var(--pearl) 0%, var(--champagne) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Legal Pages ===== */
.legal-content {
    padding: 4rem 0;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1rem;
}

.legal-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--champagne-gold);
}

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-info__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info__item:last-child {
    margin-bottom: 0;
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    background: var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info__text h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-info__text p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* ===== Success Page ===== */
.success-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.success-content {
    max-width: 500px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--champagne-gold) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--white);
    animation: successPulse 2s ease-in-out infinite;
}

.success-content h1 {
    margin-bottom: 1rem;
}

.success-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== About Page ===== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.value-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ingredients__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        box-shadow: var(--shadow-strong);
        transition: var(--transition);
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav__link {
        font-size: 1.1rem;
        padding: 1rem 0;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero__grid,
    .order__grid,
    .content-section,
    .contact-grid,
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-section--reverse {
        direction: ltr;
    }
    
    .hero__image {
        order: -1;
    }
    
    .features__grid,
    .usage__steps,
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .ingredients__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__disclaimer {
        text-align: center;
    }
    
    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner__buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-banner__btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }
    
    .ingredients__grid {
        grid-template-columns: 1fr;
    }
    
    .order__form {
        padding: 1.5rem;
    }
    
    .hero {
        padding-top: 6rem;
    }
}

/* ===== Overlay ===== */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* ===== Product Page ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery__main {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1rem;
}

.product-gallery__main img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.product-info h1 {
    margin-bottom: 1rem;
}

.product-info__price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.product-info__description {
    margin-bottom: 2rem;
}

.product-info__disclaimer {
    background: rgba(247, 231, 206, 0.5);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--champagne-gold);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
}
