/*
Theme Name: Senseven Aromas
Theme URI: https://senseven.com.br
Author: Senseven Aromas
Author URI: https://senseven.com.br
Description: Tema personalizado para Senseven Aromas - Velas aromáticas e experiências sensoriais. Design elegante com menu lateral, carrossel 3D e grid masonry.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: senseven-aromas
Tags: custom-menu, custom-logo, featured-images, theme-options, translation-ready

Senseven Aromas WordPress Theme
Transformando ambientes através de aromas únicos e experiências sensoriais memoráveis.
*/

/* ========================================
   SENSEVEN AROMAS - WORDPRESS THEME
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #A8B5A2;
    --color-gold: #d3b973;
    --color-dark: #272727;
    --color-light: #fafafa;
    --color-white: #FFFFFF;
    --color-gray: #666666;
    --color-border: #e5e5e5;
    
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Lato', sans-serif;
    
    --sidebar-width: 250px;
    --sidebar-collapsed: 70px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    --shadow-light: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.15);
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--color-white);
    color: var(--color-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

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

/* ========================================
   SIDEBAR - LIQUID GLASS EFFECT
   ======================================== */

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid rgba(229, 229, 229, 0.5);
    overflow-y: auto;
    overflow-x: hidden;
}

/* Liquid Glass Effect when collapsed */
.sidebar.collapsed {
    width: var(--sidebar-collapsed);
    padding: 2rem 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.sidebar.collapsed:hover {
    width: var(--sidebar-width);
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Logo Container */
.logo-container {
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--color-gold);
    transition: var(--transition-slow);
}

.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* Logo Icon */
.logo-icon {
    width: 50px;
    height: 60px;
    transition: var(--transition-slow);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: 2px;
    transition: var(--transition-slow);
    white-space: nowrap;
    overflow: hidden;
    opacity: 1;
    max-width: 200px;
}

.logo-text-sub {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--color-gold);
    transition: var(--transition-slow);
    white-space: nowrap;
    overflow: hidden;
    opacity: 1;
    max-width: 200px;
}

/* Collapsed logo state */
.sidebar.collapsed .logo-text,
.sidebar.collapsed .logo-text-sub {
    opacity: 0;
    max-width: 0;
    margin: 0;
}

.sidebar.collapsed:hover .logo-text,
.sidebar.collapsed:hover .logo-text-sub {
    opacity: 1;
    max-width: 200px;
}

.sidebar.collapsed .logo-icon {
    width: 40px;
    height: 48px;
}

.sidebar.collapsed:hover .logo-icon {
    width: 50px;
    height: 60px;
}

/* Navigation */
.sidebar nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar nav a,
.sidebar nav .menu-item a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sidebar nav a::before,
.sidebar nav .menu-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, var(--color-gold), rgba(211, 185, 115, 0.6));
    border-radius: 0 3px 3px 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 8px rgba(211, 185, 115, 0);
}

.sidebar nav a:hover::before,
.sidebar nav a.active::before,
.sidebar nav .menu-item a:hover::before,
.sidebar nav .current-menu-item a::before {
    height: 70%;
    box-shadow: 0 0 12px rgba(211, 185, 115, 0.4);
}

.sidebar nav a:hover,
.sidebar nav a.active,
.sidebar nav .menu-item a:hover,
.sidebar nav .current-menu-item a {
    background: rgba(168, 181, 162, 0.15);
    color: var(--color-gold);
    border-radius: 8px;
    box-shadow: inset 0 0 12px rgba(211, 185, 115, 0.1);
}

/* Navigation Icons */
.nav-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.6;
    transition: var(--transition);
}

.nav-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sidebar nav a:hover .nav-icon,
.sidebar nav a.active .nav-icon {
    opacity: 1;
}

.nav-text {
    transition: var(--transition-slow);
    white-space: nowrap;
    overflow: hidden;
    opacity: 1;
    max-width: 150px;
}

/* Collapsed nav state */
.sidebar.collapsed .nav-text {
    opacity: 0;
    max-width: 0;
}

.sidebar.collapsed:hover .nav-text {
    opacity: 1;
    max-width: 150px;
}

.sidebar.collapsed nav a {
    justify-content: center;
    padding: 0.9rem 0.5rem;
    gap: 0;
}

.sidebar.collapsed:hover nav a {
    justify-content: flex-start;
    padding: 0.9rem 1rem;
    gap: 0.75rem;
}

/* ========================================
   MAIN CONTENT
   ======================================== */

main,
.site-main {
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: margin-left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body.carousel-active main,
body.carousel-active .site-main {
    margin-left: var(--sidebar-collapsed);
}

/* ========================================
   CAROUSEL - 16:6 ASPECT RATIO WITH SMOKE EFFECT
   ======================================== */

.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    background: var(--color-light);
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner 3D Effect */
.banner-3d {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.banner-3d .banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-3d .sensa-overlay {
    position: absolute;
    bottom: -5%;
    left: 5%;
    height: 95%;
    width: auto;
    z-index: 10;
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.25));
    animation: sensaFloat 3.5s ease-in-out infinite;
    transform-origin: bottom center;
    will-change: transform;
}

.banner-3d .sensa-natal {
    left: 3%;
    height: 100%;
    bottom: -8%;
}

.banner-3d .sensa-anonovo {
    left: 5%;
    height: 90%;
    bottom: -5%;
}

.banner-3d .sensa-praia {
    left: 8%;
    height: 85%;
    bottom: -3%;
}

@keyframes sensaFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.01); }
}

.carousel-slide:hover .sensa-overlay {
    transform: scale(1.03) translateY(-8px);
    filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Smoke Effect Border */
.smoke-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.smoke-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, 
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0.75) 15%,
        rgba(255,255,255,0.45) 40%,
        rgba(255,255,255,0.15) 70%,
        transparent 100%
    );
    filter: blur(5px);
    animation: smokeFloatH 12s ease-in-out infinite;
}

.smoke-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, 
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0.75) 15%,
        rgba(255,255,255,0.45) 40%,
        rgba(255,255,255,0.15) 70%,
        transparent 100%
    );
    filter: blur(5px);
    animation: smokeFloatH 12s ease-in-out infinite reverse;
}

.smoke-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to right, 
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.6) 35%,
        rgba(255,255,255,0.2) 70%,
        transparent 100%
    );
    filter: blur(4px);
    animation: smokeFloatV 14s ease-in-out infinite;
}

.smoke-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100px;
    background: linear-gradient(to left, 
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.6) 35%,
        rgba(255,255,255,0.2) 70%,
        transparent 100%
    );
    filter: blur(4px);
    animation: smokeFloatV 14s ease-in-out infinite reverse;
}

@keyframes smokeFloatH {
    0%, 100% { transform: translateX(0) scaleY(1); opacity: 0.75; }
    25% { transform: translateX(8px) scaleY(1.05); opacity: 0.85; }
    50% { transform: translateX(0) scaleY(1.1); opacity: 0.9; }
    75% { transform: translateX(-8px) scaleY(1.05); opacity: 0.85; }
}

@keyframes smokeFloatV {
    0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.75; }
    25% { transform: translateY(8px) scaleX(1.05); opacity: 0.85; }
    50% { transform: translateY(10px) scaleX(1.1); opacity: 0.9; }
    75% { transform: translateY(8px) scaleX(1.05); opacity: 0.85; }
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255,255,255,0.6);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.carousel-dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(211, 185, 115, 0.4);
}

.carousel-dot:hover {
    background: rgba(211, 185, 115, 0.8);
    border-color: var(--color-gold);
    transform: scale(1.25);
}

/* ========================================
   SECTION INTRO
   ======================================== */

.section-intro {
    padding: 4rem 4rem 3rem;
    text-align: center;
    background: var(--color-white);
}

.section-intro h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.section-intro h2 span {
    color: var(--color-gold);
}

.section-intro p {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-divider {
    width: 80px;
    height: 2px;
    background: var(--color-gold);
    margin: 1.5rem auto 0;
}

/* ========================================
   CATEGORIES GRID (HOME)
   ======================================== */

.categories-section {
    padding: 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.category-card:nth-child(3n+2) {
    grid-row: span 2;
    aspect-ratio: auto;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(39, 39, 39, 0.85) 0%, rgba(39, 39, 39, 0.4) 50%, transparent 100%);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.category-card:hover .category-card-overlay {
    opacity: 1;
}

.category-card-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.category-card:hover .category-card-title {
    transform: translateY(0);
}

.category-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(211, 185, 115, 0);
}

.category-card:hover .category-card-btn {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 6px 20px rgba(211, 185, 115, 0.4);
}

.category-card-btn:hover {
    background: var(--color-dark);
}

/* ========================================
   PRODUCTS GRID
   ======================================== */

.products-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 2rem 4rem;
}

.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-light);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-6px);
}

.product-item-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-item:hover .product-item-image img {
    transform: scale(1.05);
}

.product-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(39, 39, 39, 0.95) 0%, rgba(39, 39, 39, 0.5) 60%, transparent 100%);
    backdrop-filter: blur(2px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-item:hover .product-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-item-name {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.product-item-price {
    font-size: 1.2rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-item-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(211, 185, 115, 0);
}

.product-item-btn:hover {
    background: var(--color-dark);
    box-shadow: 0 6px 16px rgba(39, 39, 39, 0.3);
}

/* Favorite Button */
.product-favorite {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5;
    opacity: 0;
}

.product-item:hover .product-favorite {
    opacity: 1;
}

.product-favorite svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gray);
    fill: none;
    stroke-width: 2;
    transition: var(--transition);
}

.product-favorite:hover svg,
.product-favorite.active svg {
    stroke: #e74c3c;
    fill: #e74c3c;
}

/* ========================================
   CART SIDEBAR
   ======================================== */

.cart-button {
    position: fixed;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

body.home-page .cart-button {
    display: none;
}

.cart-button:hover {
    transform: scale(1.1);
}

.cart-button svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-dark);
    stroke-width: 1.5;
    fill: none;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: var(--color-white);
    z-index: 1001;
    box-shadow: var(--shadow-heavy);
    transition: right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(1px);
}

.cart-sidebar.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(2px);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-dark);
}

.cart-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-close:hover {
    background: var(--color-light);
}

.cart-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-dark);
    stroke-width: 2;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--color-gold);
    font-weight: 700;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-item-quantity button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.cart-item-quantity button:hover {
    background: var(--color-gold);
    color: var(--color-white);
    border-color: var(--color-gold);
    transform: scale(1.1);
}

.cart-item-quantity span {
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}

.cart-item-remove:hover {
    opacity: 1;
    color: #e74c3c;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cart-total span:last-child {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--color-gold);
    font-weight: 700;
}

.cart-checkout {
    width: 100%;
    padding: 1rem;
    background: var(--color-gold);
    color: var(--color-white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 12px rgba(211, 185, 115, 0.3);
    cursor: pointer;
}

.cart-checkout:hover {
    background: var(--color-dark);
    box-shadow: 0 6px 20px rgba(39, 39, 39, 0.4);
    transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */

.footer,
.site-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 4rem;
}

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

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-gold);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--color-gold);
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social-icons a:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.footer-social-icons svg {
    width: 18px;
    height: 18px;
    fill: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social-icons a:hover svg {
    fill: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ========================================
   MOBILE MENU TOGGLE
   ======================================== */

.menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    width: 45px;
    height: 45px;
    background: var(--color-white);
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 1001;
    box-shadow: var(--shadow-medium);
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   PAGE TEMPLATES
   ======================================== */

.page-header {
    padding: 4rem;
    background: linear-gradient(135deg, var(--color-light) 0%, var(--color-white) 100%);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--color-gray);
    font-size: 1rem;
}

.page-content {
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar.collapsed {
        width: var(--sidebar-width);
        transform: translateX(-100%);
    }

    main,
    .site-main {
        margin-left: 0;
    }

    body.carousel-active main,
    body.carousel-active .site-main {
        margin-left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .cart-button {
        display: flex !important;
    }

    body.home-page .cart-button {
        display: flex !important;
    }

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

    .products-page-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
        gap: 1.25rem;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .banner-3d .sensa-overlay {
        height: 80%;
        left: 3%;
        bottom: -3%;
    }

    .section-intro {
        padding: 3rem 2rem 2rem;
    }

    .section-intro h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        aspect-ratio: 16/9 !important;
        grid-row: span 1 !important;
    }

    .category-card-overlay {
        padding: 1.5rem;
    }

    .products-page-grid {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .carousel-container {
        aspect-ratio: 16/9;
    }

    .footer,
    .site-footer {
        padding: 2rem;
    }

    .section-intro {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    .section-intro h2 {
        font-size: 1.8rem;
    }

    .section-intro p {
        font-size: 1rem;
    }

    .banner-3d .sensa-overlay {
        height: 70%;
        left: 2%;
        bottom: -2%;
    }

    .cart-sidebar {
        width: 100%;
    }

    .product-item-image {
        aspect-ratio: 1;
    }
}

@media (max-width: 480px) {
    .banner-3d .sensa-overlay {
        height: 60%;
        left: 1%;
        bottom: 0;
    }

    .section-intro {
        padding: 2rem 1rem 1rem;
    }

    .section-intro h2 {
        font-size: 1.5rem;
    }

    .section-intro p {
        font-size: 0.95rem;
    }

    .category-card-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .product-item-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
    }

    .carousel-dots {
        gap: 8px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.text-dark { color: var(--color-dark); }
.font-primary { font-family: var(--font-primary); }

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.section-title span {
    color: var(--color-gold);
}

/* WordPress Specific */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
