/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand "Vyrobeno v Ráji" */
    --primary:       #9AA8F3;
    --primary-dark:  #7B8AD9;
    --pink:          #F3A9C8;
    --pink-dark:     #D88AAE;
    --ink:           #172120;
    --bg:            #FAFAF7;
    --surface:       #FFFFFF;
    --muted:         #A9A9A9;
    --danger:        #C62828;

    /* Zpětná kompatibilita s aliasy z původní šablony — staré "accent" hrálo roli primární CTA,
       proto ho mapujeme na novou primární modrou. "Brown" byl text, jde do --ink. */
    --accent:      var(--primary);
    --accent-dark: var(--primary-dark);
    --brown: var(--ink);
    --beige: var(--bg);
    --cream: var(--surface);
    --gray:  var(--muted);
    --white: var(--surface);
    --red:   var(--danger);

    --font-heading:    'Cormorant Garamond', 'Georgia', serif;
    --font-body:       'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-decorative: 'Cormorant Garamond', 'Georgia', serif;

    --shadow: 0 2px 8px rgba(23,33,32,0.08);
    --shadow-lg: 0 6px 24px rgba(23,33,32,0.12);
    --radius: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--brown);
    background-color: var(--beige);
    line-height: 1.6;
    font-size: 16px;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--brown);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1em; }

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

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

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

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

.btn-danger {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-danger:hover {
    opacity: 0.9;
    color: var(--white);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* === HEADER === */
.site-header {
    background: var(--cream);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header > .container {
    max-width: 100%;
    padding: 0 30px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    font-family: var(--font-decorative);
    font-size: 1.3rem;
    color: var(--brown);
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: var(--brown);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

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

.main-nav a:hover::after {
    width: 100%;
}

.cart-link {
    position: relative;
}

.cart-count {
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--brown);
    border-radius: 2px;
    transition: all var(--transition);
}

/* === HERO === */
.hero {
    background: var(--cream);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.3em;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero .btn {
    margin-top: 10px;
}

/* === HERO SLIDER === */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-slide-overlay .container {
    max-width: 800px;
}

.hero-slide-overlay h1 {
    color: #fff;
    font-size: 3.2rem;
    margin-bottom: 0.4em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-slide-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 30px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-slide-overlay .btn {
    margin-top: 10px;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(0,0,0,0.6);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}

.hero-dot.active,
.hero-dot:hover {
    background: #fff;
}

/* Admin slider styles */
.admin-slider-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.admin-slider-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.admin-slider-card-image {
    flex: 0 0 280px;
    position: relative;
    min-height: 160px;
}

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

.admin-slider-card-drag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    font-size: 14px;
}

.admin-slider-card-form {
    flex: 1;
    padding: 15px;
    position: relative;
}

.admin-slider-card-form .form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.admin-slider-card-form .form-group {
    flex: 1;
}

.admin-slider-card-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #555;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 60vh;
    }

    .hero-slide-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-slide-overlay p {
        font-size: 1rem;
    }

    .hero-prev,
    .hero-next {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .hero-prev { left: 10px; }
    .hero-next { right: 10px; }

    .hero-dots { bottom: 15px; }
    .hero-dot { width: 10px; height: 10px; }

    .admin-slider-card {
        flex-direction: column;
    }

    .admin-slider-card-image {
        flex: 0 0 auto;
        height: 180px;
    }

    .admin-slider-card-form .form-row {
        flex-direction: column;
        gap: 8px;
    }
}

/* === SECTIONS === */
.section {
    padding: 60px 0;
}

.section-alt {
    background: var(--cream);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

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

/* === PRODUCT GRID === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: var(--cream);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gray);
}

.product-card-body {
    padding: 20px;
    text-align: center;
}

.product-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-card-body h3 a {
    color: var(--brown);
}

.product-card-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-out {
    background: var(--red);
    color: var(--white);
}

/* === PRODUCT DETAIL === */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream);
    margin-bottom: 15px;
}

.product-gallery-main img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
}

.product-gallery-thumbs img.active,
.product-gallery-thumbs img:hover {
    border-color: var(--accent);
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.product-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-specs {
    margin-bottom: 30px;
}

.product-specs h3 {
    margin-bottom: 15px;
}

.product-specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs td {
    padding: 10px 15px;
    border-bottom: 1px solid var(--beige);
}

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

.add-to-cart-form {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray);
    border-radius: var(--radius);
    overflow: hidden;
}

.quantity-input button {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--beige);
    font-size: 1.2rem;
    cursor: pointer;
    transition: background var(--transition);
}

.quantity-input button:hover {
    background: var(--gray);
    color: var(--white);
}

.quantity-input input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 700;
}

/* === GALLERY === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

a.gallery-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.gallery-item-caption {
    font-size: 0.85rem;
    color: var(--brown);
    text-align: center;
    padding: 6px 4px 0;
    margin: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 20px;
}

.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    max-height: 90vh;
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 1rem;
    max-width: 80%;
    margin: 0;
}

/* Admin gallery caption styles moved to admin.css */

/* === ABOUT SECTION === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* === NEWS === */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.news-card:hover {
    transform: translateY(-3px);
}

a.news-card-image {
    display: block;
    text-decoration: none;
}

.news-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--cream);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-body {
    padding: 20px;
}

.news-card-date {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.news-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.news-card-body h3 a {
    color: var(--brown);
}

.news-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 30px;
    max-height: 400px;
}

.news-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === CART === */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-table th {
    background: var(--brown);
    color: var(--beige);
    padding: 15px;
    text-align: left;
    font-family: var(--font-heading);
}

.cart-table td {
    padding: 15px;
    border-bottom: 1px solid var(--beige);
    vertical-align: middle;
}

.cart-table .cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-table .cart-product img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-total {
    text-align: right;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 0;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* === FORMS === */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--brown);
    background: var(--white);
    transition: border-color var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

.form-error {
    color: var(--red);
    font-size: 0.85rem;
    margin-top: 4px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

select.form-control {
    cursor: pointer;
}

/* === CHECKOUT === */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.checkout-summary {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.checkout-summary h3 {
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--beige);
}

/* === CONFIRMATION === */
.confirmation-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.confirmation-box .qr-code {
    max-width: 200px;
    margin: 20px auto;
}

/* === FLASH MESSAGES === */
.flash-message {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin: 15px auto;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.flash-success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.flash-error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

.flash-info {
    background: #e3f2fd;
    color: #1565c0;
    border: 1px solid #90caf9;
}

.flash-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: inherit;
    padding: 0 5px;
}

/* === SUPPORT / FAQ === */
.faq-content h3 {
    margin-top: 20px;
    color: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 30px 0;
}

.pagination a, .pagination span {
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pagination a {
    background: var(--white);
    color: var(--brown);
    border: 1px solid var(--gray);
}

.pagination a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.pagination .active {
    background: var(--accent);
    color: var(--white);
    border: 1px solid var(--accent);
}

/* === CATEGORY FILTER === */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.category-filter a {
    padding: 8px 20px;
    border-radius: 20px;
    background: var(--white);
    color: var(--brown);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--gray);
    transition: all var(--transition);
}

.category-filter a:hover,
.category-filter a.active {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.stock-filter {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 20px;
    background: var(--white);
    color: var(--brown);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--gray);
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
}

.stock-filter:hover {
    border-color: var(--accent);
}

.stock-filter:has(input:checked) {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.stock-filter input[type="checkbox"] {
    accent-color: var(--white);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* === FOOTER === */
.site-footer {
    background: var(--brown);
    color: var(--beige);
    padding: 50px 0 20px;
    margin-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.site-footer h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.site-footer ul {
    list-style: none;
}

.site-footer ul li {
    margin-bottom: 8px;
}

.site-footer a {
    color: var(--beige);
    opacity: 0.8;
}

.site-footer a:hover {
    opacity: 1;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
}

.social-links a svg {
    transition: opacity 0.3s, transform 0.3s;
}

.social-links a:hover svg {
    opacity: 1;
    transform: scale(1.15);
}

.footer-bottom {
    border-top: 1px solid rgba(245,245,220,0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.empty-state p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* === PAGE CONTENT === */
.page-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    line-height: 1.8;
}

.page-content h3 {
    margin-top: 25px;
    color: var(--accent);
}

.page-content ul, .page-content ol {
    margin: 10px 0 15px 25px;
}

.page-content li {
    margin-bottom: 5px;
}

/* === FOOTER 4 COLUMNS === */
.footer-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* === COOKIE CONSENT === */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--brown);
    color: var(--beige);
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-consent a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-consent a:hover {
    color: var(--cream);
}

/* Shipping & Payment options */
.shipping-options,
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid #e0ddd8;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option:hover {
    border-color: var(--accent);
    background: var(--cream);
}

.radio-option input[type="radio"] {
    accent-color: var(--accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:checked ~ .radio-option-content strong {
    color: var(--accent);
}

.radio-option:has(input:checked) {
    border-color: var(--accent);
    background: var(--cream);
}

.radio-option-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.radio-option-content strong {
    font-size: 0.95rem;
}

.radio-option-content small {
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 2px;
}

.radio-option-price {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent);
    white-space: nowrap;
}

.shipping-extra-fields {
    padding: 15px;
    margin-bottom: 20px;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid #e0ddd8;
}

.checkout-item-extra {
    font-size: 0.9rem;
    color: var(--gray);
}

.checkout-total {
    border: none !important;
    font-size: 1.2rem;
    padding-top: 15px;
    margin-top: 5px;
    border-top: 2px solid var(--beige) !important;
}

.confirmation-details {
    display: flex;
    gap: 30px;
    text-align: left;
    margin: 15px 0;
}

.confirmation-detail h3 {
    margin-bottom: 8px;
}
