/* Reset & Base Styles */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Georgia, serif;
    background-color: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


/* Navigation Bar */

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    z-index: 100;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    transition: padding 0.3s ease;
}

.brand {
    font-family: "Georgia", serif;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.2;
    z-index: 102;
}

.brand span {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 8px;
    letter-spacing: 2.5px;
    opacity: 0.65;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.btn-quote {
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 9px 18px;
    border-radius: 2px;
    transition: all 0.3s ease !important;
}

.btn-quote:hover {
    background: #ffffff;
    color: #000000 !important;
}


/* Hamburger Menu Icon */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 102;
    padding: 0;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}


/* Hamburger Animation to 'X' */

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* Sticky Scroll Container */

.carousel-track {
    height: 100vh;
    position: relative;
    width: 100vw;
    overflow: hidden;
}

.sticky-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #0a0a0a;
}


/* Stacked Bouquet Layers */

.stage-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.kitchen-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s ease-out;
    transform: scale(1.02);
    filter: brightness(0.7) contrast(1.05);
}


/* Base Layer stays visible continuously */

.layer-base {
    opacity: 1;
    transform: scale(1);
}


/* Visible State for Active Layers */

.kitchen-layer.visible {
    opacity: 1;
    transform: scale(1);
}


/* Text Content Overlays */

.content-stage {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    width: 100%;
    max-width: 540px;
    height: 320px;
    z-index: 50;
    display: flex;
    align-items: center;
}

.text-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.text-card.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.subtitle {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.title {
    font-family: "Georgia", serif;
    font-size: 54px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}

.description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    max-width: 420px;
}

.cta-button {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 28px;
    background-color: #5c3a41;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 2px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #784b55;
}


/* Scroll Prompt Indicator (Replaced / Optional) */

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.5;
    z-index: 50;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
}


/* Responsive Breakpoints */

@media (max-width: 1024px) {
    nav {
        padding: 24px 32px;
    }
    .content-stage {
        left: 6%;
        max-width: 480px;
    }
    .title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px 24px;
    }
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        z-index: 101;
        transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .nav-links.nav-active {
        right: 0;
    }
    .nav-links a {
        font-size: 14px;
        letter-spacing: 3px;
    }
    .content-stage {
        left: 5%;
        right: 5%;
        width: 90%;
        max-width: 100%;
        height: auto;
    }
    .title {
        font-size: 36px;
    }
    .description {
        font-size: 13px;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .brand {
        font-size: 16px;
    }
    .brand span {
        font-size: 7px;
        letter-spacing: 1.8px;
    }
    .title {
        font-size: 30px;
    }
    .subtitle {
        font-size: 10px;
        letter-spacing: 2px;
    }
    .cta-button {
        padding: 12px 22px;
        font-size: 10px;
    }
    .scroll-indicator {
        bottom: 18px;
        font-size: 8px;
        padding: 4px 12px;
    }
}

.content-stage {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
}


/* Fixed Search Bar Styling */

.hero-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
    margin-bottom: 24px;
    z-index: 60;
    flex-shrink: 0;
}

.hero-search-form {
    display: flex;
    align-items: center;
    background: rgba(13, 13, 13, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 6px 6px 6px 16px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    min-height: 50px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-search-form:focus-within {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

.search-icon {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.75);
    margin-right: 10px;
    flex-shrink: 0;
}

.hero-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    font-family: inherit;
}

.hero-search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.hero-search-button {
    background-color: #5c3a41;
    color: #ffffff;
    border: none;
    outline: none;
    padding: 10px 20px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
}

.hero-search-button:hover {
    background-color: #784b55;
}


/* Adjust text-cards relative to fixed search bar */

.text-card {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    display: none !important;
}

.text-card.active {
    display: flex !important;
}


/* Mobile Alignment Fixes */

@media (max-width: 768px) {
    .hero-search-wrapper {
        max-width: 100%;
        margin-bottom: 20px;
    }
    .hero-search-form {
        padding: 6px 6px 6px 14px;
        min-height: 48px;
    }
    .hero-search-input {
        font-size: 12px;
    }
    .hero-search-button {
        padding: 9px 16px;
        font-size: 9px;
    }
}


/* Carousel Indicators Styling */

.carousel-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 50;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: #ffffff;
    transform: scale(1.2);
}


/* CATEGORIES SECTION */


/* SECTION 2: Minimal Compact Circular Categories */

.categories-section {
    background-color: #ffffff;
    padding: 60px 24px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.categories-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1a1a1a;
    flex: 1;
    min-width: 100px;
    cursor: pointer;
}

.circle-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    padding: 4px;
    background: #ffffff;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.circle-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid #F9EFEA;
    transition: all 0.4s ease;
}

.image-box {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
    filter: brightness(0.96);
}

.category-title {
    margin-top: 12px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    color: #333333;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1.35;
}

.category-card:hover .circle-wrapper {
    transform: translateY(-5px);
}

.category-card:hover .circle-wrapper::before {
    border-color: #E2B4BD;
    box-shadow: 0 6px 16px rgba(249, 239, 234, 0.9);
}

.category-card:hover .image-box img {
    transform: scale(1.08);
    filter: brightness(1.02);
}

.category-card:hover .category-title {
    color: #784b55;
}


/* Responsive Mobile Horizontal Scroll */

@media (max-width: 900px) {
    .categories-section {
        padding: 40px 0;
    }
    .categories-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 8px 20px 20px 20px;
        gap: 16px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .categories-container::-webkit-scrollbar {
        display: none;
    }
    .category-card {
        scroll-snap-align: center;
        flex: 0 0 auto;
        min-width: 85px;
    }
    .circle-wrapper {
        width: 75px;
        height: 75px;
        padding: 3px;
    }
    .category-title {
        font-size: 9px;
        letter-spacing: 1px;
        margin-top: 10px;
    }
}


/* CARDS SECTION */


/* Main Section Container (Full Width Fix) */

.products-section {
    width: 100%;
    max-width: 100%;
    /* Removes max-width restriction for edge-to-edge coverage */
    margin: 0;
    padding: 16px 12px 30px 12px;
    /* Edge padding for mobile */
    background-color: #ffffff;
    box-sizing: border-box;
}

.products-header {
    text-align: center;
    margin-bottom: 20px;
    background-color: #ffffff;
    color: black;
}

.products-header h2 {
    font-weight: 500;
}


/* Mobile First: 2 Cards per Row Grid */

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    background-color: #ffffff;
    width: 100%;
}


/* Outer Card Container */

.product-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}


/* Image & Category Pill Wrapper */

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #ffffff;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Category Badge */

.category-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(255, 255, 255, 0.94);
    color: #4a4a4a;
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    padding: 3px 7px;
    border-radius: 12px;
    text-transform: uppercase;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 2;
    white-space: nowrap;
}


/* Card Content Details */

.card-content {
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    background-color: #ffffff;
}

.card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}


/* Product Title */

.product-title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Georgia, serif;
    font-size: 15px;
    font-weight: 500;
    color: #222222;
    margin: 0;
    line-height: 1.25;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2rem;
}


/* Price */

.product-price {
    font-size: 0.92rem;
    font-weight: 450;
    color: #000000;
}


/* Add to Cart Outline Button */

.add-to-cart-btn {
    width: 100%;
    padding: 7px 0;
    background-color: #ffffff;
    border: 1px solid #582e38;
    color: #582e38;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.add-to-cart-btn:hover {
    background-color: #582e38;
    color: #ffffff;
}


/* Tablet Devices (600px - 991px - 3 Cards per row) */

@media (min-width: 600px) {
    .products-section {
        padding: 24px 24px 40px 24px;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .card-content {
        padding: 12px;
    }
    .category-badge {
        top: 8px;
        left: 8px;
        font-size: 0.6rem;
        padding: 4px 8px;
    }
    .product-title {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Georgia, serif;
        font-size: 0.88rem;
    }
    .product-price {
        font-size: 1.05rem;
    }
    .add-to-cart-btn {
        padding: 8px 0;
        font-size: 0.78rem;
    }
}


/* Desktop Devices (992px and up - Full Width 4 Cards per row) */

@media (min-width: 992px) {
    .products-section {
        padding: 40px 48px 60px 48px;
        /* Generous side padding for desktop layout */
    }
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .product-card {
        border-radius: 16px;
    }
    .card-content {
        padding: 16px;
    }
    .category-badge {
        top: 10px;
        left: 10px;
        font-size: 0.65rem;
        padding: 5px 10px;
    }
    .product-title {
        font-size: 0.98rem;
        min-height: 2.4rem;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Georgia, serif;
    }
    .product-price {
        font-size: 1rem;
        font-weight: 400;
    }
    .add-to-cart-btn {
        padding: 10px 0;
        font-size: 0.85rem;
    }
}


/* VIEW ALL CARDS BUTTON */


/* View All Button Wrapper */

.view-all-container {
    text-align: center;
    margin-top: 24px;
    width: 100%;
}


/* View All Link/Button Style */

.view-all-btn {
    display: inline-block;
    padding: 10px 28px;
    background-color: #582e38;
    border: 1.1px solid #582e38;
    color: white;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.25s ease-in-out;
}

.view-all-btn:hover {
    background-color: #5c3a41;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(88, 46, 56, 0.2);
    transform: translateY(-2px);
}


/* Responsive adjustments */

@media (min-width: 600px) {
    .view-all-container {
        margin-top: 32px;
    }
    .view-all-btn {
        padding: 12px 36px;
        font-size: 0.85rem;
    }
}


/* Extra Large Desktop Screens (1400px and up) */

@media (min-width: 1400px) {
    .products-section {
        padding: 40px 80px 60px 80px;
    }
    .products-grid {
        gap: 24px;
    }
}


/* TESTIMONIALS SECTION */

.testimonials-section {
    background-color: #faf8f5;
    padding: 80px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1a1a1a;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px auto;
    padding: 0 24px;
}

.testimonials-header h2 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 8px 0;
}

.testimonials-header p {
    font-size: 13px;
    letter-spacing: 1px;
    color: #666666;
    margin: 0;
    text-transform: uppercase;
}


/* Slider Container & Track */

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}


/* Soft fade gradient on track edges */

.testimonial-slider::before,
.testimonial-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonial-slider::before {
    left: 0;
    background: linear-gradient(to right, #faf8f5 0%, rgba(250, 248, 245, 0) 100%);
}

.testimonial-slider::after {
    right: 0;
    background: linear-gradient(to left, #faf8f5 0%, rgba(250, 248, 245, 0) 100%);
}

.testimonial-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: autoScroll 35s linear infinite;
}

.testimonial-slider:hover .testimonial-track {
    animation-play-state: paused;
}


/* Infinite Scroll Keyframes */

@keyframes autoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 12px));
    }
}


/* REVIEW ADDING SECTION */

.review-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
    background-color: #f7f9fc;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}


/* Minimal Button Styling */

.simple-review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 220px;
    gap: 10px;
    padding: 18px 18px;
    color: #3c4043;
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 12px;
    text-decoration: none;
    font-family: inherit;
    font-size: 12px;
    font-weight: 400;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}


/* Hover State */

.simple-review-link:hover {
    background-color: #f8f9fa;
    border-color: #bdc1c6;
    color: #1a73e8;
}


/* -------------------------------------------------- */


/* EXPLODED IMG SECTION */

.isolated-scroll-section {
    position: relative;
    width: 100%;
    height: 250vh;
    /* Adjust total scroll length for this section */
    background-color: #000000;
    /* Containment fix: prevents fixed elements from bleeding into outside sections */
    clip-path: inset(0 0 0 0);
}

.isolated-scroll-section .sticky-frame {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

.isolated-scroll-section .image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.isolated-scroll-section .bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
}

.isolated-scroll-section .bg-img.active {
    opacity: 1;
}


/* DESKTOP IMAGES */

#img-1 {
    background-image: url('../assets/images/land1.png');
}

#img-2 {
    background-image: url('../assets/images/land2.png');
}


/* TABLET VIEWPORT */

@media (max-width: 1024px) {
    .isolated-scroll-section {
        height: 200vh;
    }
    #img-1 {
        background-image: url('../assets/images/land1.png');
    }
    #img-2 {
        background-image: url('../assets/images/land2.png');
    }
}


/* MOBILE VIEWPORT */

@media (max-width: 640px) {
    .isolated-scroll-section {
        height: 180vh;
    }
    #img-1 {
        background-image: url('../assets/images/port1.png');
        object-fit: cover;
        background-position: top right;
    }
    #img-2 {
        background-image: url('../assets/images/port2.png');
        object-fit: cover;
        background-position: top right;
    }
}


/* -------------------------------- */


/* Testimonial Card Styling */

.testimonial-section {
    position: relative;
    width: 100%;
    padding: 80px 40px 10px 40px;
    margin: 0;
    background-color: #f7f9fc;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333;
    box-sizing: border-box;
    overflow-x: hidden;
}

.testimonial-section *,
.testimonial-section *::before,
.testimonial-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* SECTION HEADER */

.testimonial-section .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px auto;
}

.testimonial-section .main-heading {
    font-size: 38px;
    font-weight: 450;
    color: #101828;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.testimonial-section .sub-heading {
    font-size: 14px;
    color: #667085;
    line-height: 1.6;
    font-weight: 400;
}


/* 3-COLUMN DESKTOP BACKGROUND GRID */

.testimonial-section .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    max-width: 1400px;
    /* Optional max container width for cards inner grid */
    margin: 0 auto;
    position: relative;
}


/* BASE CARD STYLING */

.testimonial-section .t-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 180px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}


/* FADED DESKTOP BACKGROUND LAYER */

.testimonial-section .t-card.faded {
    opacity: 0.35;
    filter: grayscale(10%);
}


/* CARD COMPONENTS */

.testimonial-section .t-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.testimonial-section .t-avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial-section .t-info {
    display: flex;
    flex-direction: column;
}

.testimonial-section .t-name {
    font-size: 15px;
    font-weight: 700;
    color: #101828;
    letter-spacing: -0.2px;
}

.testimonial-section .t-role {
    font-size: 12px;
    color: #667085;
    font-weight: 500;
}

.testimonial-section .t-stars {
    color: #ffb800;
    font-size: 14px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.testimonial-section .t-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #475467;
}


/* FLOATING POP-OUT CARDS (DESKTOP) */

.testimonial-section .floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09), 0 4px 12px rgba(0, 0, 0, 0.03);
    z-index: 10;
    width: 380px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-section .float-left-card {
    top: 25%;
    left: 12%;
}

.testimonial-section .float-right-card {
    top: 14%;
    right: 12%;
}


/* MOBILE INFINITE AUTO-SCROLL CAROUSEL */

.testimonial-section .mobile-carousel-wrapper {
    display: none;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 24px 0;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.testimonial-section .mobile-carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: tAutoScroll 28s linear infinite;
}

.testimonial-section .mobile-carousel-track:hover {
    animation-play-state: paused;
}

.testimonial-section .mobile-card {
    flex: 0 0 310px;
    height: 250px;
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@keyframes tAutoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* RESPONSIVE SWITCH */

@media (max-width: 1120px) {
    .testimonial-section .floating-card {
        width: 330px;
        padding: 24px 20px;
    }
    .testimonial-section .float-left-card {
        left: 5%;
        top: 26%;
    }
    .testimonial-section .float-right-card {
        right: 5%;
        top: 16%;
    }
}

@media (max-width: 820px) {
    .testimonial-section {
        padding: 50px 0;
    }
    .testimonial-section .section-header {
        padding: 0 20px;
        margin-bottom: 32px;
    }
    .testimonial-section .main-heading {
        font-size: 28px;
    }
    .testimonial-section .sub-heading {
        font-size: 15px;
    }
    .testimonial-section .grid-container {
        display: none;
    }
    .testimonial-section .mobile-carousel-wrapper {
        display: block;
    }
}


/* FORM SECTION */


/* SCOPED SECTION BASE */

.contact-section {
    position: relative;
    width: 100%;
    padding: 80px 40px;
    margin: 0;
    background-color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333333;
    box-sizing: border-box;
    overflow-x: hidden;
}

.contact-section *,
.contact-section *::before,
.contact-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* TWO PART LAYOUT CONTAINER */

.contact-section .contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}


/* PART 1: FORM STYLING */

.contact-section .form-part {
    flex: 1;
    width: 100%;
}

.contact-section .form-header {
    margin-bottom: 32px;
}

.contact-section .form-title {
    font-size: 36px;
    font-weight: 450;
    color: #000000;
    line-height: 1.2;
    letter-spacing: -0.8px;
    margin-bottom: 12px;
}

.contact-section .form-subtitle {
    font-size: 14px;
    color: #667085;
    line-height: 1.5;
}

.contact-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-section .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-section .form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    color: #101828;
    background: #f8fafc;
    border: 1px solid #eaecf0;
    border-radius: 8px;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
    background: #ffffff;
    border-color: #523743;
    box-shadow: 0 0 0 4px rgba(82, 55, 67, 0.12);
}

.contact-section .form-group textarea {
    resize: vertical;
    min-height: 130px;
}


/* SUBMIT BUTTON WITH EXTRACTED IMAGE COLOR (#523743) */

.contact-section .submit-btn {
    width: 100%;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    background-color: #523743;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(82, 55, 67, 0.25);
}

.contact-section .submit-btn:hover {
    background-color: #3f2a33;
    box-shadow: 0 6px 16px rgba(82, 55, 67, 0.35);
}

.contact-section .submit-btn:active {
    transform: scale(0.99);
}


/* PART 2: GRAPHIC / SVG PART */

.contact-section .svg-part {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.contact-section .svg-wrapper {
    width: 100%;
    max-width: 520px;
    height: auto;
}

.contact-section .svg-wrapper svg {
    width: 100%;
    height: auto;
    display: block;
}


/* RESPONSIVE LAYOUT */

@media (max-width: 992px) {
    .contact-section .contact-container {
        flex-direction: column-reverse;
        gap: 60px;
    }
    .contact-section .svg-part {
        max-width: 380px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 50px 20px;
    }
    .contact-section .form-title {
        font-size: 22px;
        text-align: center;
    }
    .contact-section .form-subtitle {
        font-size: 14px;
        text-align: center;
    }
}


/* FAQ'S SECTION */

.faq-section {
    position: relative;
    width: 100%;
    padding: 100px 40px;
    margin: 0;
    background-color: #fafafa;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #1a1a1a;
    box-sizing: border-box;
    overflow-x: hidden;
}

.faq-section *,
.faq-section *::before,
.faq-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* TWO PART LAYOUT CONTAINER */

.faq-section .faq-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 72px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}


/* PART 1 (LEFT): IMAGE PART */

.faq-section .image-part {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.faq-section .image-wrapper {
    position: relative;
    width: 100%;
    max-width: 640px;
    height: 620px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.faq-section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-section .image-wrapper:hover img {
    transform: scale(1.03);
}


/* PART 2 (RIGHT): FAQS PART */

.faq-section .faq-part {
    flex: 1.1;
    width: 100%;
}

.faq-section .faq-header {
    margin-bottom: 40px;
}

.faq-section .faq-title {
    font-size: 36px;
    font-weight: 450;
    color: #111111;
    line-height: 1.2;
    letter-spacing: -0.9px;
    margin-bottom: 12px;
}

.faq-section .faq-subtitle {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}


/* ACCORDION CONTAINER */

.faq-section .faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* MINIMAL ACCORDION ITEM WITH CSS GRID ANIMATION */

.faq-section .faq-item {
    background: #ffffff;
    /* border: 1px solid #eef0f2; */
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-section .faq-item:hover {
    border-color: #d1d5db;
}

.faq-section .faq-item.active {
    border-color: #523743;
    box-shadow: 0 10px 30px rgba(82, 55, 67, 0.05);
}

.faq-section .faq-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: transparent;
    border: none;
    font-size: 17px;
    font-weight: 600;
    color: #111111;
    text-align: left;
    cursor: pointer;
    gap: 16px;
    font-family: inherit;
}


/* MINIMAL SVG PLUS/MINUS ICON ANIMATION */

.faq-section .faq-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-section .faq-icon {
    width: 14px;
    height: 14px;
    stroke: #523743;
    stroke-width: 2.2;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-section .faq-item.active .faq-icon-wrapper {
    background: #523743;
}

.faq-section .faq-item.active .faq-icon {
    stroke: #ffffff;
    transform: rotate(135deg);
}


/* SMOOTH EXPAND/COLLAPSE CONTENT GRID */

.faq-section .faq-content-grid {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-section .faq-item.active .faq-content-grid {
    grid-template-rows: 1fr;
}

.faq-section .faq-content-inner {
    overflow: hidden;
}

.faq-section .faq-answer {
    padding: 0 28px 24px 28px;
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.faq-section .faq-item.active .faq-answer {
    opacity: 1;
    transform: translateY(0);
}


/* RESPONSIVE LAYOUT */

@media (max-width: 992px) {
    .faq-section .faq-container {
        flex-direction: column;
        gap: 48px;
    }
    .faq-section .image-wrapper {
        max-width: 100%;
        height: 420px;
    }
}

@media (max-width: 600px) {
    .faq-section {
        padding: 60px 20px;
    }
    .faq-section .faq-title {
        font-size: 22px;
    }
    .faq-section .faq-btn {
        padding: 18px 20px;
        font-size: 15px;
    }
    .faq-section .faq-answer {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
    .faq-section .image-wrapper {
        height: 380px;
        border-radius: 16px;
    }
}


/* FOOTER */

.site-footer {
    position: relative;
    width: 100%;
    background-color: #121212;
    color: #e5e5e5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    padding: 80px 40px 30px 40px;
    box-sizing: border-box;
    overflow-x: hidden;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* MAIN FOOTER LAYOUT CONTAINER */

.site-footer .footer-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}


/* BRANDING COLUMN (LEFT) */

.site-footer .brand-col {
    flex: 1.2;
    max-width: 380px;
}

.site-footer .footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2.5px;
    margin-bottom: 20px;
    font-family: "Georgia", serif;
}

.site-footer .brand-tagline {
    font-size: 15px;
    line-height: 1.7;
    color: #a3a3a3;
    margin-bottom: 28px;
}


/* SOCIAL MEDIA ICONS */

.site-footer .social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-footer .social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1e1e1e;
    color: #ffffff;
    border: 1px solid #2a2a2a;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.site-footer .social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.site-footer .social-btn:hover {
    background: #523743;
    border-color: #523743;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(82, 55, 67, 0.3);
}

.site-footer .social-btn:hover svg {
    transform: scale(1.1);
}


/* QUICK LINKS COLUMN (RIGHT) */

.site-footer .links-col {
    flex: 2;
}

.site-footer .links-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
}

.site-footer .links-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 24px;
    height: 2px;
    background-color: #523743;
    border-radius: 2px;
}


/* 3-COLUMN GRID FOR QUICK LINKS */

.site-footer .quick-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 30px;
}

.site-footer .link-card {
    display: block;
    background: #181818;
    border: 1px solid #262626;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer .link-card:hover {
    background: #222222;
    border-color: #523743;
    transform: translateY(-2px);
}

.site-footer .link-category {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #523743;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 2px;
}

.site-footer .link-name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}


/* BOTTOM BAR COPYRIGHT */

.site-footer .footer-bottom {
    max-width: 1280px;
    margin: 60px auto 0 auto;
    padding-top: 24px;
    border-top: 1px solid #222222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #737373;
}

.site-footer .footer-bottom-links {
    display: flex;
    gap: 20px;
}

.site-footer .footer-bottom-links a {
    color: #737373;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer .footer-bottom-links a:hover {
    color: #ffffff;
}


/* RESPONSIVE LAYOUT */

@media (max-width: 992px) {
    .site-footer .footer-container {
        flex-direction: column;
        gap: 48px;
    }
    .site-footer .brand-col {
        max-width: 100%;
    }
    .site-footer .quick-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .site-footer {
        padding: 60px 20px 24px 20px;
    }
    .site-footer .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .site-footer .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}


/* FIXED ICONS */

.floating-dock {
    position: fixed;
    right: 20px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.dock-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.dock-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.dock-btn svg {
    width: 26px;
    height: 26px;
}

.dock-btn.cart {
    background-color: #B0416E;
}

.notification-badge {
    position: absolute;
    top: -2px;
    left: -2px;
    background-color: #D4AF37;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    font-family: Arial, sans-serif;
}

.dock-btn.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aebe6 90%);
}

.dock-btn.whatsapp {
    background-color: #25D366;
}


/* CART OVERLAY AND SLIDE-IN DRAWER */

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background-color: #FFFFFF;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-overlay.active .cart-drawer {
    right: 0;
}

.drawer-header {
    padding: 1.25rem;
    background-color: #FAF6F0;
    border-bottom: 1px solid #E8DFD8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.drawer-title {
    font-size: 1.2rem;
    font-family: "Georgia", serif;
    font-weight: 600;
    color: #0a0a0a;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #333333;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
}

.drawer-body {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    color: #333333;
}

.empty-cart-msg {
    text-align: center;
    color: #795548;
    margin-top: 3rem;
    font-style: italic;
}

.drawer-footer {
    padding: 1.25rem;
    border-top: 1px solid #E8DFD8;
    background-color: #FAF6F0;
    flex-shrink: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    color: #3C2A21;
    margin-bottom: 1rem;
}

.checkout-wa-btn {
    width: 100%;
    background-color: #25D366;
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.25);
    transition: background-color 0.2s ease;
}

.checkout-wa-btn:hover {
    background-color: #1DA851;
}


/* MOBILE RESPONSIVE MEDIA QUERIES */

@media (max-width: 480px) {
    .floating-dock {
        right: 14px;
        bottom: 18px;
        gap: 10px;
    }
    .dock-btn {
        width: 46px;
        height: 46px;
    }
    .dock-btn svg {
        width: 22px;
        height: 22px;
    }
    .notification-badge {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }
    .cart-drawer {
        max-width: 100%;
    }
}