:root {
    /* Brand Colors */
    --brand-beige-page-bg: #FAF7F2;
    --brand-white-card-bg: #FFFFFF;
    --brand-deep-teal: #004D40;
    --brand-gold: #B08D57;
    --brand-dark-text: #2C3E50;
    --brand-light-text-on-dark: #F0F0F0;
    --brand-text-on-gold: #2C3E50;
}

/* Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    color: var(--brand-dark-text);
    background-color: var(--brand-beige-page-bg);
    line-height: 1.6;
    scroll-behavior: smooth;
    padding-top: 80px;
}

/* Typography Helpers */
.font-serif { font-family: serif; }
.text-4xl { font-size: 2.25rem; }
.text-6xl { font-size: 3.75rem; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }

/* Layout Helpers */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(250, 247, 242, 0.9);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 80px;
    display: flex;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-deep-teal);
    text-decoration: none;
    transition: color 0.2s;
}
.logo:hover { color: var(--brand-gold); }

/* Navigation & Buttons */
nav a, footer a {
    text-decoration: none;
    color: var(--brand-dark-text);
    padding: 0.5rem 0.75rem;
    transition: color 0.2s;
    font-size: 0.875rem;
    text-transform: uppercase;
}
nav a:hover, footer a:hover {
    color: var(--brand-gold);
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-secondary {
    background-color: var(--brand-deep-teal);
    color: var(--brand-light-text-on-dark);
}
.btn-secondary:hover {
    background-color: #006652;
}

/* Hero Section */
.hero {
    padding: 3rem 0; /* Reduced from 6rem to bring products higher up */
    text-align: center;
}

/* --- Interactive AI Widget --- */
#ai-widget-form {
    background-color: var(--brand-white-card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 2rem auto;
    border-top: 4px solid var(--brand-gold);
}
#ai-widget-form input, #ai-widget-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
}
#ai-widget-form button {
    width: 100%;
    font-size: 1.1rem;
    padding: 15px 0;
}
#results-output {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--brand-gold);
    text-align: left;
}
.results-title {
    font-family: serif;
    font-size: 1.25rem;
    color: var(--brand-deep-teal);
    margin-bottom: 1rem;
    font-weight: 600;
}
.gifts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gift-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}
.gift-item span {
    color: var(--brand-gold);
    margin-right: 0.5rem;
    font-size: 1.5rem;
    line-height: 1;
}
.affiliate-link-text {
    color: var(--brand-gold);
    font-size: 0.75rem;
    display: block;
    margin-top: 0.2rem;
}
.message-starter {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--brand-beige-page-bg);
    border-left: 4px solid var(--brand-deep-teal);
    font-size: 0.875rem;
    font-style: italic;
}
/* --- END AI Widget --- */


/* --- Scrollable Product Grid --- */
.scrollable-grid-wrapper {
    overflow-x: auto; /* Enables horizontal scrolling */
    padding-bottom: 1rem; 
    max-width: 100%;
    margin: 3rem auto 0;
}
/* Scrollbar styling for a cleaner look */
.scrollable-grid-wrapper::-webkit-scrollbar {
    height: 8px;
}
.scrollable-grid-wrapper::-webkit-scrollbar-thumb {
    background: var(--brand-gold);
    border-radius: 10px;
}
.scrollable-grid-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#ai-results-grid {
    display: flex; /* Makes items arrange horizontally */
    gap: 1.5rem;
    padding-left: 1rem; 
    padding-right: 1rem; 
    margin: 0; 
}
.product-card {
    min-width: 280px; /* Fixed width for card in scrollable view */
    max-width: 280px;
    background-color: var(--brand-white-card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.product-image-container {
    width: 100%;
    height: 180px; 
    overflow: hidden;
}
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-details {
    padding: 1rem;
}
.product-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-deep-teal);
    margin-bottom: 0.25rem;
}
.product-description {
    font-size: 0.875rem;
    color: var(--brand-dark-text);
    margin-bottom: 0.75rem;
    min-height: 40px;
}
.product-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: var(--brand-gold);
    color: var(--brand-text-on-gold);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}
.product-link:hover {
    background-color: #C09B66;
}
.affiliate-tag {
    font-size: 0.7rem;
    font-weight: normal;
    display: block;
    margin-top: 5px;
    color: var(--brand-deep-teal);
}
/* --- END Scrollable Product Grid --- */


/* Content Sections */
section {
    padding: 5rem 0;
}
.section-title {
    font-family: serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brand-deep-teal);
    margin-bottom: 1rem;
}
#how-it-works { background-color: var(--brand-white-card-bg); }
#features { background-color: var(--brand-deep-teal); color: var(--brand-light-text-on-dark); }
#cta { background-color: var(--brand-gold); color: var(--brand-dark-text); text-align: center; }

/* Footer */
footer {
    background-color: var(--brand-deep-teal);
    color: var(--brand-light-text-on-dark);
    padding: 4rem 0 2rem;
}
footer a { color: var(--brand-light-text-on-dark); }
footer a:hover { color: var(--brand-gold); }
.footer-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 3rem;
}
.footer-col {
    width: 25%;
    min-width: 150px;
    margin-bottom: 1rem;
}
.footer-col h3 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col li {
    margin-bottom: 0.5rem;
}
/* *** CRITICAL SOVRN APPROVAL CHANGE: Increased Disclosure Visibility *** */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
    
    /* MODIFIED FOR CONSPICUOUS DISCLOSURE */
    font-weight: 700; 
    color: var(--brand-gold) !important; /* Force high contrast: gold on deep teal */
    opacity: 1 !important; /* Ensure full visibility */
    margin-top: 3rem; /* Re-added margin for spacing */
}
/* ... (rest of style.css) ... */
.icon {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
    vertical-align: middle;
}

/* Legal Content Specific */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 0;
}
.legal-content h1 {
    font-family: serif;
    color: var(--brand-deep-teal);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.legal-content h2 {
    color: var(--brand-deep-teal);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}
.legal-content p, .legal-content ul {
    margin-bottom: 1rem;
}
.legal-content ul {
    padding-left: 20px;
    list-style: disc;
}