/* ==========================================================================
   KIZIL KARDEŞLER UNLU MAMÜLLERİ - PREMIUM LUXURY DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Color Palette - Light, Clean, Bright & Luxury Warm corporate */
    --bg-main: #fcfbfe;
    --bg-card: #ffffff;
    --bg-card-hover: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.96);
    --bg-warm-light: #fff8f0;
    
    /* Footer & Header Custom Light Colors */
    --footer-bg: #f6f4ef;
    --footer-bottom-bg: #ece9e2;
    --footer-text: #24242c;
    --footer-text-muted: #686878;

    /* Gold & Vibrant Warm Gradients */
    --gold-primary: #b8860b;
    --gold-dark: #966c04;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f5d77f 30%, #b8860b 70%, #aa771c 100%);
    --gold-gradient-soft: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(245, 215, 127, 0.2) 100%);
    --gold-glow: 0 8px 25px rgba(184, 134, 11, 0.22);
    --gold-border: 1px solid rgba(212, 175, 55, 0.28);

    /* Text Colors - Deep Sharp Contrast */
    --text-main: #18181f;
    --text-muted: #5e5e6e;
    --text-gold: #b8860b;

    /* MONTSERRAT TYPOGRAPHY */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    --card-shadow-hover: 0 16px 36px rgba(184, 134, 11, 0.16);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* PAGE VIEW TRANSITIONS (TABBED PAGES) */
.page-view {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.page-view.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Typography Helpers */
h1, h2, h3, h4, .font-serif {
    font-family: var(--font-heading);
    color: var(--text-main);
    letter-spacing: -0.3px;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gold-icon {
    color: var(--gold-primary);
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: var(--font-body);
    letter-spacing: 0.2px;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #18181f;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    filter: brightness(1.04);
}

.btn-outline-gold {
    background: #ffffff;
    color: var(--gold-dark);
    border: 1px solid var(--gold-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: #ffffff;
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}

.btn-wa {
    background: #25d366;
    color: #fff;
    font-weight: 700;
}

.btn-wa:hover {
    background: #1da851;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.82rem; }
.btn-xs { padding: 0.35rem 0.75rem; font-size: 0.76rem; border-radius: 6px; }
.btn-lg { padding: 0.9rem 1.8rem; font-size: 0.95rem; }

/* HEADER PASTA BUTTON RESPONSIVE HELPERS */
.btn-header-cake {
    padding: 0.38rem 0.85rem !important;
    font-size: 0.78rem !important;
    white-space: nowrap !important;
    border-radius: 6px !important;
    gap: 0.35rem !important;
}

.btn-header-cake .desktop-text { display: inline; }
.btn-header-cake .mobile-text { display: none; }

/* Section Header */
.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.98rem;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 500;
}

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

/* NAVBAR HEADER */
.navbar-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.06);
    padding: 0.7rem 0;
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-img-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    flex-shrink: 0;
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #121216;
    line-height: 1.1;
}

.brand-subtitle {
    font-size: 0.62rem;
    letter-spacing: 2px;
    color: var(--gold-primary);
    font-weight: 800;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: #2c2c35;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.4rem 0;
    cursor: pointer;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 1.1rem;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    cursor: pointer;
}

/* HERO SPLIT SECTION */
.hero-split-section {
    padding: 4rem 0 4.5rem;
    background: linear-gradient(135deg, #fffdfa 0%, #fff7eb 50%, #fff4e5 100%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge-clean {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--gold-dark);
    margin-bottom: 1.3rem;
    font-weight: 700;
}

.hero-main-title {
    font-size: 2.9rem;
    font-weight: 900;
    line-height: 1.22;
    margin-bottom: 1.1rem;
    letter-spacing: -0.8px;
    color: #121216;
}

.hero-lead-text {
    font-size: 1.02rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 500;
}

.hero-actions-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
}

.hero-mini-features {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1.5rem;
    flex-wrap: wrap;
}

.mini-feat-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 600;
}

.hero-image-showcase {
    position: relative;
}

.hero-img-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 18px 40px rgba(184, 134, 11, 0.16);
}

.hero-main-img {
    width: 100%;
    height: 410px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.hero-img-frame:hover .hero-main-img {
    transform: scale(1.03);
}

.hero-img-overlay-badge {
    position: absolute;
    bottom: 1.2rem;
    left: 1.2rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    padding: 0.74rem 1.2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.overlay-year {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold-dark);
    line-height: 1;
}

.overlay-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* HOME EXPLORER SECTION CARDS */
.home-explorer-section {
    padding: 4.5rem 0 5.5rem;
    background: #fcfbfe;
}

.explorer-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.explorer-card-photo {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
}

.explorer-card-photo:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--gold-primary);
}

.card-photo-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f5f5fa;
}

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

.explorer-card-photo:hover .card-img {
    transform: scale(1.06);
}

.card-tag {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.card-photo-body {
    padding: 1.5rem 1.3rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-photo-body h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #121216;
}

.card-photo-body p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.2rem;
    flex-grow: 1;
    font-weight: 500;
}

.card-link-text {
    font-size: 0.84rem;
    font-weight: 800;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    transition: var(--transition-smooth);
}

.explorer-card-photo:hover .card-link-text {
    gap: 0.7rem;
    color: var(--gold-primary);
}

/* LIGHT CORPORATE HYGIENE CARD */
.corporate-hygiene-card {
    margin-top: 3.5rem;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 2.2rem 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    box-shadow: 0 10px 30px rgba(184, 134, 11, 0.08);
}

.hygiene-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.hygiene-text-box h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.35rem;
    color: #121216;
}

.hygiene-text-box p {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 500;
}

/* PRODUCTS REAL PHOTOGRAPHY CARDS */
.product-real-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

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

/* ABOUT SECTION */
.about-section {
    padding: 5rem 0;
    background: #fffdfa;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    align-items: center;
}

.about-image-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 1.2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
}

.about-card-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    margin-bottom: 0.6rem;
    object-fit: cover;
}

.bakery-illustration h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
}

.bakery-illustration p {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 0.85rem;
}

.about-heading {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    line-height: 1.35;
}

.about-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
    line-height: 1.65;
    font-weight: 500;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.value-item {
    display: flex;
    gap: 0.9rem;
    background: #ffffff;
    padding: 1.1rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.value-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.value-text h4 {
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.value-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* PRODUCTS CATALOG SECTION */
.products-section {
    padding: 5rem 0;
    background: var(--bg-main);
}

.filter-controls {
    margin-bottom: 1.8rem;
}

.search-box {
    position: relative;
    max-width: 520px;
    margin: 0 auto 1.2rem;
}

.search-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-primary);
}

.search-box input {
    width: 100%;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    padding: 0.85rem 1rem 0.85rem 2.8rem;
    border-radius: 50px;
    color: var(--text-main);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
}

/* PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.8rem;
}

.product-card {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--card-shadow);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--gold-primary);
}

.product-badge {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    z-index: 2;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-badge.gold-badge {
    background: var(--gold-gradient);
    color: #121216;
    border: none;
}

.product-image-box {
    height: 190px;
    background: #f5f5fa;
    position: relative;
    overflow: hidden;
}

.product-content {
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-cat {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gold-dark);
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
}

.product-title {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #121216;
}

.product-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 1.1rem;
    line-height: 1.5;
    flex-grow: 1;
    font-weight: 500;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 0.9rem;
    margin-top: auto;
}

.product-tag {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* CUSTOM CAKE BUILDER FORM CONTROLS & STRICT CONTAINER CONSTRAINTS */
.custom-cake-section {
    padding: 3rem 0 4.5rem;
    background: linear-gradient(135deg, #fffdf8 0%, #fff6ea 100%);
    width: 100%;
    overflow: hidden;
}

.custom-cake-wrapper {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: 0 15px 40px rgba(184, 134, 11, 0.1);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.cake-builder-form {
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group select,
.form-group input {
    height: 36px !important;
    max-width: 300px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: #fafafc;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 6px;
    padding: 0.25rem 0.65rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.82rem;
    outline: none;
    transition: var(--transition-smooth);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}

.form-group textarea {
    width: 100%;
    max-width: 550px;
    min-width: 0;
    box-sizing: border-box;
    background: #fafafc;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 6px;
    padding: 0.6rem 0.75rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.82rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold-primary);
    box-shadow: var(--gold-glow);
    background: #ffffff;
}

.cake-form-footer {
    margin-top: 1.8rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-form-submit {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    width: 100%;
    max-width: 460px;
    box-sizing: border-box;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
}

/* BRANCHES SECTION */
.branches-section {
    padding: 5rem 0;
    background: var(--bg-main);
}

.branch-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.branch-tab-btn {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--text-main);
    padding: 0.75rem 1.3rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.branch-tab-btn:hover, .branch-tab-btn.active {
    background: var(--gold-gradient);
    color: #121216;
    border-color: transparent;
    box-shadow: var(--gold-glow);
}

.branch-display {
    position: relative;
}

.branch-card {
    display: none;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 2.2rem;
    box-shadow: var(--card-shadow);
    animation: fadeIn 0.4s ease-in-out;
}

.branch-card.active {
    display: block;
}

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

.branch-header-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.8rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.badge-main {
    font-size: 0.98rem;
    font-weight: 800;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.badge-status {
    font-size: 0.78rem;
    font-weight: 700;
    color: #16a34a;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.branch-details-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
}

.branch-info-col h3 {
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 0.7rem;
    color: #121216;
}

.branch-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.branch-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.branch-info-list li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.branch-icon {
    color: var(--gold-dark);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.branch-info-list strong {
    display: block;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 800;
}

.branch-info-list span, .branch-info-list a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}

.branch-info-list a:hover { color: var(--gold-primary); }

.branch-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.branch-features-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-box {
    background: #fafafc;
    border: 1px solid rgba(212, 175, 55, 0.22);
    padding: 1.3rem;
    border-radius: 10px;
}

.feature-icon {
    font-size: 1.6rem;
    color: var(--gold-dark);
    margin-bottom: 0.6rem;
}

.feature-box h4 {
    font-size: 0.98rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: #121216;
}

.feature-box p {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* CONTACT & FAQ */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-main);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 1rem 1.1rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-icon {
    color: var(--gold-dark);
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.1rem 1.1rem;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.55;
    font-weight: 500;
}

.faq-item.active .faq-answer {
    display: block;
}

.contact-card-box {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    padding: 2.2rem;
    box-shadow: var(--card-shadow);
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #121216;
}

.contact-card-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.3rem;
    font-weight: 500;
}

.quick-contact-form .form-group {
    margin-bottom: 0.9rem;
}

.btn-block {
    width: 100%;
}

/* HARMONIZED LIGHT/WARM FOOTER SYSTEM */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding-top: 4rem;
    margin-top: 2.5rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
}

.footer .footer-desc,
.footer .footer-links a,
.footer .footer-branches {
    color: var(--footer-text-muted);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1.1fr;
    gap: 2.5rem;
    padding-bottom: 3.5rem;
    align-items: start;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.footer-brand-box {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.4rem;
}

.footer-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    object-fit: cover;
    flex-shrink: 0;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: #121216;
    line-height: 1.1;
}

.footer-brand-sub {
    font-size: 0.62rem;
    color: var(--gold-primary);
    font-weight: 800;
    letter-spacing: 1.5px;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 0.7rem;
    margin-top: 0.4rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.35);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.social-links a:hover {
    background: var(--gold-gradient);
    color: #121216;
    border-color: transparent;
    box-shadow: var(--gold-glow);
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--gold-dark);
    margin-bottom: 0.4rem;
    position: relative;
    padding-bottom: 0.4rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.45rem;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--gold-dark);
    transform: translateX(4px);
}

.footer-branches {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.82rem;
    font-weight: 500;
}

.footer-branches strong {
    color: #121216;
    display: block;
    font-weight: 800;
}

.footer-branches a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 700;
}

.footer-branches a:hover {
    text-decoration: underline;
}

.footer-contact-item {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.75rem 0.9rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.footer-contact-item i {
    font-size: 1.2rem;
    color: var(--gold-primary);
}

.footer-contact-item div span {
    display: block;
    font-size: 0.72rem;
    color: var(--footer-text-muted);
    font-weight: 600;
}

.footer-contact-item div a {
    color: #121216;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.3rem 0;
    font-size: 0.82rem;
    color: var(--footer-text-muted);
    background: var(--footer-bottom-bg);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-weight: 600;
}

/* CIRCULAR FLOATING WHATSAPP BUTTON */
.float-wa-circle-btn {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    width: 54px;
    height: 54px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.7rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    border: 2px solid #ffffff;
    z-index: 999;
    transition: var(--transition-smooth);
}

.float-wa-circle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    background: #1da851;
}

/* RESPONSIVE DESIGN & MOBILE AGGRESSIVE WRAPPER CONSTRAINTS */
@media (max-width: 992px) {
    .hero-split-grid { grid-template-columns: 1fr; }
    .hero-main-title { font-size: 2.3rem; }
    .about-grid { grid-template-columns: 1fr; }
    .branch-details-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .container {
        padding: 0 0.75rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        gap: 1.8rem;
        transition: var(--transition-smooth);
    }
    .nav-menu.active { left: 0; }
    .mobile-toggle { display: block; }
    .hero-main-title { font-size: 1.9rem; }

    /* NAVBAR MOBILE ACTION BUTTON & LOGO */
    .nav-container {
        gap: 0.3rem !important;
    }

    .brand-logo {
        gap: 0.4rem !important;
    }

    .brand-title { font-size: 0.85rem !important; white-space: nowrap !important; }
    .brand-subtitle { display: none !important; }
    .logo-img-wrapper { width: 34px !important; height: 34px !important; }

    .nav-actions {
        gap: 0.3rem !important;
    }

    .btn-header-cake {
        padding: 0.28rem 0.48rem !important;
        font-size: 0.68rem !important;
        gap: 0.25rem !important;
        border-radius: 5px !important;
        white-space: nowrap !important;
    }
    
    .btn-header-cake .desktop-text { display: none !important; }
    .btn-header-cake .mobile-text { display: inline !important; }

    .corporate-hygiene-card {
        flex-direction: column !important;
        padding: 1.4rem 1rem !important;
        text-align: center !important;
        gap: 0.9rem !important;
    }

    .values-grid {
        grid-template-columns: 1fr !important;
    }

    /* FORM GRID & INPUTS NO-OVERFLOW CONSTRAINTS */
    .custom-cake-section {
        padding: 1.5rem 0 2.5rem !important;
    }

    .custom-cake-wrapper {
        padding: 1.2rem 0.75rem !important;
        border-radius: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .cake-builder-form {
        margin-top: 1.2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-group {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        margin-bottom: 0.7rem !important;
    }

    .form-group label {
        font-size: 0.78rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-group select,
    .form-group input {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 250px !important;
        height: 32px !important;
        padding: 0.2rem 0.55rem !important;
        font-size: 0.76rem !important;
        border-radius: 6px !important;
        display: block !important;
    }

    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
        height: 70px !important;
        padding: 0.4rem 0.55rem !important;
        font-size: 0.76rem !important;
        border-radius: 6px !important;
    }

    .btn-form-submit {
        padding: 0.75rem 0.8rem !important;
        font-size: 0.8rem !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom-content { flex-direction: column !important; text-align: center !important; }
}

@media (max-width: 480px) {
    .products-grid, .explorer-grid-clean {
        grid-template-columns: 1fr !important;
    }

    .brand-title { font-size: 0.8rem !important; }
    .logo-img-wrapper { width: 32px !important; height: 32px !important; }

    .btn-header-cake {
        font-size: 0.65rem !important;
        padding: 0.25rem 0.4rem !important;
    }

    .float-wa-circle-btn {
        width: 46px;
        height: 46px;
        font-size: 1.4rem;
        bottom: 1rem;
        right: 1rem;
    }
}
