/* ============================================================
   SLK CANE FURNITURE - Style Sheet
   ============================================================ */

:root {
    --primary: #B0772F;
    --primary-dark: #8A5A23;
    --primary-light: #E7BE7A;
    --accent: #D99E4E;
    --dark: #2B2119;
    --dark-2: #3A2D21;
    --bg-cream: #FAF4EA;
    --bg-white: #FFFFFF;
    --text-color: #4E3F32;
    --text-muted: #7A6A58;
    --border-light: #EFE4D2;
    --font-body: 'Poppins', sans-serif;
    --font-display: 'Marcellus', serif;
    --shadow-sm: 0 4px 16px rgba(43, 33, 25, 0.08);
    --shadow-lg: 0 20px 50px rgba(43, 33, 25, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--dark);
    font-weight: 400;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
}

section[id] {
    scroll-margin-top: 80px;
}

.text-gradient {
    background: linear-gradient(120deg, var(--primary-dark) 0%, var(--accent) 60%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    padding: 18px 0;
    transition: all 0.4s ease;
    background: transparent;
}

#mainNav.scrolled {
    background: rgba(250, 244, 234, 0.96);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--bg-white);
}

#mainNav.scrolled .navbar-brand {
    color: var(--dark);
}

.brand-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-white);
    font-size: 1.15rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(176, 119, 47, 0.4);
}

.brand-text {
    letter-spacing: 0.5px;
}

.brand-accent {
    color: var(--accent);
}

#mainNav.scrolled .brand-accent {
    color: var(--primary);
}

.navbar-toggler {
    border: none;
    padding: 6px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    border-radius: 3px;
    background: var(--bg-white);
    transition: all 0.3s ease;
}

#mainNav.scrolled .toggler-bar {
    background: var(--dark);
}

.navbar-nav .nav-link {
    color: var(--bg-white);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 6px;
    padding: 8px 12px !important;
    position: relative;
}

#mainNav.scrolled .navbar-nav .nav-link {
    color: var(--text-color);
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: var(--accent);
}

#mainNav.scrolled .navbar-nav .nav-link.active,
#mainNav.scrolled .navbar-nav .nav-link:hover {
    color: var(--primary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 24px);
}

.btn-nav-call {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 22px;
    border: none;
    box-shadow: 0 8px 22px rgba(176, 119, 47, 0.35);
}

.btn-nav-call:hover {
    transform: translateY(-2px);
    color: var(--bg-white);
    box-shadow: 0 12px 28px rgba(176, 119, 47, 0.45);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    background: linear-gradient(160deg, #3A2D21 0%, #2B2119 45%, #4A3827 100%);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(231, 190, 122, 0.06);
}

.shape-1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -100px;
}

.shape-2 {
    width: 320px;
    height: 320px;
    bottom: -80px;
    left: -80px;
    background: rgba(176, 119, 47, 0.08);
}

.shape-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 30%;
    background: rgba(231, 190, 122, 0.05);
}

.hero-float-icon {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(231, 190, 122, 0.4);
    animation: floatY 6s ease-in-out infinite;
}

.float-1 { top: 18%; left: 6%; animation-delay: 0s; }
.float-2 { top: 30%; right: 8%; animation-delay: 1.2s; }
.float-3 { bottom: 22%; left: 10%; animation-delay: 2.4s; }
.float-4 { top: 16%; right: 26%; animation-delay: 3.2s; }
.float-5 { bottom: 16%; right: 20%; animation-delay: 1.8s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(6deg); }
}

.hero-content {
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(231, 190, 122, 0.12);
    border: 1px solid rgba(231, 190, 122, 0.3);
    color: var(--primary-light);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(2.3rem, 5vw, 3.8rem);
    line-height: 1.15;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.hero-description {
    color: rgba(250, 244, 234, 0.82);
    font-size: 1.05rem;
    max-width: 540px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-white);
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 26px rgba(176, 119, 47, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    color: var(--bg-white);
    box-shadow: 0 14px 32px rgba(176, 119, 47, 0.5);
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid rgba(250, 244, 234, 0.4);
    color: var(--bg-white);
    font-weight: 500;
    padding: 12px 26px;
    border-radius: 50px;
}

.btn-hero-outline:hover {
    background: rgba(250, 244, 234, 0.1);
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.btn-hero-whatsapp {
    background: #25D366;
    color: #fff;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 50px;
}

.btn-hero-whatsapp:hover {
    background: #1ebe5b;
    transform: translateY(-2px);
    color: #fff;
}

.hero-stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 22px;
}

.hero-stat {
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-light);
}

.hero-stat-plus {
    font-size: 1.4rem;
    color: var(--primary-light);
    font-weight: 600;
}

.hero-stat-label {
    width: 100%;
    color: rgba(250, 244, 234, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(250, 244, 234, 0.2);
}

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

.hero-image-wrapper {
    position: relative;
    padding: 30px;
}

.hero-main-image {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.hero-image-wrapper:hover .hero-main-image {
    transform: rotate(0deg);
}

.hero-floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border-radius: 14px;
    padding: 12px 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    box-shadow: var(--shadow-lg);
}

.hero-floating-badge i {
    font-size: 1.1rem;
    color: var(--primary);
}

.badge-1 { top: 0; left: -10px; }
.badge-2 { bottom: 14%; right: -14px; }
.badge-3 { bottom: -12px; left: 18%; }

.hero-wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

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

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.cane-marquee {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
}

.cane-marquee-track {
    display: inline-flex;
    animation: marqueeScroll 28s linear infinite;
}

.cane-marquee-group {
    display: inline-flex;
}

.cane-marquee-group span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 28px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.cane-marquee-group span i {
    color: #FFF7EA;
}

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

/* ============================================================
   SECTION HEADERS & GENERIC
   ============================================================ */
.section-categories,
.section-products,
.section-why-us,
.section-gallery {
    padding: 90px 0;
}

.section-header {
    max-width: 640px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(176, 119, 47, 0.12);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.section-categories {
    padding-top: 70px;
    background: var(--bg-cream);
}

.category-card {
    display: block;
    text-align: center;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 34px 20px;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.category-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 1.6rem;
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(176, 119, 47, 0.35);
    transition: transform 0.35s ease;
}

.category-card:hover .category-icon {
    transform: rotate(-8deg) scale(1.06);
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.category-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.section-products {
    background: var(--bg-white);
}

.product-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 44px;
}

.filter-tab {
    background: var(--bg-cream);
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.filter-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 22px rgba(176, 119, 47, 0.35);
}

.product-card-wrapper.hidden {
    display: none;
}

.product-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.product-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 2;
}

.product-badge.badge-new { background: #2E7D32; }
.product-badge.badge-premium { background: #6D4C41; }
.product-badge.badge-hot { background: #C62828; }

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 33, 25, 0.85) 0%, rgba(43, 33, 25, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 22px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.btn-enquire {
    background: #25D366;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 11px 20px;
    border-radius: 50px;
    width: 100%;
}

.btn-enquire:hover {
    background: #1ebe5b;
    color: #fff;
    transform: translateY(-2px);
}

.product-card-body {
    padding: 22px;
}

.product-category {
    display: inline-block;
    background: rgba(176, 119, 47, 0.1);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

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

.product-card-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.btn-enquire-sm {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 50px;
    width: 100%;
}

.btn-enquire-sm:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(176, 119, 47, 0.35);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.section-why-us {
    background: var(--bg-cream);
}

.why-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px 26px;
    height: 100%;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.why-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(176, 119, 47, 0.12);
    color: var(--primary);
    font-size: 1.5rem;
    border-radius: 18px;
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.why-card:hover .why-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    transform: rotate(-8deg) scale(1.05);
}

.why-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

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

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

.about-image-wrapper {
    position: relative;
}

.about-main-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    position: absolute;
    bottom: -22px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 18px;
    padding: 18px 26px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(176, 119, 47, 0.4);
}

.exp-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.7rem;
    line-height: 1.1;
}

.exp-text {
    font-size: 0.78rem;
    font-weight: 500;
    opacity: 0.95;
}

.about-content .section-tag {
    margin-bottom: 18px;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 14px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 22px;
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark);
}

.about-highlight i {
    color: var(--primary);
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 26px rgba(176, 119, 47, 0.35);
}

.btn-primary-custom:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(176, 119, 47, 0.45);
}

/* ============================================================
   GALLERY
   ============================================================ */
.section-gallery {
    background: var(--bg-cream);
}

.gallery-grid {
    justify-content: center;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(43, 33, 25, 0.7), rgba(43, 33, 25, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.gallery-overlay i {
    color: #fff;
    font-size: 1.6rem;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

/* Gallery Modal */
.gallery-modal .modal-content {
    background: var(--dark);
    border: none;
    border-radius: 18px;
    overflow: hidden;
}

.gallery-modal .btn-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 12px;
    opacity: 1;
}

.gallery-modal .modal-footer {
    justify-content: center;
    gap: 20px;
    border: none;
    background: var(--dark);
    padding: 14px;
}

.btn-gallery-nav {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 50%;
    padding: 0;
}

.btn-gallery-nav:hover {
    background: var(--primary);
    color: #fff;
}

.gallery-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    min-width: 56px;
    text-align: center;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
    padding: 90px 0;
    background: var(--bg-white);
}

.contact-info-card {
    background: var(--bg-cream);
    border: 1px solid var(--border-light);
    border-radius: 22px;
    padding: 30px;
    height: 100%;
}

.open-status-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(46, 125, 50, 0.1);
    color: #2E7D32;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.open-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2E7D32;
    animation: pulse 1.6s ease infinite;
}

.open-status-bar.closed {
    background: rgba(198, 40, 40, 0.1);
    color: #C62828;
}

.open-status-bar.closed .open-status-dot {
    background: #C62828;
    animation: none;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 22px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 1.05rem;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(176, 119, 47, 0.3);
}

.contact-info-item h5 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.contact-info-item p {
    font-size: 0.95rem;
    color: var(--dark);
    margin: 0;
}

.contact-info-item a {
    color: var(--primary);
    font-weight: 600;
}

.contact-info-item a:hover {
    color: var(--primary-dark);
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.btn-contact-call,
.btn-contact-whatsapp,
.btn-contact-directions {
    font-weight: 600;
    font-size: 0.88rem;
    padding: 11px 20px;
    border-radius: 50px;
}

.btn-contact-call {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
}

.btn-contact-call:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(176, 119, 47, 0.35);
}

.btn-contact-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-contact-whatsapp:hover {
    background: #1ebe5b;
    color: #fff;
    transform: translateY(-2px);
}

.btn-contact-directions {
    background: #fff;
    color: var(--dark);
    border: 1px solid var(--border-light);
}

.btn-contact-directions:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.contact-map-card {
    height: 100%;
    min-height: 450px;
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--dark);
    color: rgba(250, 244, 234, 0.72);
}

.footer-top-wave {
    line-height: 0;
    margin-bottom: -1px;
}

.footer-top-wave svg {
    width: 100%;
    height: 70px;
    display: block;
}

.site-footer .container {
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary-light);
    border-radius: 12px;
    font-size: 1.05rem;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h5,
.footer-contact h5 {
    color: var(--bg-white);
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(250, 244, 234, 0.72);
    font-size: 0.92rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.92rem;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 5px;
}

.footer-contact li a {
    color: rgba(250, 244, 234, 0.72);
}

.footer-contact li a:hover {
    color: var(--accent);
}

.btn-footer-whatsapp {
    background: #25D366;
    color: #fff;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 8px;
}

.btn-footer-whatsapp:hover {
    background: #1ebe5b;
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 26px 0;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    margin: 0;
}

.footer-credit {
    margin-top: 6px;
    opacity: 0.9;
}

.footer-credit .credit-link {
    color: var(--primary-light);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(231, 190, 122, 0.4);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-credit .credit-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.site-footer address ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ============================================================
   MOBILE BOTTOM BAR
   ============================================================ */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    display: flex;
    background: var(--bg-white);
    box-shadow: 0 -6px 20px rgba(43, 33, 25, 0.12);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 6px 0;
}

.mobile-bar-btn i {
    font-size: 1.2rem;
}

.mobile-bar-call { color: var(--primary); }
.mobile-bar-whatsapp { color: #25D366; }
.mobile-bar-directions { color: var(--dark); }

body {
    padding-bottom: 0;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 1.1rem;
    border: none;
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(176, 119, 47, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.35s ease;
    z-index: 1040;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    color: #fff;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
[data-animate] {
    opacity: 0;
}

[data-animate].animated {
    animation: fadeInUp 0.7s ease forwards;
}

[data-animate="fade-left"].animated {
    animation: fadeInLeft 0.8s ease forwards;
}

[data-animate="fade-right"].animated {
    animation: fadeInRight 0.8s ease forwards;
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    #mainNav {
        background: rgba(250, 244, 234, 0.98);
        box-shadow: var(--shadow-sm);
        padding: 12px 0;
    }

    #mainNav .navbar-brand,
    #mainNav .navbar-nav .nav-link {
        color: var(--dark);
    }

    #mainNav .brand-accent {
        color: var(--primary);
    }

    #mainNav .toggler-bar {
        background: var(--dark);
    }

    .navbar-collapse {
        background: var(--bg-cream);
        border-radius: 16px;
        padding: 16px;
        margin-top: 12px;
    }

    .btn-nav-call {
        margin-top: 12px;
        width: 100%;
    }

    .hero-content {
        padding: 40px 0 20px;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-ctas,
    .hero-stats {
        justify-content: center;
    }

    .hero-image-col {
        margin-top: 30px;
    }

    .hero-image-wrapper {
        padding: 10px;
    }

    .hero-floating-badge {
        padding: 10px 14px;
        font-size: 0.78rem;
    }

    .about-image-wrapper {
        margin-bottom: 40px;
    }

    .contact-map-card {
        min-height: 350px;
    }

    .contact-map-card iframe {
        min-height: 350px;
    }
}

@media (max-width: 767px) {
    .section-categories,
    .section-products,
    .section-why-us,
    .section-about,
    .section-gallery,
    .section-contact {
        padding: 70px 0;
    }

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

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-divider {
        height: 40px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .mobile-bottom-bar + .back-to-top {
        bottom: 80px;
    }

    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 44px;
        height: 44px;
    }

    .contact-buttons .btn {
        flex: 1 1 100%;
    }

    .badge-2 { right: 0; }
    .badge-3 { left: 6%; }
}
