/* Generated bundle — do not edit directly.
   Regenerate with bin/build-style-bundles.sh after editing a source file below. */

/* ---- floating-button.css ---- */
/* Floating Button Container */
.floating-appointment-btn {
    position: fixed;
    bottom: 80px;
    right: 30px;
    z-index: 9999;
    transition: all 0.5s ease;
}

/* Make it responsive */
@media (max-width: 768px) {
    .floating-appointment-btn {
        bottom: 20px;
        right: 20px;
    }
}

/* Button core style */
#appointmentContent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    white-space: nowrap;
}

/* Hover animation */
#appointmentContent:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Icon Style */
.appointment-icon {
    width: 36px;
    height: 36px;
    display: none;
    /* hidden initially */
    transition: all 0.3s ease;
}

/* Text fade/slide animations */
.btn-text {
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

/* When only icon is visible, show text on hover */
.icon-mode .btn-text {
    display: none;
    position: absolute;
    right: 100%;
    margin-right: 10px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.icon-mode:hover .btn-text {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

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

.preloader-content {
    text-align: center;
    z-index: 10;
}

.preloader-logo {
    width: 120px;
    margin-bottom: 20px;
    animation: logo-bounce 1.5s infinite;
}

.preloader-spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.preloader-spinner span {
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    animation: bounce-loader 1.2s infinite ease-in-out;
}

.preloader-spinner span:nth-child(1) {
    animation-delay: 0s;
}

.preloader-spinner span:nth-child(2) {
    animation-delay: 0.2s;
}

.preloader-spinner span:nth-child(3) {
    animation-delay: 0.4s;
}

.preloader-spinner span:nth-child(4) {
    animation-delay: 0.6s;
}

.preloader-content p {
    font-size: 16px;
    color: var(--color-secondary);
    font-weight: 500;
    letter-spacing: 1px;
    z-index: 10;
}

/* Floating items */
.floating-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.float-item {
    position: absolute;
    width: 50px;
    opacity: 0.8;
    transform-origin: center;
}

/* Logo bounce */
@keyframes logo-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-15px);
    }

    60% {
        transform: translateY(-8px);
    }
}

/* Spinner bounce */
@keyframes bounce-loader {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .preloader-logo {
        width: 90px;
    }

    .float-item {
        width: 35px;
    }

    .preloader-content p {
        font-size: 14px;
    }
}

/* ---- hero-section.css ---- */
/* =========================
   Hero Slider Base
========================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    background-color: var(--color-white);
}

/* Each slide */
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Background image */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* No object-fit defaults to `fill`, which stretches/squishes the image
       whenever its native ratio doesn't match the 100vw x 60vh box. */
    object-fit: cover;
    z-index: 0;
}

/* Dark overlay for readability */
.hero-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.2)); */
    z-index: 0.5;
}

.hero-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
}

/* =========================
   Hero Text Content
========================= */
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    color: #fff;
    background-color: #00000080;
    border-radius: 8px;
    /* Was 1s/1s/1.2s/2s running in parallel, so the hero (the only above-the-fold
       content on the page) took a full 2s to reach its final visual state —
       Lighthouse's Speed Index measures exactly that, and scored it poorly.
       Kept the same motion, just fast enough not to read as loading. */
    animation: fadeInUp 0.35s ease forwards;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 0.35s ease forwards;
}

.hero-content p {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #eee;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    animation: slideInRight 0.35s ease forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeIn 0.35s ease forwards;
}

.hero-buttons a {
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.hero-buttons .btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* =========================
   Slider Controls
========================= */
.hero-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-controls span {
    cursor: pointer;
    font-size: 2rem;
    color: var(--color-black);
    background: rgba(255, 255, 255, 0.6);
    padding: 8px 12px;
    border-radius: 50%;
    transition: 0.3s;
}

.hero-controls span:hover {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.hero-dots span {
    width: 12px;
    height: 12px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.hero-dots span.active {
    background: var(--color-primary);
}

/* =========================
   Animations
========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
    .hero-slider {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .hero-slide {
        position: relative !important;
        flex: 0 0 100%;
        opacity: 1 !important;
        scroll-snap-align: center;
        transition: none;
    }

    .hero-controls {
        display: none;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
}

.hero-slider,
.features-section {
    margin: 0 0 10px 0;
}

/* ---- promotional.css ---- */
/* ===============================
   BB APRON PROMO SECTION
================================ */

.bb-promo-section {
    background: var(--color-white);
    max-width: 1400px;
    margin: 60px auto;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

/* GRID */
.bb-promo-grid {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) 1.4fr;
    align-items: stretch;
}

/* CONTENT */
.bb-promo-content {
    padding: 40px 48px;
}

.bb-badge {
    background: var(--color-accent);
    color: var(--color-black);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 14px;
    display: inline-block;
}

.bb-promo-content h2 {
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.bb-promo-content p {
    font-size: 15px;
    color: var(--color-secondary);
    margin-bottom: 14px;
    line-height: 1.6;
}

.bb-promo-features {
    padding-left: 18px;
    margin-top: 10px;
}

.bb-promo-features li {
    margin-bottom: 10px;
    font-size: 14px;
}

.bb-promo-actions {
    margin-top: 32px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.bb-promo-tagline {
    margin-top: 12px;
    font-weight: 600;
    font-size: 14px;
}

/* IMAGE */
.bb-promo-image {
    position: relative;
    background: hsl(0, 0%, 97%);
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 600px;
}

.bb-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ✅ fills space cleanly */
    display: block;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
    .bb-promo-grid {
        grid-template-columns: 1fr;
    }

    /* Image first on mobile */
    .bb-promo-image {
        order: -1;
        max-height: 280px;
    }

    .bb-promo-content {
        padding: 24px;
    }

    .bb-promo-content h2 {
        font-size: 22px;
    }

    .bb-promo-content p,
    .bb-promo-features li {
        font-size: 13px;
    }
}

/* ---- featured-section.css ---- */
/* ===========================
   Features Section
=========================== */
.features-section {
    padding: 8px 10px;
    text-align: center;
    background: var(--color-accent);
    border-radius: var(--border-radius);
}

/* Feature Section Title Enhancement */
.section-title {
    text-align: center;
    font-size: 52px;
    /* slightly bigger */
    font-weight: 900;
    position: relative;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;

    /* Gradient Text */
    background: linear-gradient(135deg, var(--color-highlight), var(--color-orangered));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* Text Shadow for Depth */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);

    /* Animated shine effect */
    overflow: hidden;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    margin: 15px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--color-highlight), var(--color-orangered));
}

/* Shine animation */
@keyframes shine {
    0% {
        background-position: -500px;
    }

    100% {
        background-position: 500px;
    }
}

.section-title.shiny {
    background-size: 200% auto;
    animation: shine 2s linear infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Card Styles (wrapped in <a>) */
.feature-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--color-white);
    padding: 40px 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.3s ease;
    animation: fadeInUp 0.4s ease forwards;
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background: #f9f9f9;
}

/* Icon */
.feature-icon img {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.15) rotate(8deg);
}

/* Title */
.feature-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-primary);
}

/* Description */
.feature-desc {
    font-size: 18px;
    color: var(--color-secondary);
    line-height: 1.6;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile / Responsive adjustments */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    /* Icon smaller and inline */
    .feature-icon img {
        width: 50px;
        height: 50px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        margin-bottom: 0;
        margin-right: 15px;
    }

    /* Title inline next to icon */
    .feature-title {
        font-size: 20px;
        margin-bottom: 0;
        color: var(--color-primary);
    }

    /* Hide description */
    .feature-desc {
        display: none;
    }
}

@media (max-width: 768px) {
    .features-grid {
        gap: 5px;
    }
    .feature-title {

        font-size: 12px;
    }
}

/* ---- tree-card.css ---- */
/* =========================
   Tree Cards Section
   ========================= */
.tree-cards-section {
    position: relative;
    margin: 100px auto;
    padding: 40px 20px;
    max-width: 1600px;
}

/* Central vertical line */
.tree-cards-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #ccc, #eee);
    border-radius: 3px;
    z-index: 0;
}

/* Tree card */
.tree-card {
    width: 50%;
    position: relative;
    opacity: 0;
    transition: all 0.8s ease-out;
    padding: 20px 40px;
}

/* Left & Right positioning */
.tree-card.left {
    margin-right: auto;
    transform: translateX(-120px);
    text-align: right;
}

.tree-card.right {
    margin-left: auto;
    transform: translateX(120px);
    text-align: left;
}

.tree-card.show {
    opacity: 1;
    transform: translateX(0);
}

/* Connector node circle */
.tree-card::before {
    content: "";
    position: absolute;
    top: 30px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f0f0f0;
    z-index: 1;
}

.tree-card.left::before {
    right: -11px;
}

.tree-card.right::before {
    left: -11px;
}

/* Card content with top border */
.tree-card-content {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 5px solid transparent;
}

.tree-card-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Card Header: Icon + Title */
.tree-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Full Circle Icon */
.tree-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.tree-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Card top border colors */
.tree-accent-green {
    border-top-color: #4CAF50;
}

.tree-accent-blue {
    border-top-color: #2196F3;
}

.tree-accent-orange {
    border-top-color: #FF9800;
}

/* Card text */
.tree-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

.tree-card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 768px) {

    .tree-cards-section {
        padding: 0 5px;
        /* minimal side gap */
        margin: 0 auto;
        max-width: 100%;
    }

    .tree-card,
    .tree-card.left,
    .tree-card.right {
        width: calc(100% - 10px);
        /* leave just space for tree line */
        margin: 10px 0;
        padding: 15px 15px 15px 50px;
        /* more space for line & node */
        text-align: left !important;
        position: relative;
        transform: translateX(0);
    }

    /* Vertical line thinner and on the left */
    .tree-cards-section::before {
        left: 15px;
        transform: translateX(0);
        width: 3px;
        height: 100%;
        background: linear-gradient(to bottom, #ccc, #eee);
    }

    /* Node circle */
    .tree-card::before {
        left: 15px;
        transform: translateX(-50%);
        width: 14px;
        height: 14px;
        top: 25px;
        background: #ddd;
        border: 2px solid #bbb;
        z-index: 1;
    }

    /* Header stacked vertically but spaced */
    .tree-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Icon aligned inside card but above text */
    .tree-icon {
        width: 50px;
        height: 50px;
        position: relative;
        left: 0;
        top: 0;
    }

    .tree-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ---- product-carousel.css ---- */
/* ===================== Product Carousel ===================== */
.prodcar-carousel-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.prodcar-carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.prodcar-carousel-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.prodcar-carousel-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.prodcar-carousel-seeall {
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #222;
    padding: 6px 14px;
    border-radius: 8px;
    color: #222;
    transition: 0.3s;
}

.prodcar-carousel-seeall:hover {
    background: #222;
    color: #fff;
}

.prodcar-carousel-arrow {
    font-size: 22px;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.06);
    transition: 0.3s;
    user-select: none;
}

.prodcar-carousel-arrow:hover {
    background: #222;
    color: #fff;
}

/* ===================== Track ===================== */
.prodcar-carousel-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.prodcar-carousel-container.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.prodcar-carousel-container.dragging .prodcar-card {
    pointer-events: none;
}

.prodcar-carousel-container::-webkit-scrollbar {
    display: none;
}

.prodcar-carousel-track {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    will-change: transform;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

/* ===================== Cards ===================== */
.prodcar-card {
    flex: 0 0 25%;
    background: #fff;
    border-radius: 14px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.prodcar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

/* ===================== Image Wrapper ===================== */
.prodcar-img-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    width: 100%;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.prodcar-img-wrapper img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Default image visible */
.prodcar-img-wrapper .main-img {
    opacity: 1;
    z-index: 1;
}

/* Hover image hidden initially */
.prodcar-img-wrapper .hover-img {
    opacity: 0;
    z-index: 2;
}

/* On hover: fade main out, fade hover in */
.prodcar-card:hover .prodcar-img-wrapper .main-img {
    opacity: 0;
    transform: scale(1.05);
}

.prodcar-card:hover .prodcar-img-wrapper .hover-img {
    opacity: 1;
    transform: scale(1.05);
}

/* ===================== Info ===================== */
.prodcar-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.prodcar-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.prodcar-price {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.prodcar-price-original {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

.prodcar-price-discount {
    color: #e53935;
    font-weight: 700;
}

/* ===================== Meta Info ===================== */
.prodcar-meta {
    font-size: 14px;
    display: flex;
    gap: 10px;
    color: #666;
}

/* ===================== Button ===================== */
.prodcar-btn-add-cart {
    margin-top: auto;
    padding: 10px 12px;
    font-size: 14px;
    border: none;
    background: #e53935;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.prodcar-btn-add-cart:hover {
    background: #d32f2f;
    transform: scale(1.05);
}

/* ===================== Responsive ===================== */
@media (max-width: 1200px) {
    .prodcar-card {
        flex: 0 0 33.333%;
        min-height: 400px;
    }
}

@media (max-width: 900px) {
    .prodcar-card {
        flex: 0 0 50%;
        min-height: 360px;
    }

    .prodcar-carousel-title {
        font-size: 24px;
    }

    .prodcar-carousel-seeall,
    .prodcar-carousel-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    .prodcar-card {
        flex: 0 0 80%;
        min-height: 320px;
    }

    .prodcar-title {
        font-size: 16px;
    }

    .prodcar-price {
        font-size: 15px;
    }
}

.toast-message {
    position: fixed;
    top: 30px;
    right: 30px;
    background: #333;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.toast-message.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-message.success {
    background: #28a745;
}

.toast-message.error {
    background: #dc3545;
}

/* ---- counter-section.css ---- */
.counter-section {
    background: url('../images/hero/tailor.jpg') no-repeat center center/cover;
    padding: 100px 20px;
    position: relative;
    color: var(--color-white);
    text-align: center;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* dark overlay */
    z-index: 1;
}

.counter-section .container {
    position: relative;
    z-index: 2;
}

.counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.counter-box {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-6px);
}

.counter {
    font-size: 40px;
    font-weight: bold;
    color: var(--color-white);
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 16px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .counter {
        font-size: 32px;
    }

    .counter-box p {
        font-size: 14px;
    }
}

/* ---- partner-section.css ---- */
/* ============================
   Partner Section
============================ */
.our-partners {
    padding: 80px 20px;
    background-color: var(--color-white);
    text-align: center;
    overflow: hidden;
    position: relative;
}

.section-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--color-black);
    text-transform: uppercase;
    animation: fadeInUp 0.4s ease-in-out forwards;
}

/* Carousel Container */
.partner-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

/* Scrolling Track */
.partner-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

/* Partner Logo Card */
.partner-logo {
    flex: 0 0 auto;
    background: var(--color-accent);
    padding: 20px 30px;
    margin: 10px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-black);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    min-width: 180px;
}

.partner-logo img {
    width: 120px;
    height: 80px;
    margin-bottom: 8px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.partner-title {
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

/* Hover Effect */
.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: var(--color-white);
}

/* Infinite Scroll Animation */
@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* -50% because we duplicate logos */
}

/* Pause on Hover */
.partner-carousel:hover .partner-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .partner-logo {
        padding: 15px 20px;
        min-width: 140px;
    }

    .partner-logo img {
        max-height: 60px;
    }

    .partner-title {
        font-size: 14px;
    }
}

/* ---- subscriber-section.css ---- */
.newsletter-section {
    background-image: url('../images/hero/apron.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    position: relative;
    color: var(--color-white);
    overflow: hidden;
}

.newsletter-overlay {
    background-color: rgba(0, 0, 0, 0.575);
    padding: 60px 20px;
    border-radius: var(--border-radius);
    animation: fadeIn 2s ease-in-out;
}

.newsletter-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 36px;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: slideInUp 1s ease;
}

.newsletter-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    animation: slideInUp 1.2s ease;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    animation: slideInUp 1.4s ease;
}

.newsletter-form input[type="text"] {
    padding: 12px 16px;
    font-size: 16px;
    border: none;
    border-radius: var(--border-radius);
    outline: none;
    width: 300px;
    max-width: 100%;
}

.newsletter-form .btn {
    padding: 12px 24px;
    border: none;
    cursor: pointer;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-title {
        font-size: 26px;
    }

    .newsletter-subtitle {
        font-size: 16px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form .btn {
        width: 100%;
    }
}

/* ---- testimonial.css ---- */
.customer-reviews-section {
    background: linear-gradient(to right, #f5f5f5, #ffffff);
    padding: 80px 20px;
    text-align: center;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    color: #000;
    margin-bottom: 40px;
    text-transform: uppercase;
    animation: fadeInDown 0.4s ease-in-out forwards;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    animation: fadeInUp 0.4s ease-in-out forwards;
}

.review-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
}

.review-card:hover {
    transform: translateY(-6px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.review-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.review-stars {
    font-size: 18px;
    margin-top: 4px;
}

.review-stars .star {
    color: #767676;
    /* inactive stars — darkened from #ccc (~1.6:1 on white) to meet the 4.5:1 text-contrast minimum */
    margin-right: 2px;
    display: inline-block;
    pointer-events: none;
    /* disable hover and click */
    transition: none;
}

.review-stars .star.active {
    color: gold;
    /* active stars */
}

.review-body p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 22px;
    margin: 0;
}

.review-body p::before {
    content: "“";
    font-size: 40px;
    position: absolute;
    left: 0;
    top: -10px;
    color: #ff6600;
}

.review-button {
    margin-top: 50px;
    font-size: 15px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 8px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        transform: translateY(-40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 22px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .review-info h4 {
        font-size: 14px;
    }

    .review-stars {
        font-size: 14px;
    }

    .review-body p {
        font-size: 14px;
        padding-left: 18px;
    }

    .review-body p::before {
        font-size: 32px;
    }

    .review-button {
        width: 100%;
        font-size: 14px;
    }

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

/* ---- user-review.css ---- */
/* ===============================
   Review Section (Finalized)
   =============================== */

/* Review Section Base */
.review-section {
    min-height: 100vh;
    padding: 60px 20px;
    background: linear-gradient(to right, #f5f5f5, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Style */
.review-card {
    background-color: var(--color-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

/* Titles */
.review-title {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.review-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
    color: var(--color-secondary);
}

/* ===============================
   Unique BB Star Rating
   =============================== */
.bb-stars {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.bb-star {
    font-size: 32px;
    color: #ccc;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
}

.bb-star.active {
    color: #FFD700;
    /* Gold when selected */
    transform: scale(1.2);
}

.bb-star.hover {
    color: #FFD700;
    /* Gold on hover */
    transform: scale(1.2);
}

/* ===============================
   Responsive Styles
   =============================== */
@media (max-width: 768px) {
    .review-title {
        font-size: 22px;
    }

    .review-subtitle {
        font-size: 14px;
    }

    .bb-star {
        font-size: 28px;
    }
}
