/* --- RESET & VARIABLES --- */
:root {
    --primary-yellow: #F8C421;
    --dark-bg: #091016;
    --text-dark: #1A1A0D;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
}

/* --- NAVBAR --- */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-medium);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: transform var(--transition-medium);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    transition: all var(--transition-medium);
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: width var(--transition-medium);
}

.nav-links a:hover {
    color: var(--primary-yellow);
}

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

/* Dropdown Menu */
.nav-links .dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 5px;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    min-width: 180px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all var(--transition-medium);
    z-index: 1001;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(248, 196, 33, 0.1);
    color: var(--primary-yellow);
    border-left-color: var(--primary-yellow);
    padding-left: 25px;
}

/* Button Primary - Enhanced */
.btn-primary {
    background-color: var(--primary-yellow);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    color: black;
    font-weight: 600;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(248, 196, 33, 0.3);
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(248, 196, 33, 0.4);
    background-color: #f5b914;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(248, 196, 33, 0.3);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all var(--transition-medium);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* --- HERO SECTION --- */
.hero {
    padding: 80px 0;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

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

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
    animation: slideInLeft 1s ease;
}

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

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-text p {
    margin-bottom: 30px;
    color: #555;
    font-size: 18px;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Button Dark - Enhanced */
.btn-dark {
    background-color: #3e2723;
    color: white;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    border: 2px solid #3e2723;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.3);
    cursor: pointer;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn-dark::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-dark:hover {
    background-color: #4e342e;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(62, 39, 35, 0.4);
}

.btn-dark:active {
    transform: translateY(-1px);
}

.btn-dark:hover::before {
    width: 300px;
    height: 300px;
}

.hero-image {
    flex: 1;
    position: relative;
    text-align: center;
    animation: slideInRight 1s ease;
}

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

.hero-image img {
    max-width: 100%;
    z-index: 2;
    position: relative;
    transition: transform var(--transition-slow);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.yellow-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 196, 33, 0.2), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

/* --- INFINITE MARQUEE (PRODUCT IMAGES WITH 3D EFFECT) --- */
.marquee-container {
    background: white;
    padding: 60px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    overflow: hidden;
    position: relative;
    width: 100%;
    perspective: 1000px;
}

.marquee-row {
    display: flex;
    gap: 40px;
    width: fit-content;
    margin-bottom: 30px;
    will-change: transform;
}

.marquee-row-top {
    animation: scrollRight 25s linear infinite;
}

.marquee-row-bottom {
    animation: scrollLeft 25s linear infinite;
}

.marquee-product-item {
    flex-shrink: 0;
    width: 200px;
    height: 240px;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.marquee-product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15),
                0 4px 15px rgba(0, 0, 0, 0.1);
    transform: rotateY(-15deg) scale(0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: brightness(0.95);
}

.marquee-product-item:hover img {
    transform: rotateY(0deg) scale(1.1);
    filter: brightness(1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2),
                0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.marquee-product-item:hover {
    z-index: 10;
}

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

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

/* --- STEPS SECTION (CSS GRID) --- */
.steps-section {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

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

.step-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }
.step-card:nth-child(5) { animation-delay: 0.5s; }
.step-card:nth-child(6) { animation-delay: 0.6s; }

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-yellow);
}

.step-badge {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #555;
    transition: all var(--transition-medium);
}

.step-card:hover .step-badge {
    background: linear-gradient(135deg, var(--primary-yellow), #f5b914);
    color: black;
    transform: scale(1.05);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    transition: color var(--transition-medium);
}

.step-card:hover h3 {
    color: var(--primary-yellow);
}

.step-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* --- FEATURE CARDS --- */
.why-us {
    padding: 100px 0;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.feature-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 45px;
    border-radius: 15px;
    color: #333;
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:nth-child(1) { animation-delay: 0.2s; }
.feature-card:nth-child(2) { animation-delay: 0.4s; }
.feature-card:nth-child(3) { animation-delay: 0.6s; }

.feature-card.green {
    background-color: #e8f5e9;
    border-left: 5px solid #4caf50;
}

.feature-card.pink {
    background-color: #fce4ec;
    border-left: 5px solid #e91e63;
}

.feature-card.purple {
    background-color: #f3e5f5;
    border-left: 5px solid #9c27b0;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    transition: transform var(--transition-medium);
}

.feature-card:hover h3 {
    transform: translateX(5px);
}

.feature-card p {
    font-size: 16px;
    line-height: 1.6;
}

/* --- FOOTER --- */
footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-left h2 {
    margin-bottom: 15px;
    font-size: 28px;
}

.footer-left p {
    color: #aaa;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-yellow);
    transition: width var(--transition-medium);
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #666;
    font-size: 12px;
}

/* --- HONEYSAN SCROLL SECTION --- */
.honeysan-scroll-section {
    background: transparent;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.honeysan-scroll-content {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    animation: scrollHoneysan 50s linear infinite;
    will-change: transform;
}

.honeysan-scroll-content span {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 400;
    color: rgba(26, 26, 13, 0.45);
    letter-spacing: 12px;
    text-shadow: none;
    flex-shrink: 0;
    text-transform: uppercase;
}

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

/* --- ABOUT SECTION --- */
.about-section {
    padding: 120px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(248, 196, 33, 0.3), transparent);
}

.about-article {
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 20px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-yellow), transparent);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0;
    margin-top: 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.about-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: var(--primary-yellow);
    border-radius: 2px;
}

.about-text p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 0;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-slow);
}

.about-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* --- SECTION 1: PRODUCT CATEGORY SLIDER --- */
.category-slider-section {
    padding: 100px 0;
    background: #fafafa;
}

.category-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-yellow) transparent;
}

.category-slider::-webkit-scrollbar {
    height: 8px;
}

.category-slider::-webkit-scrollbar-track {
    background: transparent;
}

.category-slider::-webkit-scrollbar-thumb {
    background: var(--primary-yellow);
    border-radius: 4px;
}

.category-slide {
    flex: 0 0 calc(100% - 40px);
    max-width: 400px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    scroll-snap-align: start;
    transition: transform var(--transition-medium);
}

.category-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
}

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

.category-slide:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 30px;
}

.category-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.category-content p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* --- SECTION 2: DUAL-DIRECTION INFINITE CATALOG --- */
.catalog-marquee-section {
    padding: 100px 0;
    background: white;
    overflow: hidden;
    position: relative;
}

.catalog-marquee-section .container {
    overflow: hidden;
}

.catalog-row {
    display: flex;
    gap: 40px;
    width: fit-content;
    margin-bottom: 30px;
    will-change: transform;
}

.catalog-row-top {
    animation: scrollRight 30s linear infinite;
}

.catalog-row-bottom {
    animation: scrollLeft 30s linear infinite;
}

.catalog-item {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: #e0e0e0;
    white-space: nowrap;
    padding: 15px 0;
    transition: color var(--transition-medium);
}

.catalog-item:hover {
    color: var(--primary-yellow);
}

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

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

/* --- SECTION 3: PRODUCT SHOWCASE ETALASE --- */
.product-showcase-section {
    padding: 100px 0;
    background: var(--primary-yellow);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f8f8;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.like-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.like-btn svg {
    width: 20px;
    height: 20px;
    stroke: #666;
    fill: none;
    stroke-width: 1.5;
    transition: all var(--transition-medium);
}

.like-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.like-btn:hover svg {
    stroke: #ff4757;
}

.like-btn.active {
    background: rgba(255, 71, 87, 0.1);
}

.like-btn.active svg {
    fill: #ff4757;
    stroke: #ff4757;
}

.product-info {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    line-height: 1.4;
}

.product-price {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    white-space: nowrap;
}

/* --- SECTION 4: AUTO-SCROLL TESTIMONIAL --- */
.testimonial-section {
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: fit-content;
    animation: scrollTestimonial 40s linear infinite;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 380px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-yellow);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating .star {
    color: #FFD700;
    font-size: 16px;
    line-height: 1;
}

.testimonial-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    font-style: italic;
}

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

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 968px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left var(--transition-medium);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        margin-top: 0;
        padding: 0;
        margin-left: 20px;
    }
    
    .dropdown-menu a {
        padding: 10px 0;
        border-left: none;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-menu a:hover {
        padding-left: 0;
        background: transparent;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .honeysan-scroll-content span {
        font-size: 1.1rem;
        letter-spacing: 8px;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .btn-dark {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .step-card {
        padding: 25px;
    }
    
    .features-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-links a {
        margin: 0;
    }
    
    .marquee-product-item {
        width: 150px;
        height: 180px;
    }
    
    .marquee-row {
        gap: 25px;
        margin-bottom: 20px;
    }
    
    /* Category Slider */
    .category-slide {
        flex: 0 0 calc(100% - 40px);
        max-width: 100%;
    }
    
    .category-content {
        padding: 25px;
    }
    
    .category-content h3 {
        font-size: 24px;
    }
    
    /* Catalog Marquee */
    .catalog-item {
        font-size: 24px;
    }
    
    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .product-info {
        padding: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .product-name {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 16px;
        align-self: flex-end;
    }
    
    /* Testimonial */
    .testimonial-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    /* About Section */
    .about-section {
        padding: 50px 0;
    }
    
    .about-text h3 {
        font-size: 18px;
        margin-top: 20px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .step-card {
        padding: 20px;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .btn-primary,
    .btn-dark {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .marquee-content span {
        font-size: 24px;
        padding-right: 30px;
    }
    
    /* Category Slider - Small Mobile */
    .category-slider {
        gap: 15px;
    }
    
    .category-slide {
        flex: 0 0 calc(100% - 15px);
        min-width: calc(100% - 15px);
    }
    
    .category-image {
        height: 200px;
    }
    
    .category-content {
        padding: 20px 15px;
    }
    
    .category-content h3 {
        font-size: 20px;
    }
    
    .category-content p {
        font-size: 13px;
    }
    
    /* Catalog Marquee - Small Mobile */
    .catalog-marquee-section {
        padding: 50px 0;
    }
    
    .catalog-item {
        font-size: 18px;
        padding: 10px 0;
    }
    
    .catalog-row {
        gap: 20px;
        margin-bottom: 15px;
    }
    
    .honeysan-scroll-content span {
        font-size: 0.95rem;
        letter-spacing: 6px;
    }
    
    .honeysan-scroll-section {
        padding: 15px 0;
    }
    
    .catalog-row-top {
        animation: scrollRight 20s linear infinite;
    }
    
    .catalog-row-bottom {
        animation: scrollLeft 20s linear infinite;
    }
    
    /* Product Grid */
    .product-image {
        height: 220px;
    }
    
    .like-btn {
        width: 40px;
        height: 40px;
    }
    
    .like-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-info h3 {
        font-size: 18px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    /* Testimonial */
    .testimonial-card {
        flex: 0 0 280px;
        padding: 25px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-author h4 {
        font-size: 16px;
    }
    
    .testimonial-rating .star {
        font-size: 14px;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
}

/* --- Scroll Animation --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* --- Ripple Effect Animation --- */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
