:root {
    --primary-orange: #ff7a3d;
    --secondary-orange: #ffa366;
    --dark-orange: #e65a1a;
    --cream: #fffaf5;
    --light-cream: #fff5ed;
    --darker-cream: #ffe8d6;
    --text-dark: #3d2817;
    --text-gray: #7a6a5a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    font-family: "Inter", "Segoe UI", sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
}

/* ===== NAVBAR ===== */
.navbar {
    background: rgba(255, 250, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(230, 90, 26, 0.08);
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(255, 250, 245, 0.98);
    box-shadow: 0 4px 25px rgba(230, 90, 26, 0.12);
}

.navbar-brand {
    font-size: 1.85rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.navbar-brand img {
    width: 100px;
}

.navbar-brand i {
    font-size: 2.2rem;
    color: var(--primary-orange);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0 0.8rem;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--primary-orange),
        var(--secondary-orange)
    );
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-item.active .nav-link {
    color: var(--primary-orange);
}

.nav-item.active .nav-link::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link:hover::before {
    width: 100%;
}

.btn-cta {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(230, 90, 26, 0.3);
    font-size: 0.95rem;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 90, 26, 0.45);
    color: white;
}

/* ===== HERO SECTIONS ===== */
/* Hero Section - Home */
.hero-section {
    background: linear-gradient(
        135deg,
        var(--cream) 0%,
        var(--light-cream) 50%,
        var(--darker-cream) 100%
    );
    padding: 100px 0px 0px 0px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 122, 61, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 163, 102, 0.12) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 122, 61, 0.15);
    color: var(--primary-orange);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 122, 61, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 90, 26, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-primary-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(230, 90, 26, 0.5);
    color: white;
}

.btn-secondary-hero {
    background: white;
    color: var(--primary-orange);
    padding: 1rem 2.5rem;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-secondary-hero:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(230, 90, 26, 0.3);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image {
    border-radius: 30px;
    /* box-shadow: 0 25px 70px rgba(230, 90, 26, 0.25); */
    /* animation: float 4s ease-in-out infinite; */
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-25px);
    }
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Hero Section - About */
.about-hero {
    background: linear-gradient(
        135deg,
        var(--cream) 0%,
        var(--light-cream) 50%,
        var(--darker-cream) 100%
    );
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 122, 61, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.about-hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 163, 102, 0.12) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero-badge {
    display: inline-block;
    background: rgba(255, 122, 61, 0.15);
    color: var(--primary-orange);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 122, 61, 0.3);
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.about-hero-title .highlight {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

/* Hero Section - Contact */
.contact-hero {
    background: linear-gradient(
        135deg,
        var(--cream) 0%,
        var(--light-cream) 50%,
        var(--darker-cream) 100%
    );
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 122, 61, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-badge {
    display: inline-block;
    background: rgba(255, 122, 61, 0.15);
    color: var(--primary-orange);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 122, 61, 0.3);
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.contact-hero-title .highlight {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

/* Hero Section - Product Page */
.product-hero {
    background: linear-gradient(
        135deg,
        var(--cream) 0%,
        var(--light-cream) 50%,
        var(--darker-cream) 100%
    );
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 122, 61, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.product-hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.product-hero-title .highlight {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 122, 61, 0.12);
    color: var(--primary-orange);
    padding: 0.5rem 1.3rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== PRODUCT CARDS ===== */
/* Base product card styles tetap sama */
.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(230, 90, 26, 0.2);
}

/* Image Section */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

/* Tags */
.product-tags {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
}

.product-tag.sale-tag {
    background: linear-gradient(135deg, #ff4444, #cc0000);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.4);
}

.product-tag.bestseller-tag {
    background: linear-gradient(135deg, #ff9900, #cc7700);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
}

/* Content Section */
.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    color: var(--primary-orange);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Footer Section - FIXED ALIGNMENT */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: end; /* Selalu rata tengah vertikal */
    gap: 12px;
    margin-top: auto;
    min-height: 50px; /* Tinggi konsisten */
}

.product-price-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Rata tengah vertikal */
    min-width: 0;
    flex: 1;
}

.original-price {
    font-size: 1rem;
    font-weight: 600;
    color: #999;
    text-decoration: line-through;
    text-decoration-color: var(--primary-orange);
    text-decoration-thickness: 2px;
    margin-bottom: 2px;
    line-height: 1.2;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px !important;
}

/* Untuk produk non-diskon - pastikan alignment sama */
.product-price.standalone {
    margin-bottom: 8px !important;
    align-items: center;
    height: 100%;
}

.btn-order-product {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    height: fit-content;
}

.btn-order-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 90, 26, 0.3);
    color: white;
}

.category-count {
    font-size: 0.65rem;
    background: var(--primary-orange);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Mobile First Responsive Design */
@media (max-width: 768px) {
    .product-content {
        padding: 1.25rem;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .original-price {
        font-size: 0.9rem;
    }

    .btn-order-product {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .product-tags {
        top: 10px;
        right: 10px;
    }

    .product-tag {
        padding: 5px 10px;
        font-size: 0.7rem;
    }

    .product-footer {
        min-height: 45px;
    }
}

@media (max-width: 576px) {
    .product-card {
        margin-bottom: 1rem;
    }

    .product-content {
        padding: 1rem;
    }

    .product-footer {
        flex-direction: row; /* Tetap horizontal di mobile */
        align-items: center;
        gap: 10px;
        min-height: 40px;
    }

    .product-price-wrapper {
        text-align: left;
    }

    .btn-order-product {
        justify-content: center;
        padding: 8px 12px;
    }

    .product-image-wrapper {
        aspect-ratio: 1/1;
    }

    .product-name {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 400px) {
    .product-content {
        padding: 0.875rem;
    }

    .product-name {
        font-size: 0.95rem;
    }

    .product-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .btn-order-product {
        padding: 6px 10px;
        font-size: 0.8rem;
    }

    .product-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        min-height: auto;
    }

    .product-price-wrapper {
        text-align: center;
    }
}

/* Ensure text doesn't overflow */
.product-name,
.product-description {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fix for very long product names */
.product-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 50px 0;
    background: white;
}

.feature-card {
    background: var(--cream);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 122, 61, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 90, 26, 0.2);
    background: white;
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(
        135deg,
        var(--secondary-orange),
        var(--primary-orange)
    );
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon-wrapper {
    transform: rotateY(360deg);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        var(--cream) 0%,
        var(--light-cream) 100%
    );
}

.testimonial-slide {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    height: auto;
}

.testimonial-rating {
    color: #ffb800;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-orange);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-orange);
}

.testimonial-author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.testimonial-author-role {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.swiper-pagination-bullet {
    background: var(--primary-orange);
    opacity: 0.3;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 32px;
    border-radius: 6px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 50px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 0.875rem;
    }
}
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 1/1;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(230, 90, 26, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(230, 90, 26, 0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design untuk Gallery */
@media (max-width: 768px) {
    .gallery-overlay {
        padding: 1.5rem 1rem 1rem;
        transform: translateY(0);
        opacity: 1;
        /* background: linear-gradient(transparent, rgba(0, 0, 0, 0.7)); */
        background: linear-gradient(
            to top,
            rgba(230, 90, 26, 0.9),
            transparent
        );
    }

    .gallery-title {
        font-size: 1.2rem;
    }

    .gallery-subtitle {
        font-size: 0.85rem;
    }

    .gallery-item:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .gallery-item {
        border-radius: 15px;
    }

    .gallery-overlay {
        padding: 1rem 0.875rem 0.875rem;
    }

    .gallery-title {
        font-size: 1.1rem;
    }

    .gallery-subtitle {
        font-size: 0.8rem;
    }
}

/* ===== ABOUT PAGE STYLES ===== */
.story-section {
    padding: 100px 0;
    background: white;
}

.story-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
}

.story-content p {
    margin-bottom: 1.5rem;
}

.story-image {
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(230, 90, 26, 0.15);
    transition: transform 0.5s ease;
}

.story-image:hover {
    transform: translateY(-10px);
}

.values-section {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        var(--cream) 0%,
        var(--light-cream) 100%
    );
}

.value-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.value-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230, 90, 26, 0.2);
}

.value-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(
        135deg,
        var(--secondary-orange),
        var(--primary-orange)
    );
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    font-size: 2.5rem;
    color: white;
    transition: all 0.5s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: rotateY(360deg);
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.team-section {
    padding: 100px 0;
    background: white;
}

.team-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.team-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230, 90, 26, 0.2);
}

.team-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-content {
    padding: 2rem;
    text-align: center;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-description {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.social-links-team {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-links-team a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--darker-cream);
    border-radius: 50%;
    color: var(--primary-orange);
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links-team a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

.stats-section {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.stat-item {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 600;
}

.timeline-section {
    padding: 100px 0;
    background: var(--cream);
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: "";
    position: absolute;
    width: 6px;
    background: linear-gradient(
        to bottom,
        var(--primary-orange),
        var(--secondary-orange)
    );
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    background: var(--primary-orange);
    border: 4px solid white;
    border-radius: 50%;
    top: 15px;
    z-index: 1;
    box-shadow: 0 0 0 4px var(--primary-orange);
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::after {
    right: -13px;
}

.right::after {
    left: -13px;
}

.timeline-content {
    padding: 2rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 90, 26, 0.15);
}

.timeline-year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-info-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(230, 90, 26, 0.12);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(
        135deg,
        var(--secondary-orange),
        var(--primary-orange)
    );
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.contact-method-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-method-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-detail a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--primary-orange);
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(230, 90, 26, 0.12);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    border-color: var(--primary-orange);
}

.form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.form-control {
    padding: 0.9rem 1.2rem;
    border: 2px solid var(--darker-cream);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--cream);
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 122, 61, 0.25);
    background: white;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(230, 90, 26, 0.3);
    width: 100%;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 90, 26, 0.4);
    color: white;
}

.btn-submit:disabled {
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.map-section {
    padding: 0 0 100px;
}

.map-wrapper {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.map-container {
    width: 100%;
    height: 100%;
    background: var(--darker-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.faq-section {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        var(--cream) 0%,
        var(--light-cream) 100%
    );
}

.faq-card {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-card:hover {
    border-color: var(--primary-orange);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
    display: none;
}

.faq-answer.show {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary-orange);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.hours-section {
    padding: 80px 0;
    background: white;
}

.hours-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(230, 90, 26, 0.12);
    text-align: center;
}

.hours-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--darker-cream);
    font-size: 1.1rem;
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--primary-orange);
    font-weight: 600;
}

/* ===== PRODUCT LISTING PAGE STYLES ===== */

/* Loading States */
.spinner-border {
    width: 2rem;
    height: 2rem;
}

.filter-toggle-btn {
    display: none;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(230, 90, 26, 0.3);
    transition: all 0.3s ease;
}

.filter-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 90, 26, 0.4);
}

.sidebar-filter {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(230, 90, 26, 0.12);
    height: fit-content;
    position: sticky;
    top: 120px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    z-index: 100;
}

.sidebar-filter:hover::before {
    opacity: 1;
}

.filter-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--darker-cream);
}

.filter-section:last-child {
    border-bottom: none;
}

.filter-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: block;
}

.form-check {
    margin-bottom: 0.8rem;
}

.form-check-input {
    border-color: var(--primary-orange);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.form-check-label {
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    color: var(--text-gray);
}

.price-range-wrapper {
    margin-top: 1rem;
}

.noUi-target {
    background: var(--darker-cream) !important;
    border-radius: 10px !important;
    border: none !important;
    margin-bottom: 1.5rem !important;
}

.noUi-handle {
    background: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 6px rgba(230, 90, 26, 0.3) !important;
}

.noUi-connect {
    background: var(--primary-orange) !important;
}

.price-inputs {
    display: block;
    gap: 0.8rem;
    width: 100%;
}

.price-inputs input {
    font-size: 0.9rem;
    border-radius: 0.8rem;
    border: 1px solid var(--darker-cream);
    padding: 0.8rem;
    background: var(--cream);
    color: var(--text-dark);
    width: 100%;
    margin-bottom: 10px;
}

.filter-btn-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-reset {
    background: var(--darker-cream);
    color: var(--text-dark);
    border: none;
    font-weight: 600;
    border-radius: 0.8rem;
    padding: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: #d4c9bc;
    color: var(--text-dark);
    transform: translateY(-2px);
}

.btn-apply {
    background: var(--primary-orange);
    color: #fff;
    border: none;
    font-weight: 600;
    border-radius: 0.8rem;
    padding: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 90, 26, 0.3);
}

.btn-apply:hover {
    background: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 90, 26, 0.4);
}

.category-badge {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    color: #fff;
    font-size: 0.8rem;
    border-radius: 25px;
    padding: 0.5rem 1.2rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(230, 90, 26, 0.4);
}
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Search Box Styles */
.search-box {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 0.7rem 1rem;
    padding-right: 3rem;
    border: 1px solid var(--darker-cream);
    border-radius: 0.8rem;
    background: white;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(230, 90, 26, 0.1);
}

.search-button {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-button:hover {
    color: var(--primary-orange);
}

/* Product Count */
.product-count {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    white-space: nowrap;
}

/* Sort Options */
.sort-options {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sort-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-label {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-size: 0.95rem;
    white-space: nowrap;
}

.sort-select {
    border-radius: 0.8rem;
    border: 1px solid var(--darker-cream);
    padding: 0.7rem 1rem;
    cursor: pointer;
    background: white;
    color: var(--text-dark);
    min-width: 180px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(230, 90, 26, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .products-header {
        margin-bottom: 1.5rem;
        gap: 1rem;
    }

    .search-box {
        min-width: 250px;
        max-width: 350px;
    }

    .sort-options {
        gap: 0.8rem;
    }

    .sort-select {
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .products-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .search-box {
        min-width: 100%;
        max-width: 100%;
        order: 1;
    }

    .product-count {
        order: 2;
        text-align: center;
    }

    .sort-options {
        order: 3;
        justify-content: center;
        width: 100%;
    }

    .sort-group {
        flex: 1;
        max-width: 100%;
    }

    .sort-select {
        min-width: 100%;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .products-header {
        margin-bottom: 1rem;
    }

    .sort-options {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .sort-group {
        max-width: 100%;
        width: 100%;
    }

    .sort-label {
        min-width: 70px;
        text-align: right;
    }

    .sort-select {
        flex: 1;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

    .product-count {
        font-size: 0.9rem;
    }

    .search-input {
        padding: 0.6rem 0.8rem;
        padding-right: 2.5rem;
        font-size: 0.85rem;
    }

    .search-button {
        right: 0.4rem;
        padding: 0.4rem;
    }
}

/* Very small devices */
@media (max-width: 400px) {
    .sort-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.3rem;
    }

    .sort-label {
        text-align: left;
        min-width: auto;
    }

    .sort-select {
        width: 100%;
    }
}

/* ===== PRODUCT DETAIL PAGE STYLES ===== */
/* Product Detail Styles */
.features-section-product {
    margin-top: 10px;
}

.feature-product-card {
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 122, 61, 0.1),
        transparent
    );
    padding: 10px;
    border-radius: 25px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-product-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 90, 26, 0.2);
    background: white;
}

.feature-product-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(
        135deg,
        var(--secondary-orange),
        var(--primary-orange)
    );
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.feature-product-card:hover .feature-product-icon-wrapper {
    transform: rotateY(360deg);
}

.feature-product-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-product-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 0.95rem;
}

.breadcrumb-section {
    padding: 120px 0 0px;
    background: linear-gradient(
        135deg,
        var(--cream) 0%,
        var(--light-cream) 100%
    );
}

.breadcrumb-item a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--dark-orange);
}

.breadcrumb-item.active {
    color: var(--text-gray);
}

.product-detail-section {
    padding: 1rem 0 4rem;
}

/* PERBAIKAN: Image Slider Full Size Professional */
.product-image-slider {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(230, 90, 26, 0.15);
    /* Hilangkan aspect ratio fixed untuk full size */
    height: auto;
    min-height: 500px;
    background: #f8f9fa; /* Background fallback */
    display: flex;
    align-items: center;
    justify-content: center;
}

.productMainSwiper {
    width: 100%;
    height: 100%;
}

.productMainSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    height: auto;
    min-height: 500px;
}

.productMainSwiper .swiper-slide img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 80vh; /* Batas maksimal tinggi */
    object-fit: contain; /* Menampilkan gambar utuh tanpa crop */
    object-position: center;
}

/* PERBAIKAN: Thumbnail Slider untuk Full Size */
.product-thumbnails {
    margin-top: 1rem;
}

.productThumbSwiper .swiper-slide {
    aspect-ratio: 1 / 1; /* Tetap persegi untuk thumbnail */
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
    background: #f8f9fa;
}

.productThumbSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail-slide.swiper-slide-thumb-active {
    border-color: var(--primary-orange);
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail-slide:hover img {
    transform: scale(1.1);
}

/* PERBAIKAN: Swiper Navigation untuk Full Size */
.productMainSwiper .swiper-button-next,
.productMainSwiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.productMainSwiper .swiper-button-next:after,
.productMainSwiper .swiper-button-prev:after {
    font-size: 1.8rem;
    font-weight: bold;
}

.productMainSwiper .swiper-button-next:hover,
.productMainSwiper .swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Loading state untuk gambar */
.productMainSwiper .swiper-slide {
    position: relative;
}

.productMainSwiper .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.productMainSwiper .swiper-slide.swiper-slide-loading::before {
    opacity: 1;
}

.productMainSwiper .swiper-slide img {
    transition: opacity 0.3s ease;
}

.productMainSwiper .swiper-slide.swiper-slide-loading img {
    opacity: 0;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.product-badge {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(230, 90, 26, 0.3);
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.original-price {
    font-size: 1.5rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary-large {
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(230, 90, 26, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    flex: 1;
    justify-content: center;
    min-width: 250px;
}

.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(230, 90, 26, 0.5);
    color: white;
}

.related-products-section {
    padding: 4rem 0;
    background: white;
}

/* New Utility Classes */
.bg-orange-soft {
    background-color: rgba(255, 122, 61, 0.1) !important;
}

.text-orange-dark {
    color: var(--dark-orange) !important;
}

.text-orange {
    color: var(--primary-orange) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }

    .product-price {
        font-size: 1.8rem;
    }

    .original-price {
        font-size: 1.3rem;
    }

    .feature-product-card {
        padding: 1rem;
    }

    .feature-product-icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .feature-product-title {
        font-size: 1.2rem;
    }

    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: 200px;
    }

    .breadcrumb-section {
        padding: 100px 0 0px;
    }

    /* PERBAIKAN: Responsive untuk full size image di tablet */
    .product-image-slider {
        min-height: 400px;
        border-radius: 20px;
    }

    .productMainSwiper .swiper-slide {
        min-height: 400px;
    }

    .productMainSwiper .swiper-button-next,
    .productMainSwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
    }

    .productMainSwiper .swiper-button-next:after,
    .productMainSwiper .swiper-button-prev:after {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 1.75rem;
    }

    .product-price {
        font-size: 1.5rem;
    }

    .product-price-wrapper .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem !important;
    }

    .feature-product-card {
        text-align: center;
        flex-direction: column;
    }

    .feature-product-card .ms-4 {
        margin-left: 0 !important;
        margin-top: 1rem;
    }

    .product-image-slider {
        border-radius: 15px;
        min-height: 350px;
    }

    .productMainSwiper .swiper-slide {
        min-height: 350px;
    }

    .productMainSwiper .swiper-button-next,
    .productMainSwiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }

    .productMainSwiper .swiper-button-next:after,
    .productMainSwiper .swiper-button-prev:after {
        font-size: 1.3rem;
    }

    /* Sembunyikan navigation pada mobile sangat kecil jika perlu */
    @media (max-width: 400px) {
        .productMainSwiper .swiper-button-next,
        .productMainSwiper .swiper-button-prev {
            display: none;
        }
    }
}

/* PERBAIKAN: Zoom effect pada hover untuk desktop */
@media (min-width: 992px) {
    .productMainSwiper .swiper-slide img {
        transition: transform 0.5s ease;
    }

    .productMainSwiper .swiper-slide:hover img {
        transform: scale(1.02);
    }
}

/* PERBAIKAN: Style untuk gambar yang loading */
.img-loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.img-loaded {
    opacity: 1;
}
/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        var(--primary-orange),
        var(--dark-orange)
    );
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.btn-cta-large {
    background: white;
    color: var(--primary-orange);
    padding: 1.2rem 3rem;
    border-radius: 40px;
    font-weight: 800;
    font-size: 1.2rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-cta-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    color: var(--dark-orange);
}

/* ===== FOOTER ===== */
footer {
    background: #2a1a0e;
    color: var(--cream);
    padding: 4rem 0 2rem;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-brand img {
    width: 100px;
}

.footer-description {
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-heading {
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
}

.footer-link {
    color: var(--cream);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.footer-link:hover {
    color: var(--primary-orange);
    padding-left: 8px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 122, 61, 0.2);
    border-radius: 50%;
    color: var(--primary-orange);
    margin-right: 1rem;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.social-links a:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25d366, #20b358);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulse-wa 2s infinite;
}

.wa-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

.wa-float i {
    color: white;
    font-size: 2.3rem;
}

@keyframes pulse-wa {
    0%,
    100% {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, 0.8);
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 20px;
    }

    .left,
    .right {
        left: 0;
    }

    .contact-hero-title {
        font-size: 2.8rem;
    }

    .contact-form-wrapper {
        margin-top: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .product-hero-title {
        font-size: 2.5rem;
    }

    .sort-dropdown {
        justify-content: space-between;
    }

    .sort-dropdown select {
        min-width: 150px;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-price {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary-large,
    .btn-secondary-large {
        flex: auto;
    }
}

@media (max-width: 767px) {
    /* .hero-section {
        padding: 100px 0 80px;
    } */

    .navbar-brand img {
        width: 75px;
    }
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .wa-float {
        bottom: 25px;
        right: 25px;
        width: 60px;
        height: 60px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-hero {
        padding: 140px 0 80px;
    }

    .about-hero-title {
        font-size: 2.2rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .contact-hero {
        padding: 140px 0 60px;
    }

    .contact-hero-title {
        font-size: 2.2rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-info-card,
    .contact-form-wrapper {
        padding: 2rem;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .hours-card {
        padding: 2rem;
    }

    .product-hero {
        padding: 120px 0 40px;
    }

    .product-hero-title {
        font-size: 2rem;
    }

    .product-hero-subtitle {
        font-size: 1rem;
    }

    .filter-btn-group {
        grid-template-columns: 1fr;
    }

    .sidebar-filter {
        padding: 1.5rem;
    }

    .sort-dropdown {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .sort-dropdown select {
        width: 100%;
    }

    .breadcrumb-section {
        padding: 100px 0 20px;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav-tabs .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .value-card,
    .team-card {
        margin-bottom: 2rem;
    }

    .btn-cta-large {
        width: 100%;
        justify-content: center;
    }

    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-method-title {
        font-size: 1.2rem;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.2rem;
    }

    .btn-cta-large {
        width: 100%;
        justify-content: center;
    }

    .product-card {
        margin-bottom: 1.5rem;
    }

    .price-inputs {
        grid-template-columns: 1fr;
    }

    .option-buttons {
        flex-direction: column;
    }

    .option-btn {
        min-width: auto;
    }

    .quantity-selector {
        justify-content: center;
    }
}

/* Mobile Filter Styles */
@media (max-width: 991px) {
    .filter-toggle-btn {
        display: flex;
    }

    .sidebar-filter {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        overflow-y: auto;
        z-index: 1050;
        transition: left 0.3s ease;
        border-radius: 0;
        padding-top: 4rem;
    }

    .sidebar-filter.active {
        left: 0;
    }

    .filter-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1040;
    }

    .filter-overlay.active {
        display: block;
    }

    .filter-close-btn {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-gray);
        cursor: pointer;
        z-index: 1051;
    }

    .filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--darker-cream);
    }

    .filter-header h3 {
        margin: 0;
        color: var(--primary-orange);
        font-weight: 700;
    }
}

/* Custom Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    border: 1px solid var(--darker-cream);
    border-radius: 0.8rem;
    padding: 0.6rem 1rem;
    color: var(--text-dark);
    background: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-link:hover {
    background: var(--cream);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background: var(--primary-orange) !important;
    border-color: var(--primary-orange) !important;
    color: white !important;
}

.pagination .page-item.disabled .page-link {
    background: var(--light-gray);
    color: var(--text-gray);
    border-color: var(--darker-cream);
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Untuk pagination numbers yang banyak */
.pagination .page-item:not(.active):not(.disabled) .page-link {
    background: white;
}

/* Responsive Pagination */
@media (max-width: 768px) {
    .pagination {
        gap: 0.3rem;
        margin: 1.5rem 0;
    }

    .pagination .page-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
        min-width: 40px;
    }
}

@media (max-width: 576px) {
    .pagination {
        gap: 0.2rem;
    }

    .pagination .page-link {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 36px;
        border-radius: 0.6rem;
    }

    /* Sembunyikan beberapa angka di mobile untuk pagination yang panjang */
    .pagination .page-item:nth-child(n + 4):nth-last-child(n + 4) {
        display: none;
    }

    /* Tampilkan ellipsis untuk pagination yang dipotong */
    .pagination .page-item.dots {
        display: block !important;
    }

    .pagination .page-item.dots .page-link {
        background: transparent;
        border: none;
        pointer-events: none;
        min-width: auto;
        padding: 0.4rem 0.2rem;
    }
}

/* Very small devices */
@media (max-width: 400px) {
    .pagination .page-link {
        padding: 0.35rem 0.5rem;
        min-width: 32px;
        font-size: 0.75rem;
    }
}
