/*
Theme Name: Pálma Már Ma Premium Theme
Theme URI: https://palmamarma.hu/
Author: Antigravity AI
Description: Egyedi, prémium dizájn a Pálma Már Ma mediterrán kertészet számára, WooCommerce támogatással.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: palmamarma
*/

/* ==========================================================================
   PÁLMA MÁR MA - Premium CSS Design System
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --color-primary: #1B3A2B;        /* Deep Forest Green */
    --color-primary-light: #2C5E45;  /* Lighter Forest Green */
    --color-primary-dark: #0F2118;   /* Very Deep Green / Charcoal */
    --color-secondary: #E6DFD3;      /* Champagne Sand */
    --color-secondary-light: #FAF9F6;/* Soft Cream White */
    --color-accent: #D27D2D;         /* Warm Terracotta */
    --color-accent-light: #E07A5F;   /* Soft Sunset Terracotta */
    --color-text-dark: #2B2D2F;      /* Charcoal Text */
    --color-text-light: #FAF9F6;     /* White/Cream Text */
    --color-text-muted: #6B7280;     /* Muted Grey Text */
    --color-border: #E5E7EB;         /* Light Grey Border */
    
    /* Fonts */
    --font-heading: 'Cardo', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Layout */
    --max-width: 1280px;
    --header-height: 80px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-premium: 0 20px 40px rgba(15, 33, 24, 0.08);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.2;
}

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

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    background: none;
    transition: var(--transition-smooth);
}

/* Utilities */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-accent);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary-light);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease-out;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary:hover {
    color: var(--color-text-light);
    box-shadow: 0 4px 12px rgba(27, 58, 43, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-light);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-text-light);
}

.btn-accent:hover {
    background-color: var(--color-accent-light);
    box-shadow: 0 4px 12px rgba(210, 125, 45, 0.2);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale {
    background-color: #EF4444;
    color: white;
}

.badge-new {
    background-color: var(--color-primary);
    color: white;
}

.badge-hardy {
    background-color: #10B981;
    color: white;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.header-wrapper {
    background-color: rgba(250, 249, 246, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.header-wrapper.scrolled {
    height: 70px;
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
}

.header-wrapper.scrolled .logo-text {
    color: var(--color-text-light);
}

.header-wrapper.scrolled .logo-span {
    color: var(--color-accent);
}

.header-wrapper.scrolled nav a {
    color: var(--color-text-light);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo-icon {
    width: 32px;
    height: 32px;
    stroke: var(--color-primary);
    fill: none;
    transition: var(--transition-smooth);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.header-wrapper.scrolled .logo-icon {
    stroke: var(--color-secondary);
}

.header-wrapper.scrolled .logo-img {
    height: 32px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.logo-span {
    color: var(--color-accent);
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    color: var(--color-primary);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

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

nav a:hover::after,
nav li.active a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-action-btn {
    position: relative;
    color: inherit;
}

.header-action-btn svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: var(--transition-smooth);
}

.header-action-btn:hover svg {
    color: var(--color-accent);
    transform: scale(1.1);
}

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

.menu-toggle {
    display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    height: 90vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-text-light);
    margin-top: var(--header-height);
    background-color: var(--color-primary-dark);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 33, 24, 0.8) 0%, rgba(15, 33, 24, 0.4) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 650px;
}

.hero-tagline {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: inline-block;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: rgba(250, 249, 246, 0.85);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* ==========================================================================
   Featured Categories
   ========================================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 33, 24, 0.85) 0%, rgba(15, 33, 24, 0.2) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

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

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(15, 33, 24, 0.95) 0%, rgba(15, 33, 24, 0.3) 100%);
}

.category-card h3 {
    color: var(--color-text-light);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.category-link {
    color: var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.3s ease;
}

.category-card:hover .category-link svg {
    transform: translateX(5px);
}

/* ==========================================================================
   Product Grid (WooCommerce Style)
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(27, 58, 43, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 33, 24, 0.12);
}

.product-image-container {
    height: 320px;
    position: relative;
    overflow: hidden;
    background-color: #f3f4f6;
}

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

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

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(255,255,255,0.95), rgba(255,255,255,0));
    transition: var(--transition-smooth);
    z-index: 5;
}

.product-card:hover .product-actions {
    bottom: 0;
}

.product-action-btn {
    background-color: var(--color-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.product-action-btn:hover {
    background-color: var(--color-accent);
    transform: scale(1.1);
}

.product-action-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-cat {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    margin-bottom: 0.25rem;
}

.product-title {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-title a:hover {
    color: var(--color-accent);
}

.product-rating {
    display: flex;
    justify-content: center;
    gap: 2px;
    color: #FBBF24;
    margin-bottom: 0.5rem;
}

.product-rating svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-accent);
}

.product-price del {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-right: 0.5rem;
    font-weight: 400;
}

/* ==========================================================================
   About Us section (Rólunk)
   ========================================================================== */
.about-section {
    background-color: #FAF9F6;
    border-top: 1px solid rgba(27, 58, 43, 0.05);
    border-bottom: 1px solid rgba(27, 58, 43, 0.05);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--color-accent);
    border-left: 4px solid var(--color-accent);
    z-index: -1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 4px solid var(--color-primary);
    border-right: 4px solid var(--color-primary);
    z-index: -1;
}

.about-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

/* Why choose us */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-us-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
    text-align: center;
    border-bottom: 4px solid var(--color-primary);
    transition: var(--transition-smooth);
}

.why-us-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--color-accent);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(27, 58, 43, 0.08);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: var(--transition-smooth);
}

.why-us-card:hover .why-us-icon {
    background-color: var(--color-accent);
    color: white;
}

.why-us-icon svg {
    width: 30px;
    height: 30px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.why-us-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.why-us-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* ==========================================================================
   Shop Page Structure
   ========================================================================== */
.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

/* Filters Sidebar */
.filter-sidebar {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
}

.filter-widget {
    margin-bottom: 2.5rem;
}

.filter-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-secondary);
}

.filter-list li {
    margin-bottom: 0.75rem;
}

.filter-list a {
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-text-dark);
}

.filter-list a:hover,
.filter-list li.active a {
    color: var(--color-accent);
    padding-left: 5px;
}

.filter-list .count {
    background-color: rgba(27, 58, 43, 0.05);
    padding: 0.1rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 50px;
    color: var(--color-text-muted);
}

.filter-checkbox-list li {
    margin-bottom: 0.75rem;
}

.filter-checkbox-list label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.filter-checkbox-list input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
}

.price-range-inputs {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.price-range-inputs input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Shop Controls */
.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    background-color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.shop-sort select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: white;
}

/* ==========================================================================
   Product Details Page
   ========================================================================== */
.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-main {
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumb-item {
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.thumb-item:hover, .thumb-item.active {
    opacity: 1;
    border-color: var(--color-accent);
}

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

.product-summary h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.product-meta-top {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.product-meta-top .sku {
    color: var(--color-text-muted);
}

.product-price-detail {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.product-short-desc {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2.5rem;
}

.product-specs-table td {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border);
}

.product-specs-table td:first-child {
    font-weight: 600;
    color: var(--color-primary);
    width: 40%;
}

.product-add-to-cart {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: white;
}

.quantity-selector button {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.quantity-selector input {
    width: 50px;
    height: 45px;
    text-align: center;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
}

/* Accordion for Care Advice */
.accordion {
    margin-top: 3rem;
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    font-weight: 600;
    text-align: left;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-accent);
}

.accordion-item.open .accordion-header::after {
    content: '-';
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    color: var(--color-text-muted);
}

.accordion-item.open .accordion-content {
    max-height: 1000px;
    padding-bottom: 1.5rem;
    transition: max-height 1s cubic-bezier(1, 0, 1, 0);
}

/* ==========================================================================
   Shopping Cart Drawer (Kosár)
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 33, 24, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100%;
    background-color: white;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-drawer-overlay.open .cart-drawer {
    right: 0;
}

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

.cart-header h2 {
    font-size: 1.8rem;
}

.close-cart-btn {
    font-size: 1.5rem;
    color: var(--color-text-dark);
}

.close-cart-btn:hover {
    color: var(--color-accent);
}

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

.empty-cart-message {
    text-align: center;
    color: var(--color-text-muted);
    margin-top: 4rem;
}

.empty-cart-message svg {
    width: 64px;
    height: 64px;
    stroke: var(--color-border);
    stroke-width: 1.5;
    fill: none;
    margin: 0 auto 1.5rem auto;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.cart-item-img {
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
}

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

.cart-item-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
}

.cart-item-price {
    color: var(--color-accent);
    font-weight: 500;
    margin-top: 0.25rem;
}

.cart-item-remove {
    color: var(--color-text-muted);
}

.cart-item-remove:hover {
    color: #EF4444;
}

.cart-item-remove svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
}

.cart-footer {
    padding: 2rem;
    border-top: 1px solid var(--color-border);
    background-color: var(--color-secondary-light);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.cart-subtotal .price {
    color: var(--color-accent);
}

.cart-footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-footer-buttons .btn {
    width: 100%;
}

/* ==========================================================================
   Contact Section & Page
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info-container {
    background-color: var(--color-primary);
    color: white;
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.contact-info-container h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.contact-info-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrapper svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.contact-text-wrapper h4 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.contact-text-wrapper p, .contact-text-wrapper a {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.contact-text-wrapper a:hover {
    color: var(--color-accent);
}

.social-links-menu {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.social-link-btn {
    background-color: rgba(255,255,255,0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link-btn:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.social-link-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Contact Form */
.contact-form-container {
    background-color: white;
    padding: 3.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    background-color: var(--color-secondary-light);
    color: var(--color-text-dark);
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(27, 58, 43, 0.08);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-feedback {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    display: none;
}

.form-feedback.success {
    display: block;
    background-color: rgba(16, 185, 129, 0.1);
    color: #065F46;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

.footer-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
}

.opening-hours .day {
    font-weight: 500;
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .filter-sidebar {
        display: none; /* In prototype, hide on mobile for simplicity or toggle */
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .menu-toggle {
        display: block;
        color: inherit;
    }
    
    .menu-toggle svg {
        width: 28px;
        height: 28px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
    }
    
    nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: white;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        z-index: 99;
        transition: var(--transition-smooth);
        padding: 2rem;
    }
    
    nav.open {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav a {
        color: var(--color-primary);
        font-size: 1.2rem;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .product-details-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-main {
        height: 350px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
