/* ==========================================================================
   Cofetăria Dulces - Mobile First Premium Style Sheet
   ========================================================================== */

/* Variables */
:root {
    --primary: #c5a059;       /* Elegant Gold */
    --primary-dark: #b08940;  /* Darker Gold */
    --primary-light: #f6efe2; /* Soft Gold Tint */
    --secondary: #d9a0a0;     /* Blush Pink / Rose */
    --secondary-dark: #c58686;
    --dark: #2c221e;          /* Dark Chocolate / Charcoal */
    --light: #faf7f2;         /* Cream / Warm White */
    --white: #ffffff;
    --grey-light: #f0eae1;
    --grey: #8e837d;
    --text: #453730;          /* Warm dark grey */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 4px rgba(44, 34, 30, 0.05);
    --shadow: 0 8px 30px rgba(44, 34, 30, 0.08);
    --shadow-lg: 0 20px 40px rgba(44, 34, 30, 0.12);
    --border-radius: 12px;
    --border-radius-lg: 24px;
}

/* Reset & Global - Mobile Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px; /* Slightly smaller base font for mobile readability */
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, .logo-main {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

a, button, select, input, textarea {
    font-family: inherit;
    transition: var(--transition);
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px; /* Tight padding for mobile screen real-estate */
}

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

.mb-medium {
    margin-bottom: 20px;
}

.mb-large {
    margin-bottom: 35px;
}

.py-large {
    padding: 60px 0; /* Compact paddings for mobile */
}

.bg-light {
    background-color: var(--light);
}

.text-muted {
    color: var(--grey);
}

/* Grids - Mobile First (Single Column by Default) */
.grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 45px;
    height: 45px;
    border: 3px solid var(--grey-light);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

.preloader-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Buttons - Large tap targets for mobile */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px; /* Extra height for mobile touch */
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    letter-spacing: 0.5px;
    min-height: 48px; /* Accessibility standard */
}

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

.btn-primary:active {
    background-color: var(--primary-dark);
    transform: scale(0.98);
}

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

.btn-secondary:active {
    background-color: var(--white);
    color: var(--dark);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
}

.btn-whatsapp:active {
    background-color: #20ba5a;
}

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

.btn-text {
    font-weight: 600;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0; /* Easier touch target */
}

.w-full {
    width: 100%;
}

/* Header & Mobile Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(44, 34, 30, 0.05);
    height: 70px;
}

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

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

.logo-img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--dark);
    letter-spacing: 0.5px;
}

.logo-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    margin-top: 1px;
}

/* Default Mobile Menu Layout */
.nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--white);
    padding: 30px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.nav-menu.active {
    left: 0;
}

.nav-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.nav-link {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text);
    padding: 10px 0;
    display: block;
}

.nav-link.active {
    color: var(--primary-dark);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Hide desktop phone number text on small screens, keep just icon or action link */
.btn-header span {
    display: none;
}

.btn-header {
    padding: 10px 14px;
    border-radius: 50%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: flex;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 90px 0 60px 0;
}

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

.hero-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-light);
    background-color: rgba(197, 160, 89, 0.15);
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.hero-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 35px;
}

.hero-wave .shape-fill {
    fill: var(--white);
}

/* Section Titles */
.section-subtitle {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 6px;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 0.9rem;
    color: var(--grey);
}

/* About Section */
.about-image-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.about-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 18px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.badge-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-features {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 12px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--grey);
}

/* Products Section */
.product-tabs {
    margin-bottom: 24px;
    display: flex;
    justify-content: flex-start;
    overflow-x: auto; /* Swipeable horizontal scrolling menu on mobile */
    padding: 8px 0;
    gap: 8px;
    scrollbar-width: none; /* Hide scrollbar for clean aesthetic */
}

.product-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background-color: var(--white);
    border: 1px solid var(--grey-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap; /* Keep items in one line */
    cursor: pointer;
}

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

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(44, 34, 30, 0.03);
    position: relative;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.product-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 16px;
}

.product-info h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.product-description {
    font-size: 0.85rem;
    color: var(--grey);
    margin-bottom: 16px;
    height: auto;
    display: block;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--grey-light);
    padding-top: 12px;
}

.product-price {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

/* Configurator (Cake Builder) */
.calc-card {
    background-color: var(--white);
    padding: 24px 16px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.cake-form {
    margin-top: 20px;
}

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

.form-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--primary-dark);
}

.form-group select,
.form-group input,
.form-group textarea {
    padding: 12px 14px;
    border: 1px solid var(--grey-light);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
    background-color: #fafafa;
    min-height: 44px;
}

.form-group small {
    margin-top: 4px;
    font-size: 0.75rem;
    color: var(--grey);
}

.form-group-checkbox {
    margin-bottom: 16px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    min-height: auto;
    width: auto;
}

.form-group-checkbox label {
    font-size: 0.8rem;
    color: var(--text);
    cursor: pointer;
    font-weight: 500;
    line-height: 1.4;
    user-select: none;
}

.cake-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.cake-option input {
    display: none;
}

.option-card {
    display: flex;
    flex-direction: column;
    padding: 12px 14px;
    border: 1.5px solid var(--grey-light);
    border-radius: var(--border-radius);
    cursor: pointer;
}

.option-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.option-desc {
    font-size: 0.75rem;
    color: var(--grey);
    line-height: 1.3;
}

.cake-option input:checked + .option-card {
    border-color: var(--primary);
    background-color: var(--primary-light);
}

.decor-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.decor-option-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    cursor: pointer;
    min-height: 32px;
}

.decor-option-label input {
    accent-color: var(--primary);
    width: 20px;
    height: 20px;
}

.calc-summary-wrapper {
    margin-top: 24px;
}

.calc-summary-card {
    background-color: var(--dark);
    color: var(--white);
    padding: 24px 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.calc-summary-card .form-group-checkbox label {
    color: rgba(255, 255, 255, 0.85);
}

.calc-summary-card h3 {
    color: var(--white);
    font-size: 1.3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    margin-bottom: 16px;
}

.summary-details {
    margin-bottom: 20px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.summary-line span {
    color: rgba(255, 255, 255, 0.7);
}

.total-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary);
}

.summary-info-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    gap: 8px;
}

/* Candy Bar Section */
.candybar-includes {
    margin-top: 20px;
    margin-bottom: 30px;
}

.candybar-includes h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 1rem;
}

.candybar-includes ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.candybar-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.candybar-form-card {
    background-color: var(--white);
    padding: 24px 16px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.candybar-form-card h3 {
    margin-bottom: 16px;
    font-size: 1.3rem;
}

/* Testimonials */
.testimonial-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(44, 34, 30, 0.02);
}

.stars {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 0.8rem;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.testimonial-author strong {
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--grey);
}

/* Contact Section */
.contact-details-list {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-item {
    display: flex;
    gap: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-text p {
    font-size: 0.85rem;
    color: var(--grey);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 24px;
}

.map-wrapper iframe {
    height: 300px;
}

/* Contact Map Switcher Card */
.map-container-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(224, 122, 95, 0.18);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.map-container-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.map-header-tabs {
    display: flex;
    background: #fdfaf7;
    padding: 8px;
    gap: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.map-tab-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border: none;
    background: transparent;
    border-radius: var(--border-radius-sm, 8px);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted, #666);
    cursor: pointer;
    transition: all 0.25s ease;
}

.map-tab-btn i {
    color: var(--primary, #e07a5f);
}

.map-tab-btn.active {
    background: var(--white);
    color: var(--primary-dark, #bd5b41);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.map-tab-btn .badge-new {
    background: linear-gradient(135deg, #e07a5f, #d05a3f);
    color: #fff;
    font-size: 0.72rem;
    padding: 2px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.badge-new-sm {
    background: linear-gradient(135deg, #e07a5f, #d05a3f);
    color: #fff;
    font-size: 0.68rem;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 6px;
    vertical-align: middle;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.map-iframe-container {
    position: relative;
    width: 100%;
}

.map-pane {
    display: none;
}

.map-pane.active {
    display: block;
    animation: fadeInMap 0.35s ease;
}

@keyframes fadeInMap {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.map-pane iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

.map-footer-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.88rem;
    color: var(--dark);
    flex-wrap: wrap;
    gap: 10px;
}

.map-footer-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.map-footer-bar span i {
    color: var(--primary, #e07a5f);
}

.btn-map-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--primary, #e07a5f);
    color: #fff !important;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-map-directions:hover {
    background: var(--primary-dark, #c96248);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
}

.location-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--primary, #e07a5f);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-maps-link:hover {
    color: var(--primary-dark, #bd5b41);
    text-decoration: underline;
}

/* Footer */
.main-footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    font-size: 0.85rem;
}

.footer-company-info {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-company-info p {
    margin-top: 4px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-company-info p strong {
    color: var(--white);
    font-size: 0.85rem;
}

.footer-company-info a {
    color: var(--primary, #e07a5f);
    text-decoration: underline;
}

.footer-links h4,
.footer-legal h4 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.footer-links ul,
.footer-legal ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
}

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

/* Scroll Animations */
.reveal-left, .reveal-right {
    opacity: 0;
    transform: translateY(20px); /* Vertical slide on mobile is more natural */
    transition: all 0.6s ease;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}


/* ==========================================================================
   Media Queries - Scaling Up for Larger Screens
   ========================================================================== */

/* Tablets / Medium Screens (min-width: 768px) */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .py-large {
        padding: 80px 0;
    }

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

    /* Header Nav Menu - Desktop Layout */
    .mobile-menu-toggle {
        display: none;
    }

    .btn-header span {
        display: inline;
    }

    .btn-header {
        padding: 12px 20px;
        border-radius: 50px;
    }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        padding: 0;
        box-shadow: none;
    }

    .nav-menu ul {
        flex-direction: row;
        gap: 24px;
    }

    .nav-link {
        font-size: 0.9rem;
        padding: 8px 0;
        position: relative;
    }

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

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    /* Hero Section */
    .hero-section {
        min-height: 85vh;
        padding: 110px 0 80px 0;
        text-align: left;
    }

    .hero-content {
        max-width: 600px;
        text-align: left;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        flex-direction: row;
        width: auto;
    }

    .hero-wave svg {
        height: 50px;
    }

    /* About Section */
    .about-img {
        height: 380px;
    }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Cake Configurator & Forms */
    .form-group-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

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

    .map-wrapper {
        margin-top: 0;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

/* Desktops / Large Screens (min-width: 992px) */
@media (min-width: 992px) {
    .py-large {
        padding: 100px 0;
    }

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

    .grid-2-1 {
        grid-template-columns: 2fr 1fr;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    /* Product Tab Center */
    .product-tabs {
        justify-content: center;
    }

    .calc-summary-card {
        position: sticky;
        top: 100px;
    }

    /* Animation directions reset for desktop */
    .reveal-left {
        transform: translateX(-40px);
    }
    .reveal-right {
        transform: translateX(40px);
    }
    .reveal-active {
        transform: translateX(0);
    }
}

/* Legal Pages Styling */
.legal-section {
    padding: 120px 0 80px 0;
    background-color: var(--white);
}

.legal-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(44, 34, 30, 0.05);
}

.legal-title {
    font-family: var(--font-secondary);
    color: var(--dark);
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.legal-subtitle {
    font-size: 0.95rem;
    color: var(--grey);
    text-align: center;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h3 {
    font-family: var(--font-secondary);
    color: var(--primary-dark);
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    padding-bottom: 8px;
}

.legal-content p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.legal-content a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 8px;
    font-size: 0.95rem;
    list-style-type: disc;
}

.legal-table-wrapper {
    overflow-x: auto;
    margin: 20px 0 25px 0;
    border-radius: var(--border-radius);
    border: 1px solid rgba(44, 34, 30, 0.1);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    text-align: left;
}

.legal-table th,
.legal-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(44, 34, 30, 0.08);
}

.legal-table th {
    background-color: rgba(224, 122, 95, 0.08);
    color: var(--dark);
    font-weight: 600;
    font-family: var(--font-primary);
}

.legal-table tbody tr:last-child td {
    border-bottom: none;
}

.legal-table tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.015);
}

.btn-back-home {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Craiova Promotion Badge */
.craiova-promo-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    margin-top: 24px;
    backdrop-filter: blur(4px);
    transition: var(--transition);
    max-width: 90%;
    box-sizing: border-box;
    text-align: center;
    line-height: 1.5;
}

.craiova-promo-badge:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.craiova-promo-badge i {
    color: var(--primary);
    margin-right: 6px;
}

/* Cookie Consent Banner Styling */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: calc(100% - 40px);
    max-width: 800px;
    background-color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(44, 34, 30, 0.08);
    z-index: 9999;
    padding: 16px 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-banner.hidden {
    display: none !important;
}

.cookie-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.cookie-container p {
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
    color: var(--text);
}

.cookie-container p a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
}

.btn-cookie-accept {
    flex: 1;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    min-height: 40px;
    text-align: center;
    justify-content: center;
}

.btn-cookie-accept:active {
    background-color: var(--primary-dark);
}

.btn-cookie-decline {
    flex: 1;
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--grey-light);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    min-height: 40px;
    text-align: center;
    justify-content: center;
}

.btn-cookie-decline:active {
    background-color: var(--grey-light);
}

@media (min-width: 768px) {
    .cookie-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 24px;
    }
    
    .cookie-buttons {
        width: auto;
        flex-shrink: 0;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .craiova-promo-badge {
        font-size: 0.78rem;
        padding: 10px 14px;
        border-radius: 12px;
        margin-top: 16px;
        max-width: 95%;
        line-height: 1.5;
    }
}

/* ==========================================================================
   Google Rating Badge & Reviews Carousel
   ========================================================================== */
.google-badge-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.google-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(197, 160, 89, 0.2);
    flex-wrap: wrap;
    justify-content: center;
}

.google-rating-badge .g-logo {
    color: #4285F4;
    font-size: 1.2rem;
}

.google-rating-badge .g-rating {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
}

.google-rating-badge .g-stars {
    color: #FFC107;
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.google-rating-badge .g-count {
    font-size: 0.82rem;
    color: var(--grey);
    font-weight: 500;
}

.google-rating-badge .g-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 5px;
}

/* Reviews Continuous Ticker Marquee Layout */
.reviews-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    overflow: hidden;
    padding: 10px 0;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.carousel-track {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
    width: max-content;
    animation: continuousTicker 40s linear infinite;
    will-change: transform;
}

.reviews-carousel-wrapper:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes continuousTicker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

.carousel-slide {
    width: 350px;
    flex: 0 0 350px;
    box-sizing: border-box;
}

.carousel-slide .testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 25px rgba(44, 34, 30, 0.06);
    border: 1px solid rgba(44, 34, 30, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-slide .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(44, 34, 30, 0.12);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.author-avatar {
    display: none !important;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.95rem;
    color: var(--dark);
}

.review-date {
    font-size: 0.75rem;
    color: var(--grey);
    display: flex;
    align-items: center;
    gap: 4px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--dark);
    border: 1px solid var(--grey-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

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

.carousel-btn.prev-btn {
    left: 10px;
}

.carousel-btn.next-btn {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--grey-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background-color: var(--primary);
    width: 24px;
    border-radius: 10px;
}

@media (max-width: 576px) {
    .carousel-slide {
        width: 290px;
        flex: 0 0 290px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .carousel-btn.prev-btn {
        left: 2px;
    }
    
    .carousel-btn.next-btn {
        right: 2px;
    }
}

/* ==========================================================================
   Products Showcase Dual Marquee Carousels
   ========================================================================== */
.container-fluid {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.products-dual-marquee {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    overflow: hidden;
}

.products-marquee-row {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.products-marquee-track {
    display: flex;
    gap: 18px;
    width: max-content;
    will-change: transform;
}

.products-marquee-track.track-left {
    animation: productsMarqueeLeft 45s linear infinite;
}

.products-marquee-track.track-right {
    animation: productsMarqueeRight 45s linear infinite;
}

.products-marquee-row:hover .products-marquee-track {
    animation-play-state: paused;
}

@keyframes productsMarqueeLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 9px));
    }
}

@keyframes productsMarqueeRight {
    0% {
        transform: translateX(calc(-50% - 9px));
    }
    100% {
        transform: translateX(0);
    }
}

.product-gallery-item {
    width: 260px;
    height: 260px;
    flex: 0 0 260px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(44, 34, 30, 0.08);
    border: 3px solid var(--white);
    background-color: var(--white);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease;
}

.product-gallery-item:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 12px 30px rgba(44, 34, 30, 0.16);
    z-index: 5;
}

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

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

@media (max-width: 576px) {
    .product-gallery-item {
        width: 190px;
        height: 190px;
        flex: 0 0 190px;
        border-width: 2px;
    }
}

/* ==========================================================================
   Multimedia About Us / Povestea Noastră (Video vid.mp4)
   ========================================================================== */
.align-items-center {
    align-items: center;
}

.about-video-wrapper {
    position: relative;
    width: 100%;
}

.about-video-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(44, 34, 30, 0.15);
    border: 4px solid var(--white);
    background-color: var(--dark);
}

.about-video-element {
    width: 100%;
    height: auto;
    max-height: 540px;
    display: block;
    object-fit: cover;
    border-radius: calc(var(--border-radius-lg) - 4px);
}

.video-badge-floating {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    z-index: 3;
}

.video-badge-floating .badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.video-badge-floating .badge-text {
    display: flex;
    flex-direction: column;
}

.video-badge-floating .badge-text strong {
    font-size: 0.9rem;
    color: var(--dark);
    line-height: 1.2;
}

.video-badge-floating .badge-text span {
    font-size: 0.75rem;
    color: var(--grey);
}

.lead-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.about-features-modern {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.feature-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 14px 18px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(44, 34, 30, 0.04);
    border-left: 4px solid var(--primary);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 20px rgba(44, 34, 30, 0.08);
}

.feature-box-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-box-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.feature-box-info p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.4;
    margin: 0;
}

.about-cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .video-badge-floating {
        bottom: 12px;
        left: 12px;
        padding: 8px 14px;
    }
    .video-badge-floating .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    .video-badge-floating .badge-text strong {
        font-size: 0.8rem;
    }
    .video-badge-floating .badge-text span {
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   Continuous Dual Products Marquee
   ========================================================================== */
.products-dual-marquee {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    overflow: hidden;
}

.products-marquee-row {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.products-marquee-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

.products-marquee-track.track-left {
    animation: continuousTickerLeft 42s linear infinite;
}

.products-marquee-track.track-right {
    animation: continuousTickerRight 42s linear infinite;
}

.products-marquee-row:hover .products-marquee-track {
    animation-play-state: paused;
}

@keyframes continuousTickerLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes continuousTickerRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.product-gallery-item {
    flex: 0 0 260px;
    width: 260px;
    height: 220px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(44, 34, 30, 0.08);
    border: 2px solid var(--white);
    background-color: var(--white);
    transition: var(--transition);
}

.product-gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(44, 34, 30, 0.16);
    z-index: 3;
}

.product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

@media (max-width: 576px) {
    .product-gallery-item {
        flex: 0 0 200px;
        width: 200px;
        height: 170px;
    }
}

/* ==========================================================================
   Swipeable Cake Showcase Gallery Carousel (Above Configurator)
   ========================================================================== */
.cake-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 45px;
    box-sizing: border-box;
}

.cake-gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.cake-tab-btn {
    background-color: var(--white);
    border: 1px solid var(--grey-light);
    color: var(--dark);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.cake-tab-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.cake-tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
}

.cake-dense-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 15px 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for clean visual aesthetic */
    width: 100%;
}

.cake-dense-grid::-webkit-scrollbar {
    display: none;
}

.cake-photo-card {
    flex: 0 0 270px;
    width: 270px;
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 6px 20px rgba(44, 34, 30, 0.07);
    border: 2px solid var(--white);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, opacity 0.3s ease;
}

.cake-photo-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(44, 34, 30, 0.15);
    z-index: 4;
}

.cake-photo-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.cake-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cake-photo-card:hover .cake-photo-wrapper img {
    transform: scale(1.08);
}

.cake-photo-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(44, 34, 30, 0.78);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    pointer-events: none;
}

.cake-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--dark);
    border: 1px solid var(--grey-light);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.cake-carousel-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.cake-carousel-btn.prev-btn {
    left: 0;
}

.cake-carousel-btn.next-btn {
    right: 0;
}

@media (max-width: 576px) {
    .cake-carousel-wrapper {
        padding: 0 10px;
    }

    .cake-photo-card {
        flex: 0 0 210px;
        width: 210px;
    }

    .cake-photo-wrapper {
        height: 200px;
    }

    .cake-tab-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .cake-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        background-color: rgba(255, 255, 255, 0.9);
    }
}

/* ==========================================================================
   Swipeable Candy Bar Showcase Gallery Carousel (Above Offer Form)
   ========================================================================== */
.candybar-showcase-section {
    background-color: var(--white);
    position: relative;
}

.cb-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 45px;
    box-sizing: border-box;
}

.cb-gallery-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.cb-tab-btn {
    background-color: var(--white);
    border: 1px solid var(--grey-light);
    color: var(--dark);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.cb-tab-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.cb-tab-btn.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(197, 160, 89, 0.35);
}

.cb-dense-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 15px 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
}

.cb-dense-grid::-webkit-scrollbar {
    display: none;
}

.cb-photo-card {
    flex: 0 0 280px;
    width: 280px;
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 6px 20px rgba(44, 34, 30, 0.08);
    border: 3px solid var(--white);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, opacity 0.3s ease;
}

.cb-photo-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 14px 30px rgba(44, 34, 30, 0.16);
    z-index: 4;
}

.cb-photo-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.cb-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cb-photo-card:hover .cb-photo-wrapper img {
    transform: scale(1.08);
}

.cb-photo-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(44, 34, 30, 0.82);
    backdrop-filter: blur(4px);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    pointer-events: none;
}

.cb-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--dark);
    border: 1px solid var(--grey-light);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.cb-carousel-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.cb-carousel-btn.prev-btn {
    left: 0;
}

.cb-carousel-btn.next-btn {
    right: 0;
}

@media (max-width: 576px) {
    .cb-carousel-wrapper {
        padding: 0 10px;
    }

    .cb-photo-card {
        flex: 0 0 220px;
        width: 220px;
    }

    .cb-photo-wrapper {
        height: 190px;
    }

    .cb-tab-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .cb-carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
        background-color: rgba(255, 255, 255, 0.9);
    }
}

/* ==========================================================================
   Candy Bar Packages Cards & 100% Mobile Responsiveness
   ========================================================================== */
.align-items-start {
    align-items: flex-start;
}

.candybar-packages-wrapper {
    margin-top: 25px;
    background: var(--white);
    padding: 22px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 25px rgba(44, 34, 30, 0.06);
    border: 1px solid rgba(44, 34, 30, 0.04);
}

.packages-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.packages-note-text {
    font-size: 0.8rem;
    color: var(--grey);
    margin-bottom: 18px;
}

.packages-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.package-card {
    background: #fdfbf7;
    border-radius: var(--border-radius);
    padding: 20px 16px;
    border: 1px solid var(--grey-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition);
}

.package-card.standard {
    border-top: 4px solid var(--grey);
}

.package-card.premium {
    border-top: 4px solid var(--primary);
    background: linear-gradient(180deg, #fffcf7 0%, #ffffff 100%);
    box-shadow: 0 6px 20px rgba(197, 160, 89, 0.12);
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(44, 34, 30, 0.1);
}

.package-card-header {
    margin-bottom: 14px;
}

.pkg-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    background-color: var(--grey-light);
    color: var(--dark);
    margin-bottom: 8px;
}

.pkg-badge.gold {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.package-card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.pkg-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.pkg-price span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--grey);
}

.pkg-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pkg-list li {
    font-size: 0.82rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.3;
}

.pkg-list li i {
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .packages-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .candybar-packages-wrapper {
        padding: 16px;
    }

    .package-card {
        padding: 16px;
    }
}

/* ==========================================================================
   Cake Portions Stepper Input & Candy Bar Assortments Box
   ========================================================================== */
.portions-stepper-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.portions-stepper-wrapper input[type="number"] {
    flex: 1;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
}

.stepper-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius);
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid rgba(197, 160, 89, 0.4);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    user-select: none;
    touch-action: manipulation;
}

.stepper-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.stepper-btn:active {
    transform: scale(0.95);
}

.cb-assortment-box {
    background: #faf8f5;
    padding: 16px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.assortment-box-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.cb-tag-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cb-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    color: var(--dark);
    border: 1px solid var(--grey-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.cb-chip:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ==========================================================================
   Comprehensive Mobile Responsiveness Optimizations (320px - 768px)
   ========================================================================== */
@media (max-width: 768px) {
    /* Global Container Padding & Prevent Overflow */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    .container, .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Section Padding */
    .py-large {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .py-medium {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    /* Typography Scaling */
    .hero-title {
        font-size: 2.1rem;
        line-height: 1.25;
    }

    .section-title {
        font-size: 1.65rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .section-desc {
        font-size: 0.92rem;
    }

    /* Header & Mobile Nav */
    .header-content {
        padding: 12px 16px;
    }

    /* Hero Buttons */
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-cta-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Products Section Marquee Cards */
    .product-gallery-item {
        flex: 0 0 200px;
        width: 200px;
        height: 160px;
    }

    /* Cake Showcase Gallery Carousel */
    .cake-carousel-wrapper {
        padding: 0 5px;
    }

    .cake-carousel-btn {
        display: none !important; /* Hide arrows on mobile touch swipe */
    }

    .cake-dense-grid {
        gap: 12px;
        padding-bottom: 15px;
    }

    .cake-photo-card {
        flex: 0 0 200px;
        width: 200px;
        height: 220px;
    }

    .cake-gallery-tabs {
        gap: 6px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .cake-tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Cake Configurator Grid */
    .grid-2-1 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-group-row {
        flex-direction: column;
        gap: 14px;
    }

    .calc-card, .calc-summary-card {
        padding: 20px 16px;
    }

    /* Candy Bar Showcase Carousel */
    .candybar-showcase-section .cb-carousel-wrapper {
        padding: 0 5px;
    }

    .cb-carousel-btn {
        display: none !important;
    }

    .cb-photo-card {
        flex: 0 0 190px;
        width: 190px;
        height: 160px;
    }

    .cb-showcase-tabs {
        gap: 6px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .cb-tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    /* Candy Bar Booking Form & Packages */
    .candybar-packages-wrapper {
        padding: 16px;
    }

    .packages-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .candybar-form-card {
        padding: 22px 18px;
    }

    /* About Video Section */
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-features-modern {
        gap: 12px;
    }

    .feature-box {
        padding: 12px 14px;
    }

    /* Reviews Section */
    .review-card {
        width: 280px;
        padding: 16px;
    }

    /* Contact Section & Map */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .map-wrapper {
        height: 280px;
    }
}

/* Floating WhatsApp Quick Contact Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
    color: #ffffff !important;
}

.whatsapp-float-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    z-index: -1;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.whatsapp-float-tooltip {
    position: absolute;
    right: 68px;
    background: rgba(30, 24, 20, 0.92);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 27px;
    }
    
    .whatsapp-float-tooltip {
        display: none;
    }

    /* Mobile Header & Logo Optimizations */
    .logo-main {
        font-size: 1.3rem;
    }

    .logo-sub {
        font-size: 0.6rem;
    }

    .logo-img {
        height: 36px;
    }

    /* Hero Buttons Responsive Stacking */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .craiova-promo-badge {
        font-size: 0.82rem;
        padding: 8px 12px;
        width: 100%;
        text-align: center;
    }

    /* Video Player Aspect Ratio & Touch Container */
    .about-video-card {
        border-radius: 16px;
        overflow: hidden;
    }

    .about-video-element {
        max-height: 280px;
        object-fit: cover;
    }

    /* Map Switcher Card Mobile Tweaks */
    .map-header-tabs {
        padding: 4px;
    }

    .map-tab-btn {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .map-pane iframe {
        height: 300px;
    }

    .map-footer-bar {
        padding: 10px 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .btn-map-directions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .product-gallery-item {
        flex: 0 0 170px;
        width: 170px;
        height: 140px;
    }

    .cake-photo-card {
        flex: 0 0 170px;
        width: 170px;
        height: 190px;
    }

    .cb-photo-card {
        flex: 0 0 160px;
        width: 160px;
        height: 140px;
    }

    .stepper-btn {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}









