:root {
    --primary-color: #dc2626; /* Tailwind red-600 */
    --primary-hover: #b91c1c; /* Tailwind red-700 */
    --bg-color: #fafaf9; /* Tailwind stone-50 */
    --card-bg: #ffffff;
    --text-main: #1c1917; /* Tailwind stone-900 */
    --text-muted: #57534e; /* Tailwind stone-600 */
    --border-color: #e7e5e4; /* Tailwind stone-200 */
    --radius: 2px; /* Match rounded-sm from website */
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

.shop-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.shop-header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop-header h1 {
    font-size: 2rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.shop-header p {
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* Hero Banner */
.shop-hero {
    background: url('/images/hero.webp') center/cover no-repeat;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.55));
    padding: 5rem 2rem;
    text-align: center;
}

.shop-hero h1 {
    font-size: 2.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.shop-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Experience Cards */
.experience-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.experience-card {
    cursor: pointer;
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border-color);
    transition: all 0.2s;
    background: white;
}

.experience-card:hover {
    border-color: var(--text-muted);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.experience-card.active {
    border-color: var(--primary-color);
}

.experience-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.experience-info {
    padding: 0.75rem 1rem;
}

.experience-info h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.experience-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.experience-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

.subsection-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    /* Removed heavy shadow to match the clean aesthetic */
    box-shadow: 0 1px 2px rgba(0,0,0,0.05); 
}

.form-section {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2.5rem;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Warm section headings (no numbers, more inviting) */
.section-heading-warm {
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-size: 1.35rem !important;
    font-weight: 500 !important;
    color: var(--text-main);
}

.mt-3 {
    margin-top: 2.5rem;
}

/* Type Selector */
.type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.type-card {
    cursor: pointer;
    position: relative;
}

.type-card input {
    position: absolute;
    opacity: 0;
}

.type-card .card-content {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
    height: 100%;
    background: var(--bg-color);
}

.type-card input:checked + .card-content {
    border-color: var(--primary-color);
    background-color: #fef2f2;
}

.type-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.type-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Dynamic Sections */
.hidden {
    display: none !important;
}

.dynamic-section {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.preset-values {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.preset-btn {
    flex: 1;
    padding: 0.75rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s;
}

.preset-btn:hover {
    border-color: var(--text-muted);
}

.preset-btn.active {
    background: var(--text-main);
    color: white;
    border-color: var(--text-main);
}

.person-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.person-counter label {
    margin: 0;
    font-weight: 400;
    color: var(--text-muted);
}

.person-counter input {
    width: 80px;
    text-align: center;
    background: white;
}

.calc-hint {
    text-align: right;
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calc-hint strong {
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 600;
}

.section-hint {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Breakfast Calculator */
.calc-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}
.calc-link:hover {
    text-decoration: underline;
}

.calc-panel {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}

.calc-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}
.calc-result strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}
.btn-small {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    width: auto;
}

/* Shipping address toggle */
.delivery-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #fef3cd;
    border: 1px solid #ffc107;
    border-radius: var(--radius);
}

.shipping-toggle {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

.shipping-same-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-main);
    cursor: pointer;
    margin-bottom: 0;
}
.shipping-same-label input[type="checkbox"] {
    width: auto;
    accent-color: var(--primary-color);
}

.shipping-different-link {
    display: none;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}
.shipping-different-link:hover {
    text-decoration: underline;
}

.shipping-fields-panel {
    margin-top: 1rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

input[type="text"],
input[type="number"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: white;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
    background: white;
}

input::placeholder, textarea::placeholder {
    color: #a8a29e;
    font-weight: 300;
}

/* Checkout */
.checkout-section {
    padding: 2rem 0 0 0;
    text-align: center;
}

.total-display {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.total-display span:last-child {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-main);
}

.btn {
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
}

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

.btn-secondary {
    background-color: var(--text-main);
    color: white;
}

.secure-hint {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Success Screen */
.success-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

/* Design Selector */
.design-selector {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.design-card {
    cursor: pointer;
    position: relative;
}

.design-card input {
    position: absolute;
    opacity: 0;
}

.design-preview {
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 0.75rem;
    text-align: center;
    transition: all 0.2s;
    background: var(--bg-color);
}

.design-card input:checked + .design-preview {
    border-color: var(--primary-color);
    background: #fef2f2;
}

.design-thumb {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.design-accent { display: none; }

.design-thumb {
    position: relative;
    overflow: hidden;
}

.design-standard {
    background: linear-gradient(135deg, #fafaf9 0%, #e7e5e4 100%);
    border: 2px solid var(--primary-color);
}
.design-standard::after {
    content: 'H';
    position: absolute;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--primary-color);
    opacity: 0.2;
    bottom: 8px;
    right: 12px;
}

.design-geburtstag {
    background: linear-gradient(135deg, #fffbf0 0%, #fde68a 100%);
    border: 1px solid #fde68a;
}
.design-geburtstag::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, #dc2626 3px, transparent 3px),
        radial-gradient(circle at 75% 15%, #3b82f6 2.5px, transparent 2.5px),
        radial-gradient(circle at 85% 80%, #10b981 3px, transparent 3px),
        radial-gradient(circle at 30% 85%, #8b5cf6 2.5px, transparent 2.5px),
        radial-gradient(circle at 50% 50%, #f59e0b 2px, transparent 2px),
        radial-gradient(circle at 65% 35%, #ec4899 2px, transparent 2px);
    opacity: 0.5;
}

.design-weihnachten {
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
    border: 1px solid #fecaca;
}
.design-weihnachten::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Snowflake crosses */
        linear-gradient(0deg, #991b1b 1px, transparent 1px),
        linear-gradient(90deg, #991b1b 1px, transparent 1px),
        linear-gradient(45deg, #991b1b 1px, transparent 1px),
        linear-gradient(-45deg, #991b1b 1px, transparent 1px);
    background-size: 22px 22px;
    background-position: center;
    opacity: 0.08;
}
.design-weihnachten::after {
    content: '';
    position: absolute;
    bottom: 6px;
    right: 8px;
    width: 0; height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 18px solid #166534;
    opacity: 0.35;
}

.design-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-link {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.7rem;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.preview-link:hover {
    text-decoration: underline;
}

/* 3-column form row (Anrede + Vorname + Nachname) */
.form-row-3 {
    grid-template-columns: 120px 1fr 1fr;
}

/* Street + House Number row */
.form-row-street {
    grid-template-columns: 1fr 120px;
}

/* Order Summary */
.order-summary {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.summary-row span:last-child {
    font-weight: 500;
    color: var(--text-main);
}

/* Legal Checkboxes */
.legal-checkboxes {
    text-align: left;
    margin-bottom: 1.25rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-muted);
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.15rem;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Legal Links above button */
.legal-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-links a:hover {
    color: var(--primary-color);
}

/* Footer */
.shop-footer {
    margin-top: 3rem;
    padding: 2rem 1rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Legal Pages */
.legal-page h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.legal-page h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-page p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.legal-address {
    padding: 1rem 1.25rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-style: normal;
}

.widerruf-form-template {
    padding: 1.5rem;
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-top: 1rem;
}

.widerruf-form-template p {
    margin-bottom: 0.5rem;
}

/* New Design Thumbnails */
.design-valentinstag {
    background: linear-gradient(135deg, #fdf2f8 0%, #fbcfe8 100%);
    border: 1px solid #fbcfe8;
}
.design-valentinstag::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 30%, #ec4899 4px, transparent 4px),
        radial-gradient(circle at 70% 20%, #f9a8d4 3px, transparent 3px),
        radial-gradient(circle at 80% 75%, #ec4899 3.5px, transparent 3.5px),
        radial-gradient(circle at 35% 80%, #f9a8d4 3px, transparent 3px);
    opacity: 0.3;
    /* Hearts approximated as dots — CSS can't draw hearts easily */
}

.design-muttertag {
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
    border: 1px solid #e9d5ff;
}
.design-muttertag::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 22% 25%, #d8b4fe 5px, transparent 5px),
        radial-gradient(circle at 28% 22%, #d8b4fe 5px, transparent 5px),
        radial-gradient(circle at 25% 20%, #fbbf24 2.5px, transparent 2.5px),
        radial-gradient(circle at 78% 75%, #e9d5ff 5px, transparent 5px),
        radial-gradient(circle at 84% 72%, #e9d5ff 5px, transparent 5px),
        radial-gradient(circle at 81% 70%, #fcd34d 2.5px, transparent 2.5px);
    opacity: 0.5;
}

.design-hochzeit {
    background: linear-gradient(135deg, #fdfcf7 0%, #fde68a 100%);
    border: 2px solid #b8860b;
    box-shadow: inset 0 0 0 3px #fdfcf7, inset 0 0 0 4px rgba(184, 134, 11, 0.3);
}

.design-ostern {
    background: linear-gradient(135deg, #f0fdf4 0%, #bbf7d0 100%);
    border: 1px solid #bbf7d0;
}
.design-ostern::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Egg shapes approximated with ellipses */
        radial-gradient(ellipse 7px 10px at 25% 35%, #fde68a 100%, transparent 100%),
        radial-gradient(ellipse 6px 9px at 72% 70%, #ddd6fe 100%, transparent 100%),
        radial-gradient(ellipse 5px 8px at 75% 25%, #fecaca 100%, transparent 100%),
        radial-gradient(ellipse 6px 9px at 30% 75%, #bbf7d0 100%, transparent 100%);
    opacity: 0.5;
}

.design-danke {
    background: linear-gradient(135deg, #fefce8 0%, #fef08a 100%);
    border: 1px solid #fef08a;
}
.design-danke::before {
    content: '';
    position: absolute;
    inset: 0;
    /* 4-point stars via clip-path not possible with ::before, use radial dots */
    background:
        radial-gradient(circle at 20% 20%, #ca8a04 3px, transparent 3px),
        radial-gradient(circle at 80% 25%, #eab308 4px, transparent 4px),
        radial-gradient(circle at 75% 80%, #ca8a04 3.5px, transparent 3.5px),
        radial-gradient(circle at 25% 75%, #eab308 3px, transparent 3px),
        radial-gradient(circle at 50% 50%, #d4a017 2.5px, transparent 2.5px);
    opacity: 0.35;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 160px;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-color);
    background: var(--bg-color);
    font-size: 1.2rem;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:first-child {
    border-radius: var(--radius) 0 0 var(--radius);
}

.qty-btn:last-child {
    border-radius: 0 var(--radius) var(--radius) 0;
}

.qty-btn:hover {
    background: var(--text-main);
    color: white;
    border-color: var(--text-main);
}

.quantity-selector input {
    width: 60px;
    text-align: center;
    border-radius: 0;
    border-left: none;
    border-right: none;
    height: 44px;
    padding: 0;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Delivery Selector */
.delivery-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.delivery-card {
    cursor: pointer;
    position: relative;
}

.delivery-card input {
    position: absolute;
    opacity: 0;
}

.delivery-content {
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.25rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.2s;
    background: var(--bg-color);
    height: 100%;
}

.delivery-card input:checked + .delivery-content {
    border-color: var(--primary-color);
    background: #fef2f2;
}

.delivery-card:hover .delivery-content {
    border-color: var(--text-muted);
}

.delivery-visual {
    flex-shrink: 0;
}

.delivery-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.25rem;
}

.email-icon {
    background: #dbeafe;
    color: #2563eb;
}

.post-icon {
    background: #fef3c7;
    color: #d97706;
}

.delivery-content strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.delivery-desc {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin-bottom: 0.25rem;
}

.delivery-price {
    display: block;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
}

.field-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Personal fields compact layout */
.personal-fields {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);
}

/* CTA Button */
.btn-cta {
    font-size: 1rem !important;
    padding: 1rem 1.5rem !important;
    letter-spacing: 0.08em !important;
}

.legal-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Share Buttons */
.share-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.share-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.85;
}

.share-whatsapp {
    background: #25d366;
    color: white;
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-email {
    background: var(--text-main);
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 1.25rem;
}

.cookie-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cookie-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .type-selector, .form-row {
        grid-template-columns: 1fr;
    }
    .form-row-3 {
        grid-template-columns: 1fr;
    }
    .form-row-street {
        grid-template-columns: 1fr 100px;
    }
    .design-selector {
        grid-template-columns: repeat(4, 1fr);
    }
    .design-icon {
        font-size: 1.5rem;
    }
    .card {
        padding: 1.5rem;
    }
    .delivery-selector {
        grid-template-columns: 1fr;
    }
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-buttons {
        justify-content: center;
    }
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    .experience-cards {
        grid-template-columns: 1fr;
    }
    .shop-hero h1 {
        font-size: 1.8rem;
    }
    .hero-overlay {
        padding: 3rem 1.5rem;
    }
}