@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   LOCAL REFILLS — Uptown Healing (luxe, events-matched)
   Cormorant + Inter, dark editorial surfaces,
   sage green kept as accent (glow, hovers, labels, icons).
   Header + footer mirror the current shop/recipes pages.
   ============================================================ */

:root {
    --primary: #7FA99B;
    --primary-light: #9BBDB0;
    --primary-dark: #6A8F81;
    --secondary: #C5D6CE;
    --accent: #8FB5A5;
    --light: #F7F9F8;
    --dark: #2F3E36;
    --text: #3A4A42;
    --white: #ffffff;
    --gray-50: #FAFBFA;
    --gray-100: #F5F7F6;
    --gray-200: #E8EBE9;
    --gray-300: #D5DAD7;
    --gray-400: #B4BCB8;
    --gray-500: #93A099;
    --gray-600: #728078;
    --gray-700: #556058;
    --gray-800: #3A4A42;
    --gray-900: #1F2821;

    /* Luxe tokens (shared across the site) */
    --lux-ink: #1b231d;
    --lux-paper: #f6f5f1;
    --lux-line: #e4e2db;
    --lux-muted: #8c8f88;
    --lux-gold: #c2a14d;
    --font-display: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --font-nav: 'Libre Baskerville', serif;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 2px 8px rgba(127, 169, 155, 0.08);
    --shadow-lg: 0 8px 24px rgba(127, 169, 155, 0.12);
    --border-radius: 0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   HEADER (matches shop/recipes pages)
======================================== */

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--lux-line);
    position: sticky;
    top: 0;
    z-index: 10000;
    box-shadow: none;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.header-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    min-height: 80px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: flex-start;
    position: relative;
}

.header-left nav {
    display: flex;
    gap: 28px;
    position: relative;
}

.nav-item {
    position: relative;
}

.header-left nav a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
    padding: 8px 0;
    white-space: nowrap;
    display: block;
}

.header-left nav a:hover {
    color: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--lux-line);
    box-shadow: var(--shadow-lg);
    min-width: 800px;
    padding: 40px;
    display: none;
    z-index: 10000;
    margin-top: 8px;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.dropdown-column h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--dark);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--lux-line);
    padding-bottom: 12px;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-column ul li {
    margin-bottom: 12px;
}

.dropdown-column ul li a {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition);
    display: block;
    padding: 4px 0;
    text-transform: none;
    letter-spacing: 0;
}

.dropdown-column ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

/* ========================================
   LEARN MEGA-MENU (two-zone)
   Caps the taller Learn dropdown to the viewport and lets the
   lower (Transplant Care) zone scroll into reach. 120px ≈ sticky
   header + a small gap.

   .dropdown-grid-3 is a shared 3-col helper — also used by the
   About Us and Events dropdowns — defined here so every page
   renders the mega-menus identically.
======================================== */

.dropdown-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.dropdown-menu-learn {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.dropdown-menu-learn .learn-zone-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 14px;
}

.dropdown-menu-learn .learn-zone-divider {
    height: 1px;
    background: var(--gray-200, #e5e7eb);
    margin: 22px 0;
}

.dropdown-menu-learn .dropdown-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66%;
}

.header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: block;
    flex-shrink: 0;
}

.logo img {
    height: 64px;
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.header-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.header-wrapper .logo {
    grid-column: 2;
    justify-self: center;
}

.header-actions {
    grid-column: 3;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-end;
    flex-shrink: 0;
    white-space: nowrap;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover {
    color: var(--primary);
}

.account-link a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    transition: var(--transition);
    white-space: nowrap;
}

.account-link a:hover {
    color: var(--primary);
}

.account-link i {
    display: none;
}

.account-label {
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.12em;
}

.cart-link a {
    color: var(--text);
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    position: relative;
}

.cart-link a:hover {
    color: var(--primary);
}

.cart-link i {
    font-size: 24px;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0 4px;
    font-family: var(--font-sans);
}

/* ========================================
   SECONDARY NAV
======================================== */

.main-navigation {
    background-color: white;
    border-bottom: 1px solid var(--lux-line);
    padding: 0;
    position: relative;
    z-index: 1;
}

.main-navigation .container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.main-navigation .menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    justify-content: center;
    gap: 0;
}

.main-navigation .menu::-webkit-scrollbar {
    display: none;
}

.main-navigation .menu-item {
    white-space: nowrap;
}

.main-navigation .menu-item a {
    display: block;
    padding: 18px 28px;
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.main-navigation .menu-item a:hover,
.main-navigation .menu-item a.active {
    color: var(--primary);
}

.main-navigation .menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation .menu-item a:hover::after,
.main-navigation .menu-item a.active::after {
    width: 70%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu nav a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 12px 0;
    border-bottom: 1px solid var(--lux-line);
    transition: color 0.2s;
}

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

/* ========================================
   PAGE BANNER — dark editorial, green as glow
======================================== */

.page-banner {
    background:
        radial-gradient(1000px 420px at 82% -20%, rgba(127, 169, 155, 0.30), transparent 60%),
        linear-gradient(160deg, var(--gray-900) 0%, var(--dark) 60%, var(--gray-900) 100%);
    padding: 92px 0;
    margin-bottom: 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(197, 214, 206, 0.25);
    background: none;
    opacity: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 60px);
    margin-bottom: 12px;
    color: white;
    position: relative;
    z-index: 2;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.08;
}

.page-banner h1::before {
    content: 'Uptown Healing';
    display: block;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 20px;
}

.page-banner .subtitle {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.9;
    position: relative;
    z-index: 2;
}

.page-banner .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Buttons — used on the dark banner + dark CTA only.
   Solid light + ghost outline pairing. */
.btn {
    background: white;
    color: var(--dark);
    padding: 16px 34px;
    border-radius: 0;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: var(--transition);
    border: 1px solid white;
    display: inline-block;
}

.btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-1px);
    box-shadow: none;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
    border-color: white;
}

/* ========================================
   CONTENT SECTIONS
======================================== */

/* Notice Banner */
.notice-banner {
    background: var(--lux-paper);
    border-top: 1px solid var(--lux-line);
    border-bottom: 1px solid var(--lux-line);
    padding: 36px 0;
}

.notice-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.notice-content h3 {
    font-family: var(--font-display);
    color: var(--dark);
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.notice-content p {
    color: var(--gray-700);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.9;
}

/* Content Sections */
.content-section {
    padding: 90px 0;
}

.content-section.gray-bg {
    background: var(--lux-paper);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 1px;
    background: var(--primary);
    margin: 20px auto 0;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: var(--lux-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--white);
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 24px;
    color: var(--primary-dark);
}

.feature-item h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    color: var(--gray-600);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
}

/* Steps Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background: var(--dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 600;
}

.step-item h3 {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.step-item p {
    color: var(--gray-600);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.product-category {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border: 1px solid var(--lux-line);
    transition: var(--transition);
}

.product-category:hover {
    border-color: var(--primary-light);
}

.product-category i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-category h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-category p {
    color: var(--gray-600);
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 300;
}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
    padding: 90px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0;
    margin-bottom: 16px;
    box-shadow: none;
    overflow: hidden;
    border: 1px solid var(--lux-line);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--lux-paper);
}

.faq-question h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.faq-toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--dark);
    position: relative;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: white;
    border-radius: 1px;
}

.faq-toggle::before {
    width: 11px;
    height: 1.5px;
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    width: 1.5px;
    height: 11px;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-toggle::after {
    opacity: 0;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 2000px;
}

.faq-answer p {
    color: var(--gray-600);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 12px;
}

.faq-answer ul, .faq-answer ol {
    color: var(--gray-600);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
    margin: 12px 0;
    padding-left: 28px;
}

.faq-answer li {
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--dark);
    font-weight: 600;
}

.faq-answer a {
    color: var(--primary-dark);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Important Info Styles */
.important-info {
    margin: 20px 0;
    padding-left: 20px;
    border-left: 1px solid var(--lux-line);
}

.important-info p {
    margin-bottom: 10px;
}

.note-box {
    background: var(--lux-paper);
    padding: 18px 22px;
    border-radius: 0;
    margin: 16px 0;
    border-left: 3px solid var(--primary);
}

.note-box p {
    margin: 0;
    color: var(--gray-700);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 300;
}

/* ========================================
   CTA SECTION — dark editorial, green as glow
======================================== */

.cta-section {
    background:
        radial-gradient(900px 420px at 80% 0%, rgba(127, 169, 155, 0.25), transparent 60%),
        linear-gradient(150deg, var(--dark) 0%, var(--gray-900) 100%);
    padding: 100px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(197, 214, 206, 0.25);
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 46px);
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: white;
    position: relative;
    z-index: 2;
}

.cta-section p {
    font-family: var(--font-sans);
    font-size: 14px;
    margin-bottom: 35px;
    color: var(--secondary);
    line-height: 1.95;
    position: relative;
    z-index: 2;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-note {
    font-family: var(--font-sans);
    font-size: 13px;
    color: rgba(197, 214, 206, 0.8);
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

/* ========================================
   FOOTER (matches shop/recipes pages)
======================================== */

.site-footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 80px 0 0;
    margin-top: 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 24px;
}

.footer-description {
    color: var(--gray-400);
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.widget-title {
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 12px;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.widget-menu {
    list-style: none;
}

.widget-menu li {
    margin-bottom: 12px;
}

.widget-menu a {
    color: var(--gray-400);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 300;
    transition: color 0.2s;
}

.widget-menu a:hover {
    color: var(--white);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
}

.newsletter-description {
    color: var(--gray-400);
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-family: var(--font-sans);
    font-weight: 500;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: 0;
}

.newsletter-submit:hover {
    background: var(--primary-dark);
}

.newsletter-privacy {
    color: var(--gray-500);
    font-family: var(--font-sans);
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.copyright {
    color: var(--gray-500);
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.04em;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(31, 40, 33, 0.18);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(31, 40, 33, 0.22);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1200px) {
    .header-container, .container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }

    .header-left nav {
        gap: 20px;
    }

    .header-left nav a {
        font-size: 10.5px;
        letter-spacing: 0.16em;
    }

    .dropdown-menu {
        min-width: 700px;
    }

    .dropdown-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .header-main {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }

    .mobile-menu-toggle, .menu-toggle {
        display: block;
    }

    .header-left nav {
        display: none;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 64px 0;
    }

    .page-banner h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .content-section {
        padding: 60px 0;
    }

    .faq-section {
        padding: 60px 0;
    }

    .header-container, .container {
        padding: 0 20px;
    }

    .footer-newsletter {
        padding: 25px 20px;
    }

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

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: 24px;
    }

    .page-banner .subtitle {
        font-size: 13.5px;
    }

    .section-title {
        font-size: 24px;
    }

    .logo img {
        height: 50px;
    }

    .account-label {
        font-size: 12px;
    }

    .footer-logo img {
        height: 60px;
    }

    .btn {
        padding: 14px 28px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}