/*
Theme Name: Begonia Basket
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Premium and aesthetic custom WordPress theme for The Begonia Basket, specializing in rare and exotic plants.
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
Text Domain: begonia-basket
*/

/*
/*--------------------------------------------------------------
>>> DESIGN SYSTEM VARIABLES
--------------------------------------------------------------*/
:root {
    --primary-green: #1a2f25;     /* Deep, dark botanical green */
    --secondary-green: #4a6758;   /* Muted forest green */
    --accent-gold: #d4af37;       /* Premium gold accent */
    --accent-pink: #e0a8a8;       /* Soft dusty pink */
    --bg-light: #f4f7f5;          /* Very subtle cool grey-green */
    --text-dark: #2c3e35;         /* Deep charcoal dark text */
    --text-light: #f4f7f5;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-head: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* WordPress theme compatibilities mapping to the above */
    --primary-color: var(--primary-green);
    --primary-hover: var(--secondary-green);
    --secondary-color: var(--accent-gold);
    --secondary-hover: #b89328;
    --bg-color: var(--bg-light);
    --bg-card: var(--white);
    --text-color: var(--text-dark);
    --text-muted: var(--secondary-green);
    --border-color: rgba(0, 0, 0, 0.05);
    --font-heading: var(--font-head);
}

/*--------------------------------------------------------------
# Normalize & Box Sizing
--------------------------------------------------------------*/
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/*--------------------------------------------------------------
# Base Elements & Typography
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 3rem; }
h3 { font-size: 1.6rem; }

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

/* Standard Lists */
ul, ol {
    margin: 0 0 1.5rem 0;
    list-style: none;
}

li {
    margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# Site Header & Navigation
--------------------------------------------------------------*/
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    padding: 0.8rem 5%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled .logo-img {
    height: 60px;
}

/* Branding Logo */
.site-branding {
    display: flex;
    align-items: center;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: height 0.3s ease;
}

/* Primary Menu */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.main-navigation li {
    margin: 0;
    position: relative;
}

.main-navigation a {
    color: var(--primary-green);
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
}

.main-navigation a::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after,
.main-navigation .current_page_item > a::after {
    width: 100%;
}

/* Cart Icon style */
.cart-icon {
    font-weight: 700;
    color: var(--white);
    background-color: var(--primary-green);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(26, 47, 37, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.cart-icon:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 47, 37, 0.3);
}

#cart-count {
    background-color: var(--accent-gold);
    color: var(--primary-green);
    font-size: 0.8rem;
    padding: 2px 7px;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.2s ease;
}

#cart-count.pulse {
    transform: scale(1.3);
}

/* Mobile Hamburger Menu button */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--primary-green);
    transition: 0.3s;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.05);
    transition: transform 10s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-button, .btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover, .btn:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/*--------------------------------------------------------------
# Core Layout & Sections
--------------------------------------------------------------*/
.container {
    padding: 6rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

h2.section-title {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

h2.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 1rem auto 0;
}

/*--------------------------------------------------------------
# Latest Updates (Bangkok Shows Events)
--------------------------------------------------------------*/
.update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.update-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.update-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent-pink);
    transition: height 0.3s ease;
}

.update-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.update-card .date {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.update-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.update-card p {
    color: #666;
}

/*--------------------------------------------------------------
# Shop Grid & Product Cards
--------------------------------------------------------------*/
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    justify-content: center;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    z-index: 1;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
    font-family: var(--font-head);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
    background-color: #f0f4f2;
    color: var(--secondary-green);
    border-radius: 50px;
    font-weight: 700;
}

.price, .product-price {
    display: block;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

.btn-add, .add-btn {
    background: transparent;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 700;
    border-radius: 0;
}

.btn-add:hover, .add-btn:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Highlight Section (Why Begonias Split)
--------------------------------------------------------------*/
.highlight-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--primary-green);
    color: var(--white);
    overflow: hidden;
}

.highlight-text {
    padding: 6rem 10% 6rem 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-text h2 {
    text-align: left;
    color: var(--white);
    left: 0;
    transform: none;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.highlight-text h2::after {
    margin: 1rem 0 0;
    background-color: var(--accent-pink);
    left: 0;
    transform: none;
}

.highlight-text p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight-text a {
    color: var(--accent-pink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-text a:hover {
    color: var(--white);
    gap: 1rem;
}

.highlight-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*--------------------------------------------------------------
# Care Section (Standard WP Split Layout)
--------------------------------------------------------------*/
.care-section {
    background-color: var(--bg-light);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.split-layout > div {
    flex: 1 1 450px;
}

.care-intro {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.care-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.care-list li {
    margin-bottom: 1.8rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--accent-pink);
    font-size: 1.05rem;
    line-height: 1.6;
}

.care-list li strong {
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.image-block {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-block img {
    border-radius: 12px;
    box-shadow: 20px 20px 0px var(--accent-gold);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 100%;
    object-fit: cover;
    max-height: 480px;
}

.image-block img:hover {
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0px var(--accent-gold);
}

/*--------------------------------------------------------------
# How to Order Page
--------------------------------------------------------------*/
.order-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-size: 1.3rem;
}

/*--------------------------------------------------------------
# Single Product Detail Layout
--------------------------------------------------------------*/
.product-detail-container {
    display: grid;
    gap: 4rem;
}

.product-specs {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
}

.product-specs h2 {
    text-align: left;
    left: 0;
    transform: none;
    margin-bottom: 1.5rem;
}

.product-specs h2::after {
    margin: 1rem 0;
    left: 0;
    transform: none;
}

.product-specs p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.gallery-section h2 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*--------------------------------------------------------------
# Premium Toast Notifications
--------------------------------------------------------------*/
#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
}

.custom-toast {
    background: rgba(26, 47, 37, 0.96);
    color: var(--white);
    padding: 16px 28px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(80px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-toast.show {
    transform: translateY(0);
    opacity: 1;
}

.custom-toast.hide {
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
# WordPress Inner Templates & Blog Styling
--------------------------------------------------------------*/
.site-main {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 20px;
}

.site-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
}

.site-content .site-main {
    flex: 2 1 700px;
    margin: 0;
    padding: 0;
}

.widget-area {
    flex: 1 1 300px;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    height: fit-content;
    box-shadow: var(--shadow-soft);
}

.widget {
    margin-bottom: 2.5rem;
}

.widget-title {
    font-size: 1.4rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 1.2rem;
    font-family: var(--font-head);
}

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

.widget li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.post, .page {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.entry-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.entry-title {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.entry-meta {
    font-size: 0.9rem;
    color: var(--secondary-green);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-thumbnail {
    margin-bottom: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.post-thumbnail img {
    width: 100%;
    object-fit: cover;
    max-height: 500px;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 1.8rem;
}

.entry-content blockquote {
    border-left: 4px solid var(--primary-green);
    padding: 1rem 2rem;
    margin: 2rem 0;
    background-color: var(--bg-light);
    font-style: italic;
    font-family: var(--font-head);
    font-size: 1.25rem;
}

/* Forms styling */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: all 0.3s ease;
    outline: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
    border-color: var(--primary-green);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 47, 37, 0.1);
}

input[type="submit"],
button[type="submit"] {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
    background-color: var(--secondary-green);
    transform: translateY(-1px);
}

/* Comments Area */
.comments-area {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-top: 3rem;
    box-shadow: var(--shadow-soft);
}

.comments-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: var(--font-head);
}

.comment-list {
    list-style: none;
    margin: 0 0 3rem 0;
    padding: 0;
}

.comment-body {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--secondary-green);
    margin-bottom: 0.8rem;
}

.comment-author .fn {
    font-weight: 700;
    color: var(--primary-green);
    font-style: normal;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.site-footer {
    background-color: #15251d;    /* Deep dark footer background */
    color: var(--white);
    padding: 6rem 5% 2rem;
    border-top: 5px solid var(--accent-gold);
    font-family: var(--font-body);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
}

.footer-column, .footer-col {
    position: relative;
}

.footer-column h4, .footer-col h3 {
    color: var(--accent-pink);
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-column p, .footer-column li, .footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.7;
}

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

.footer-column li {
    margin-bottom: 0.8rem;
}

.footer-column a, .footer-col a {
    color: var(--white);
    opacity: 0.6;
    display: block;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.footer-column a:hover, .footer-col a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

/* Social media icon layouts */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon-img:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.newsletter-form input {
    background: transparent;
    border: none;
    width: 100%;
    color: var(--white);
    padding: 0.5rem;
    outline: none;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.newsletter-form button:hover {
    color: var(--white);
}

.site-info, .copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.4;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0 auto;
}

.site-info a {
    color: rgba(255, 255, 255, 0.8);
}

.site-info a:hover {
    color: var(--accent-gold);
}

/*--------------------------------------------------------------
# Animations & Keyframes
--------------------------------------------------------------*/
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/*--------------------------------------------------------------
# Mobile Responsiveness
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .hero h1 { font-size: 3.5rem; }
    .highlight-section { grid-template-columns: 1fr; }
    .highlight-image { min-height: 350px; }
    .highlight-text { padding: 4rem 10%; }
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 5%;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .hamburger {
        display: block;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .main-navigation {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
        display: flex;
    }
    
    .main-navigation.active,
    .main-navigation.toggled {
        transform: translateX(0);
    }
    
    .main-navigation ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        width: 100%;
    }
    
    .main-navigation a {
        font-size: 1.5rem;
    }
    
    .cart-icon {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-left: auto;
        margin-right: 15px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .container {
        padding: 4rem 5%;
    }
    
    .split-layout {
        gap: 3rem;
    }
    
    .footer-content {
        gap: 2.5rem;
    }
}

