/*
Theme Name: Area Scent Theme
Theme URI: http://example.com/areascent-theme
Author: GitHub Copilot
Author URI: http://github.com
Description: A custom theme for Area Scent - Essence of Serenity.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: areascent-theme
*/

:root {
    --primary-color: #1e5245;
    --primary-dark: #163d33;
    --primary-light: #2a6a5a;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Top Bar */
.top-bar {
    background: #fff;
    font-size: 11px;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
}

.top-bar a {
    margin-left: 20px;
    color: #1e5245;
    font-weight: 600;
    text-decoration: none;
}

/* Notification Bar */
.notification-bar {
    background-color: #1e5245;
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
}

.notification-bar a {
    color: #fff;
    text-decoration: underline;
}

/* Main Header */
.site-header {
    background: #fff;
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    margin: 0;
    line-height: 1;
}

.site-title a {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #1e5245;
    text-decoration: none;
    letter-spacing: 2px;
}

/* Logo Styles */
.site-logo {
    max-height: 50px;
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation li {
    margin: 0 10px;
    white-space: nowrap;
}

.main-navigation a {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #1e5245;
    letter-spacing: 0.5px;
    display: block;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #2a6a5a;
}

.header-actions {
    display: flex;
    align-items: center;
}

.header-actions a {
    margin-left: 20px;
    color: #1e5245;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-link strong {
    font-weight: 700;
}

.cart-amount {
    color: #888;
    font-weight: 400;
}

.search-icon i {
    font-size: 16px;
}

/* Hero Slider */
.hero-slider-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1e5245;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35); /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 600px;
    margin-left: 10%;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.3s; /* Delay content fade in */
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: 52px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 35px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.3);
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
    font-size: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}

.slider-arrow:hover {
    background: rgba(0,0,0,0.6);
    border-color: #fff;
}

.prev-arrow { left: 0; }
.next-arrow { right: 0; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s;
    background: transparent;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    background: transparent;
    transition: all 0.3s;
    font-weight: 600;
}

.btn:hover {
    background: #fff;
    color: #1e5245;
}

.btn-black,
.btn-green {
    border-color: #1e5245;
    color: #1e5245;
}
.btn-black:hover,
.btn-green:hover {
    background: #1e5245;
    color: #fff;
}

/* Intro Section */
.intro-section {
    text-align: center;
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 14px;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
    line-height: 1.8;
}

/* Service Highlights */
.service-highlights {
    padding: 40px 0 80px;
    text-align: center;
}

.highlights-grid {
    display: flex;
    justify-content: space-around;
}

.highlight-item {
    width: 30%;
    padding: 0 20px;
}

.highlight-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.highlight-title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.highlight-desc {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px;
}

.btn-small {
    font-size: 10px;
    padding: 8px 20px;
    border: 1px solid #ccc;
    color: #666;
}

/* Personal Scent Banner */
.personal-scent-banner {
    position: relative;
    height: 400px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
}
.personal-scent-banner::after {
     content: "";
    position: absolute;
    top:0; left:0; right:0; bottom:0;
    background: rgba(0,0,0,0.4);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.banner-title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}

.banner-text {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Product Section */
.product-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.product-name {
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-price {
    font-size: 11px;
    color: #999;
}

/* Dark Marketing Banner */
.marketing-banner {
    background-color: #1e5245;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    background-image: url('assets/dark-leaves.jpg'); /* Placeholder */
    background-size: cover;
}

.marketing-title {
    font-size: 24px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.marketing-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Smart Diffuser Section */
.smart-diffuser-section {
    padding: 80px 0;
    text-align: center;
}

.app-image {
    max-width: 300px;
    margin: 40px auto;
    display: block;
}


/* =========================================
/* WooCommerce Archive Page Styling */

/* Archive Container */
.wc-archive-container {
    padding: 40px 15px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Archive Header */
.archive-header {
    background: #fff !important;
    padding: 50px 0 40px;
    text-align: center;
    border-bottom: none;
}

.archive-header .page-title {
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #555;
    margin-bottom: 25px;
}

.archive-header .term-description {
    max-width: 900px;
    margin: 0 auto;
}

.archive-header .term-description p {
    color: #888;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* Return Home Button */
.aroma-btn-home {
    background: #1e5245;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-block;
    letter-spacing: 1px;
}

.aroma-btn-home:hover {
    background: #163d33;
    color: #fff;
}

/* Product Grid - 3 Columns */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    margin-bottom: 80px;
    list-style: none;
    padding: 0;
}

.woocommerce ul.products li.product {
    width: 100%;
    margin: 0;
    text-align: center;
    border: none;
    padding: 20px 15px;
    background: #fff;
}

/* Product Card Elements */
.aroma-product-card {
    padding: 0;
}

/* Image */
.woocommerce ul.products li.product a img {
    margin-bottom: 20px;
    max-width: 200px;
    height: auto;
    margin-left: auto; 
    margin-right: auto;
    display: block;
}

/* Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    line-height: 1.5;
    color: #1e5245;
    padding: 0;
}

/* Price */
.woocommerce ul.products li.product .price {
    font-size: 12px;
    color: #777;
    display: block;
    margin-bottom: 15px;
    font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    font-weight: 400;
}

/* Buy Now Button */
.aroma-loop-actions {
    margin-bottom: 20px;
}

.aroma-loop-actions .buy-now-button {
    background-color: #1e5245;
    color: #fff;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.aroma-loop-actions .buy-now-button:hover {
    background-color: #163d33;
    color: #fff;
}

/* Loop Description */
.aroma-loop-description {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    padding: 0 10px;
    text-align: center;
}

.aroma-loop-description p {
    margin: 0;
}

/* Remove default link underline */
.woocommerce ul.products li.product a {
    text-decoration: none;
}



/* Layout & Typography */
.woocommerce div.product {
    margin-top: 40px;
}

/* Product Title */
.woocommerce div.product .product_title {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #1e5245;
}

/* Price */
.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    font-size: 18px;
    color: #444;
    font-weight: 400;
    margin-bottom: 20px;
}

.woocommerce div.product p.price ins {
    text-decoration: none;
    font-weight: 600;
}

/* Image Gallery */
.woocommerce div.product div.images img {
    border-radius: 4px; /* Soft edges like screenshot */
}

/* Variations/Form */
.woocommerce div.product form.cart {
    margin-bottom: 30px;
}

.woocommerce div.product form.cart .variations td {
    padding-bottom: 10px;
}

.woocommerce div.product form.cart .variations label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Add to Cart Button */
.woocommerce div.product form.cart .button {
    background-color: #1e5245;
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 30px;
    font-size: 13px;
    transition: all 0.3s;
}

.woocommerce div.product form.cart .button:hover {
    background-color: #163d33;
    color: #fff;
}

/* TABS Styling (Matches Screenshot) */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0;
    margin: 0 0 30px;
    border-bottom: 1px solid #eee;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid #eee;
    border-bottom: none;
    background-color: #fff;
    border-radius: 0;
    margin: 0 -1px 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #555;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    padding: 15px 25px;
    letter-spacing: 0.5px;
}

/* Active Tab - Green Background */
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background-color: #1e5245;
    border-color: #1e5245;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #fff;
}

/* Tab Content */
.woocommerce div.product .woocommerce-tabs .panel {
    margin-bottom: 50px;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #333;
}

/* Attributes Table (Description Table) */
.woocommerce table.shop_attributes {
    border: none;
    border-top: 1px solid #eee;
    width: 100%;
}

.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    font-size: 13px;
}

.woocommerce table.shop_attributes th {
    width: 150px;
    font-weight: 600;
    color: #333;
    text-transform: capitalize;
}

.woocommerce table.shop_attributes td {
    font-style: italic;
    color: #555;
}

.woocommerce table.shop_attributes tr:nth-child(even) th,
.woocommerce table.shop_attributes tr:nth-child(even) td {
    background: #f9f9f9; /* Striped effect slightly */
}

/* Related Products */
.related.products {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.related.products h2 {
    text-align: left; /* Or center based on full screenshot context, but usually left for sections */
    font-size: 14px;
    text-transform: uppercase; 
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.blog-section {
    padding: 80px 0;
    background: #fafafa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-item {
    text-align: center;
    background: #fff;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.blog-item img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block;
}

.blog-item-content {
    padding: 25px;
}

.blog-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 20px 15px 15px;
    color: #1e5245;
    line-height: 1.4;
    min-height: 60px;
}

.blog-desc {
    font-size: 13px;
    color: #666;
    margin: 0 15px 20px;
    line-height: 1.7;
    min-height: 80px;
}

.blog-item .btn-small {
    display: inline-block;
    margin-bottom: 25px;
    color: #1e5245;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-item .btn-small:hover {
    color: #163d33;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .blog-item img {
        height: 180px !important;
    }
}

/* Footer / Partners */
.partners-section {
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.6;
}

.partners-grid img {
    max-height: 40px;
}

/* Category Filter Styles */
.category-filter {
    margin-bottom: 30px;
    font-size: 10px;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.category-filter button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 600;
    color: #999;
    padding: 5px 10px;
    transition: all 0.3s;
}

.category-filter button:hover,
.category-filter button.active {
    color: #1e5245;
}

/* Hide items that don't match filter */
.product-item.hidden {
    display: none;
}

/* Maintenance / Empty State */
.maintenance-message {
    text-align: center;
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.maintenance-message i.icon {
    font-size: 48px;
    color: #333;
    margin-bottom: 25px;
    display: block;
}

.maintenance-message h2 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #1e5245;
}

.maintenance-message p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}


/* ============================================
   SINGLE PRODUCT PAGE STYLES
   ============================================ */

.single-product-wrapper {
    padding: 40px 0;
}

/* Product Top Section - Gallery + Summary */
.product-top-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

.main-image-container {
    position: relative;
    background: #f8f8f8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.zoom-icon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-nav:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-nav.prev-btn {
    left: 15px;
}

.gallery-nav.next-btn {
    right: 15px;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    background: #f8f8f8;
    transition: border-color 0.3s;
}

.thumbnail.active,
.thumbnail:hover {
    border-color: #1e5245;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Summary */
.product-summary {
    padding-top: 20px;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px;
    color: #1e5245;
}

.product-price-wrapper {
    margin-bottom: 15px;
}

.product-price-wrapper .price-label {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.product-price-wrapper .price {
    font-size: 26px;
    font-weight: 600;
    color: #1e5245;
}

.product-price-wrapper .price del {
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.product-price-wrapper .vat-text {
    font-size: 14px;
    color: #1e5245;
    margin-left: 5px;
}

/* Tabby Promo */
.tabby-promo {
    background: #f9f9f9;
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 13px;
}

.tabby-promo .tabby-badge {
    background: #b8e6c7;
    color: #1e5245;
    padding: 2px 8px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 11px;
    text-transform: lowercase;
}

/* Short Description */
.short-description {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* Installment Info */
.installment-info {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.installment-info p {
    margin: 0;
    font-size: 13px;
}

.installment-info .learn-more {
    color: #1e5245;
    text-decoration: underline;
}

.tabby-logo {
    height: 25px;
}

/* Product Options */
.product-option {
    margin-bottom: 20px;
}

.product-option label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-option .clear-option {
    font-size: 11px;
    font-weight: 400;
    color: #999;
    margin-left: 10px;
    text-decoration: none;
    border: 1px solid #ccc;
    padding: 2px 8px;
    border-radius: 3px;
}

.color-select {
    width: 100%;
    max-width: 200px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
}

/* Price Box */
.price-box {
    background: #1e5245;
    color: #fff;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-size: 16px;
}

.price-box .total-price {
    font-weight: 600;
}

/* Quantity and Add to Cart */
.add-to-cart-section {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
}

.quantity-selector .qty-label {
    font-size: 11px;
    text-transform: uppercase;
    padding: 0 15px;
    color: #666;
}

.qty-btn {
    background: none;
    border: none;
    width: 35px;
    height: 45px;
    cursor: pointer;
    font-size: 18px;
    color: #333;
    transition: background 0.3s;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-input {
    width: 40px;
    height: 45px;
    border: none;
    text-align: center;
    font-size: 14px;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.add-to-cart-btn {
    background: #1e5245;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: #163d33;
}

/* Product Meta */
.product-meta {
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 13px;
}

.product-meta p {
    margin: 5px 0;
}

.product-meta strong {
    font-weight: 600;
}

.product-meta a {
    color: #1e5245;
    text-decoration: underline;
}

/* Product Tabs */
.product-tabs-section {
    margin-bottom: 60px;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    color: #1e5245;
    border-bottom-color: #1e5245;
}

.tabs-content {
    padding: 20px 0;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Specifications Table */
.specifications-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    margin-top: 25px;
}

.specifications-table tr {
    border-bottom: 1px solid #eee;
}

.specifications-table td {
    padding: 12px 15px;
    font-size: 14px;
}

.specifications-table td:first-child {
    font-weight: 500;
    color: #333;
    width: 200px;
    background: #f9f9f9;
}

.specifications-table td:last-child {
    color: #666;
}

/* Setup Content */
.setup-content ol {
    padding-left: 20px;
}

.setup-content li {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
}

/* Related Products */
.related-products-section {
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.related-products-section .section-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 40px;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-product-card {
    text-align: center;
}

.related-product-card .product-image {
    background: #f8f8f8;
    padding: 30px;
    margin-bottom: 15px;
}

.related-product-card .product-image img {
    max-width: 100%;
    height: auto;
}

.related-product-card .product-name {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px;
    line-height: 1.4;
}

.related-product-card .product-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.related-product-card .star {
    color: #ddd;
    font-size: 14px;
}

.related-product-card .star.filled {
    color: #1e5245;
}

/* Responsive Single Product */
@media (max-width: 968px) {
    .product-top-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 11px;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .add-to-cart-section {
        flex-direction: column;
    }
    
    .quantity-selector {
        width: 100%;
        justify-content: space-between;
    }
    
    .add-to-cart-btn {
        width: 100%;
    }
    
    .installment-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .related-products-grid {
        grid-template-columns: 1fr;
    }
    
    .specifications-table td:first-child {
        width: auto;
    }
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.site-footer {
    margin-top: 60px;
}

.footer-main {
    background: #1e5245;
    color: #fff;
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-tagline {
    font-size: 13px;
    font-style: italic;
    margin: 10px 0;
    opacity: 0.9;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.8;
    margin-top: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info li span {
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    font-size: 20px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 1;
}

.footer-bottom {
    background: #163d33;
    color: rgba(255,255,255,0.7);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* =========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================= */

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1e5245;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #1e5245;
    cursor: pointer;
}

/* Mobile Menu Open State */
body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu-toggle .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

body.mobile-menu-open .mobile-menu-toggle .hamburger-line:nth-child(2) {
    opacity: 0;
}

body.mobile-menu-open .mobile-menu-toggle .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================================
   TABLET STYLES (max-width: 992px)
   ========================================= */
@media (max-width: 992px) {
    /* Header */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        transition: left 0.3s ease;
        box-shadow: 2px 0 15px rgba(0,0,0,0.1);
        padding: 70px 30px 30px;
        overflow-y: auto;
    }
    
    .main-navigation.active {
        left: 0;
    }
    
    .main-navigation.active .mobile-menu-close {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-navigation li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation a {
        padding: 15px 0;
        font-size: 14px;
        display: block;
    }
    
    .header-inner {
        flex-wrap: wrap;
    }
    
    .header-actions {
        order: 3;
    }
    
    .header-actions .cart-link span {
        display: none;
    }

    /* Mobile Menu Overlay */
    .mobile-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: all 0.3s ease;
    }
    
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hero Slider */
    .hero-slider-container {
        height: 450px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-content {
        margin-left: 5%;
        margin-right: 5%;
        max-width: 90%;
    }
    
    .slider-arrow {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Highlights Grid */
    .highlights-grid {
        flex-wrap: wrap;
    }
    
    .highlight-item {
        width: 50%;
        margin-bottom: 30px;
    }

    /* Category Grid */
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   MOBILE STYLES (max-width: 768px)
   ========================================= */
@media (max-width: 768px) {
    /* Top Bar */
    .top-bar {
        font-size: 10px;
        padding: 6px 0;
    }
    
    .top-bar .container {
        justify-content: center;
    }
    
    .top-bar a {
        margin: 0 10px;
    }

    /* Notification Bar */
    .notification-bar {
        font-size: 12px;
        padding: 10px 0;
        text-align: center;
    }

    /* Header */
    .site-header {
        padding: 15px 0;
    }
    
    .site-logo {
        max-height: 40px;
    }
    
    .site-title a {
        font-size: 24px;
    }

    .header-actions a {
        margin-left: 15px;
        font-size: 12px;
    }

    /* Hero Slider */
    .hero-slider-container {
        height: 400px;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 11px;
    }

    /* Intro Section */
    .intro-section {
        padding: 40px 15px;
    }
    
    .intro-text {
        font-size: 12px;
        line-height: 1.7;
    }

    /* Highlights */
    .service-highlights {
        padding: 30px 0 50px;
    }
    
    .highlight-item {
        width: 100%;
        margin-bottom: 40px;
    }
    
    .highlight-icon {
        font-size: 32px;
    }

    /* Products */
    .product-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 12px;
    }
    
    .section-subtitle {
        font-size: 12px;
        margin-bottom: 30px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-name {
        font-size: 11px;
    }
    
    .product-price {
        font-size: 10px;
    }

    /* Banners */
    .personal-scent-banner {
        height: 300px;
        padding: 30px 15px;
    }
    
    .banner-title {
        font-size: 18px;
    }
    
    .banner-text {
        font-size: 13px;
    }
    
    .marketing-banner {
        padding: 60px 15px;
    }
    
    .marketing-title {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .marketing-text {
        font-size: 13px;
    }

    /* Smart Diffuser */
    .smart-diffuser-section {
        padding: 50px 15px;
    }
    
    .app-image {
        max-width: 80%;
    }

    /* Blog Section */
    .blog-section {
        padding: 50px 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-title {
        font-size: 13px;
        min-height: auto;
    }
    
    .blog-desc {
        font-size: 12px;
        min-height: auto;
    }

    /* Category Grid */
    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* WooCommerce */
    .wc-archive-container {
        padding: 30px 15px 60px;
    }
    
    .archive-header h1,
    .woocommerce-products-header__title {
        font-size: 24px !important;
    }
    
    .woocommerce ul.products[class*=columns-] li.product {
        width: 48% !important;
        margin-right: 4% !important;
    }
    
    .woocommerce ul.products[class*=columns-] li.product:nth-child(2n) {
        margin-right: 0 !important;
    }

    /* Single Product */
    .single-product-container {
        flex-direction: column;
    }
    
    .product-gallery,
    .product-summary {
        width: 100%;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-tabs .tab-link {
        padding: 10px 15px;
        font-size: 11px;
    }

    /* Footer */
    .site-footer .footer-main {
        padding: 40px 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-title {
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 15px;
    }
}

/* =========================================
   SMALL MOBILE STYLES (max-width: 480px)
   ========================================= */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    /* Hero */
    .hero-slider-container {
        height: 350px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 13px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }

    /* Products */
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .product-item img {
        margin-bottom: 10px;
    }

    /* WooCommerce Products */
    .woocommerce ul.products[class*=columns-] li.product {
        width: 100% !important;
        margin-right: 0 !important;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 10px;
    }
    
    .btn-small {
        padding: 6px 15px;
        font-size: 9px;
    }

    /* Header Actions */
    .header-actions {
        gap: 10px;
    }
    
    .header-actions a {
        margin-left: 10px;
    }
    
    .cart-link strong {
        font-size: 11px;
    }
}

/* =========================================
   WOOCOMMERCE BUTTON GREEN OVERRIDE
   ========================================= */

/* All WooCommerce Buttons - Green Color */
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce .cart .button,
.woocommerce .cart input.button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
button.single_add_to_cart_button,
.single_add_to_cart_button,
.woocommerce div.product form.cart .button,
.woocommerce div.product form.cart button.button,
.woocommerce div.product form.cart input.button,
.woocommerce .product .single_add_to_cart_button,
.woocommerce-page .product .single_add_to_cart_button,
.wc-block-components-button,
.wp-block-button__link,
.wc-block-cart__submit-button,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button {
    background-color: #1e5245 !important;
    background: #1e5245 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Hover State */
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce .cart .button:hover,
.woocommerce .cart input.button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce #payment #place_order:hover,
.woocommerce-page #payment #place_order:hover,
button.single_add_to_cart_button:hover,
.single_add_to_cart_button:hover,
.woocommerce div.product form.cart .button:hover,
.woocommerce div.product form.cart button.button:hover,
.woocommerce div.product form.cart input.button:hover,
.woocommerce .product .single_add_to_cart_button:hover,
.woocommerce-page .product .single_add_to_cart_button:hover,
.wc-block-components-button:hover,
.wp-block-button__link:hover,
.wc-block-cart__submit-button:hover,
.wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button:hover {
    background-color: #163d33 !important;
    background: #163d33 !important;
    color: #fff !important;
}

/* Focus State */
.woocommerce a.button:focus,
.woocommerce button.button:focus,
.woocommerce input.button:focus,
.single_add_to_cart_button:focus {
    background-color: #163d33 !important;
    color: #fff !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Disabled State */
.woocommerce a.button.disabled,
.woocommerce a.button:disabled,
.woocommerce button.button.disabled,
.woocommerce button.button:disabled,
.woocommerce input.button.disabled,
.woocommerce input.button:disabled {
    background-color: #1e5245 !important;
    color: #fff !important;
    opacity: 0.6;
}

/* Archive/Shop Page Add to Cart */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce-loop-product__link + a.button {
    background-color: #1e5245 !important;
    color: #fff !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
    background-color: #163d33 !important;
    color: #fff !important;
}