/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-color: #e10078;      /* Vibrant Pink/Magenta */
    --primary-dark: #a50f78;       /* Deep Plum */
    --primary-light: #fef0f6;      /* Extremely soft pink */
    --secondary-color: #d4af37;    /* Gold */
    --secondary-dark: #b89326;     /* Dark Gold */
    
    --bg-light: #FCF9F6;           /* Warm Ivory/Cream Background */
    --bg-white: #FFFFFF;
    --bg-dark: #1F1A1C;            /* Dark Plum/Charcoal */
    --bg-darker: #151113;          /* Darker shade of Charcoal */
    
    --text-dark: #2D2527;          /* Rich dark text */
    --text-muted: #7A6F72;         /* Soft muted gray-brown */
    --text-light: #FFFFFF;
    --text-light-muted: #D1C5C7;
    
    --border-color: #EFE9EB;
    --gold-glow: 0 0 15px rgba(212, 175, 55, 0.3);
    --pink-glow: 0 0 15px rgba(225, 0, 120, 0.2);
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing & Layout */
    --container-max-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

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

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

body.no-scroll {
    overflow: hidden;
}

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

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.btn-block { width: 100%; text-align: center; }

/* Icon Style */
.icon {
    width: 1.25em;
    height: 1.25em;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* ==========================================================================
   TYPOGRAPHY & HEADINGS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.2;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
}

.sub-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(225, 0, 120, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 0, 120, 0.4);
    filter: brightness(1.05);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

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

.btn-outline-white:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-dark:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(225, 0, 120, 0.3);
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
#main-header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(252, 249, 246, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(239, 233, 235, 0.5);
    transition: var(--transition-smooth);
}

#main-header.scrolled {
    background-color: rgba(252, 249, 246, 0.95);
    box-shadow: 0 4px 20px rgba(45, 37, 39, 0.05);
    height: 70px;
}

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

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.header-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

#main-header.scrolled .header-logo {
    max-height: 48px;
}

.desktop-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-color);
}

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

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1100;
}

.hamburger-menu .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-light);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

.mobile-nav-overlay.open .mobile-nav {
    transform: translateY(0);
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

/* Hamburger Active State */
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION & COUNTDOWN
   ========================================================================== */
.hero-section {
    min-height: 90vh;
    padding-top: var(--header-height);
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('assets/images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 26, 28, 0.92) 0%, rgba(21, 17, 19, 0.85) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 40px;
    padding-bottom: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 24px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light-muted);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown Styles */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 45px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--border-radius);
    padding: 20px;
    min-width: 110px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: var(--gold-glow);
}

.countdown-val {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.1;
    margin-bottom: 6px;
}

.countdown-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light-muted);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light-muted);
    opacity: 0.8;
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.scroll-indicator .mouse {
    width: 26px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.6s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1rem;
}

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

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

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-info h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.feature-info p {
    font-size: 0.9rem;
    margin: 0;
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.about-img {
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(45, 37, 39, 0.08);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -10px;
    left: -20px;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
    color: var(--text-light);
    border-radius: var(--border-radius);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.experience-badge .number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    color: var(--text-light-muted);
}

/* ==========================================================================
   PRODUCT CATEGORIES
   ========================================================================== */
.categories-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(45, 37, 39, 0.03);
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 37, 39, 0.08);
    border-color: rgba(225, 0, 120, 0.15);
}

.category-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(31, 26, 28, 0.4) 100%);
}

.category-info {
    padding: 30px;
}

.category-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.category-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    height: 66px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.category-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
}

.category-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* ==========================================================================
   PRODUCT GALLERY SECTION (INTERACTIVE LIGHTBOX)
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.gallery-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    aspect-ratio: 1;
}

.gallery-img-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(31, 26, 28, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
    text-align: center;
}

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

.gallery-card:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 300;
    margin-bottom: 10px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
}

.gallery-product-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 500;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    transition-delay: 0.1s;
}

.gallery-card:hover .gallery-zoom-icon,
.gallery-card:hover .gallery-product-name {
    transform: translateY(0);
}

.gallery-more {
    margin-top: 20px;
}

/* ==========================================================================
   BRANCHES SECTION
   ========================================================================== */
.branches-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.branch-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(45, 37, 39, 0.03);
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.branch-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.branch-content h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.branch-details {
    list-style: none;
    margin-bottom: 35px;
}

.branch-details li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.branch-details .label-icon {
    font-size: 1.1rem;
    line-height: 1.4;
    color: var(--primary-color);
}

.branch-details .text {
    line-height: 1.4;
}

/* ==========================================================================
   NEWSLETTER & CONTACT
   ========================================================================== */
.newsletter-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.newsletter-wrapper {
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
    border-radius: calc(var(--border-radius) * 1.5);
    padding: 60px 40px;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.newsletter-wrapper::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(225, 0, 120, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.newsletter-content p {
    color: var(--text-light-muted);
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
}

.form-group {
    display: flex;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px;
    transition: var(--transition-fast);
}

.form-group:focus-within {
    border-color: var(--secondary-color);
    box-shadow: var(--gold-glow);
}

.form-control {
    flex-grow: 1;
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: var(--text-light);
    font-size: 0.95rem;
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form .btn {
    flex-shrink: 0;
}

.form-status {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-status.success {
    color: #2ecc71;
}

.form-status.error {
    color: #e74c3c;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
#main-footer {
    background-color: var(--bg-darker);
    color: var(--text-light-muted);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    max-height: 80px;
    width: auto;
    align-self: flex-start;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links-grid {
    display: contents;
}

.footer-links-col h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: var(--text-light-muted);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.85rem;
}

/* ==========================================================================
   PRODUCT LIGHTBOX MODAL
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(21, 17, 19, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-content-wrapper {
    position: relative;
    background-color: var(--bg-white);
    width: 90%;
    max-width: 800px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transform: scale(0.9);
    transition: var(--transition-smooth);
}

.modal.open .modal-content-wrapper {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--text-dark);
    z-index: 10;
    line-height: 1;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.modal-body {
    padding: 0;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
}

.modal-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.modal-info-col {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: inline-block;
}

.modal-info-col h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.modal-product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.modal-meta {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 0;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meta-item {
    display: flex;
    font-size: 0.9rem;
}

.meta-label {
    width: 100px;
    font-weight: 600;
    color: var(--text-dark);
}

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

/* ==========================================================================
   FLOATING WHATSAPP WIDGET
   ========================================================================== */
.whatsapp-floating-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-bubble-link {
    display: flex;
    align-items: center;
    position: relative;
}

.whatsapp-tooltip {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    position: absolute;
    right: 70px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.whatsapp-icon-bg {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    position: relative;
}

/* Pulsing effect around bubble */
.whatsapp-icon-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-bubble-link:hover .whatsapp-icon-bg {
    transform: scale(1.05) rotate(5deg);
    background-color: #20ba59;
}

.whatsapp-svg {
    width: 32px;
    height: 32px;
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image-content {
        order: -1;
    }
    .about-img {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Styles */
    .desktop-nav, .header-cta {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    /* Hero Typography */
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .countdown-container {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 12px;
        flex: 1 1 calc(50% - 12px);
    }
    
    .countdown-val {
        font-size: 1.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    /* Section Typography */
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-section, .categories-section, .gallery-section, .branches-section, .newsletter-section {
        padding: 60px 0;
    }
    
    /* Footer layout */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Modal layout */
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-img-col {
        height: 250px;
    }
    
    .modal-info-col {
        padding: 24px;
    }
    
    .modal-close {
        top: 10px;
        right: 15px;
        color: var(--text-light);
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .branch-card {
        padding: 24px;
    }
    
    /* Newsletter Form */
    .form-group {
        flex-direction: column;
        background-color: transparent;
        border: none;
        border-radius: 0;
        padding: 0;
        gap: 12px;
    }
    
    .form-control {
        background-color: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 30px;
        padding: 14px 20px;
    }
    
    .newsletter-form .btn {
        border-radius: 30px;
        padding: 14px 20px;
    }
}
