/* ================= VARIABLES ================= */
:root {
    --primary-gold: #c5a659;
    --dark-gold: #a6843c;
    --light-gold: #fcf9f2;
    --white: #ffffff;
    --text-dark: #222222;
    --text-muted: #555555;
    --bg-gray: #f8f9fa;
    --sale-red: #e63946;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-gray);
}

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

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

/* ================= TYPOGRAPHY & BUTTONS ================= */
h1, h2, h3, .section-title {
    font-family: var(--font-heading);
    color: var(--primary-gold);
}

.section-title.center {
    text-align: center;
    margin-bottom: 40px;
}
.section-title span {
    color: var(--text-dark);
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(197, 166, 89, 0.4);
}

.btn-primary:hover {
    background-color: var(--dark-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-gold);
}
.btn-outline:hover {
    background: var(--primary-gold);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.center {
    text-align: center;
}

/* ================= HERO SECTION ================= */
.hero-section {
    background-color: #fff;
    padding: 60px 0 100px; /* space for overlapping policies */
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.brand-subtitle {
    font-size: 18px;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-slogan {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
}

.badges {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.badge {
    background: var(--sale-red);
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.badge-gift { background: var(--primary-gold); }

.badge-title { font-size: 12px; font-weight: bold; }
.badge-value { font-size: 24px; font-weight: bold; line-height: 1; }

.price-box {
    margin-left: 10px;
}
.old-price {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}
.new-price {
    font-size: 32px;
    color: var(--sale-red);
    font-weight: bold;
    line-height: 1;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}
.hero-image img {
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
}

/* ================= POLICIES ================= */
.policies-section {
    position: relative;
    margin-top: -50px; /* Overlap hero */
    z-index: 10;
}
.policies-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.policy-card {
    background: var(--white);
    flex: 1;
    min-width: 200px;
    padding: 25px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--primary-gold);
    transition: transform 0.3s;
}
.policy-card:hover {
    transform: translateY(-5px);
}
.policy-icon {
    font-size: 32px;
    margin-bottom: 10px;
}
.policy-text {
    font-size: 15px;
    font-weight: 600;
}

/* Pain points */
.pain-points {
    padding: 60px 20px;
    background: var(--bg-gray);
}
.pain-points h2 { font-size: 28px; text-align: center; margin-bottom: 30px; }
.pain-list { max-width: 800px; margin: 0 auto; list-style: none; }
.pain-list li {
    padding: 15px 20px;
    background: var(--white);
    margin-bottom: 15px;
    border-left: 4px solid var(--sale-red);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

/* ================= INTRO ================= */
.intro-section {
    background-color: var(--white);
    padding: 80px 0;
}
.intro-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}
.intro-content {
    flex: 1;
    min-width: 300px;
}
.intro-content .sub-title {
    font-size: 16px;
    color: var(--text-muted);
    font-family: var(--font-body);
}
.intro-content .main-title {
    font-size: 40px;
    margin-bottom: 25px;
}
.intro-content p {
    margin-bottom: 20px;
    font-size: 16px;
}
.intro-content .highlight {
    font-weight: 600;
    color: var(--primary-gold);
    border-left: 3px solid var(--primary-gold);
    padding-left: 15px;
}
.intro-image {
    flex: 1;
    min-width: 300px;
    background: var(--bg-gray);
    padding: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
}
.intro-image img { max-height: 450px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1)); }

/* ================= PARALLAX ================= */
.parallax-banner {
    padding: 120px 0;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    color: var(--white);
    text-align: center;
}
.parallax-overlay {
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(10, 10, 10, 0.7);
}
.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.parallax-content h2 { color: var(--primary-gold); font-size: 40px; margin-bottom: 20px; }
.parallax-content p { font-size: 18px; margin-bottom: 40px; line-height: 1.8; }

/* ================= SCENT DETAILS ================= */
.scent-details-section {
    padding: 80px 0;
    background: var(--bg-gray);
}
.scent-container {
    display: flex;
    align-items: stretch;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-radius: 12px;
    overflow: hidden;
    flex-wrap: wrap;
}
.scent-box {
    flex: 1;
    min-width: 300px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.scent-box h2 { font-size: 32px; margin-bottom: 25px; }
.scent-box p { margin-bottom: 20px; font-size: 16px; }
.scent-image {
    flex: 1.3;
    min-width: 300px;
    position: relative;
}
.scent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= NOTES SECTION ================= */
.notes-section {
    padding: 80px 0;
    background: var(--white);
}
.notes-container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.notes-left-image {
    flex: 1;
    min-width: 300px;
    background: var(--bg-gray);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}
.notes-left-image img { max-height: 500px; margin: 0 auto;}

.notes-right-boxes {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.note-box {
    background: var(--white);
    border: 2px solid #eaeaea;
    padding: 20px 40px;
    width: 100%;
    max-width: 450px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.note-box h3 { color: var(--text-dark); margin-bottom: 10px; font-size: 22px; }
.note-box p { color: var(--text-muted); }
.note-arrow {
    font-size: 24px;
    color: var(--primary-gold);
    margin: 15px 0;
}

/* ================= PRODUCT INFO TABLE ================= */
.product-info-section {
    padding: 80px 0;
    background: var(--bg-gray);
}
.info-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}
.info-table-side {
    flex: 2;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}
.info-title-badge {
    background: var(--text-dark);
    color: var(--white);
    display: inline-block;
    padding: 10px 30px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    position: absolute;
    top: -20px;
    left: 40px;
}
.info-table {
    width: 100%;
    border-collapse: collapse;
}
.info-table td {
    padding: 15px 0;
    border-bottom: 1px dotted #ccc;
    font-size: 16px;
}
.info-table tr:last-child td { border-bottom: none; }
.info-table td:first-child { color: var(--text-muted); width: 40%; }
.info-cta { margin-top: 30px; }

.info-badges-side {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.large-sale-badge, .large-gift-badge {
    background: radial-gradient(circle, var(--sale-red) 50%, #b32a35 100%);
    color: white;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.4);
}
.large-gift-badge {
    background: var(--primary-gold);
    box-shadow: 0 15px 30px rgba(197, 166, 89, 0.4);
}
.large-sale-badge span, .large-gift-badge span { font-size: 20px; font-weight: bold; }
.large-sale-badge strong, .large-gift-badge strong { font-size: 52px; line-height: 1; }
.large-gift-badge strong { font-size: 32px; margin-top: 10px; text-align:center;}

/* ================= FOOTER / FORM ================= */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 80px 0;
}
.footer-container {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}
.contact-info {
    flex: 1;
    min-width: 300px;
}
.contact-info h2 { color: var(--primary-gold); margin-bottom: 30px; }
.contact-info p { margin-bottom: 15px; font-size: 16px; color: #ccc; }

.order-form {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    color: var(--text-dark);
}
.order-form h3 { color: var(--primary-gold); margin-bottom: 10px; font-size: 24px; text-align: center; }
.order-form p { text-align: center; margin-bottom: 25px; font-size: 18px; }
.order-form span { text-decoration: line-through; color: var(--text-muted); font-size: 14px; }
.order-form input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}
.order-form input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .hero-slogan { font-size: 16px; }
    .policy-card { min-width: 45%; }
    .scent-box { padding: 40px 20px; }
    .notes-right-boxes { padding-top: 20px; }
    .info-table-side { padding: 30px 20px; }
    .large-sale-badge, .large-gift-badge { width: 150px; height: 150px; }
    .large-sale-badge strong { font-size: 40px; }
    .large-gift-badge strong { font-size: 24px; }
}
@media (max-width: 480px) {
    .policy-card { min-width: 100%; }
    .badges { flex-wrap: wrap; }
}
