* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFF8E1;
    color: #333;
    line-height: 1.6;
}

/* Smooth scroll with offset for sticky header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px; /* Default offset for desktop */
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 100px; /* Smaller offset for mobile */
    }
}

/* Header Styles */
header {
    background-color: #FFF8E1;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.1);
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 90px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    position: absolute;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 6px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 13.5px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 21px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 13.5px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 13.5px;
    transform: rotate(-45deg);
}

.main-nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s;
    display: block;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: #FF6B35;
    color: #FFF;
}

/* Hero Section */
.hero {
    padding: 80px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    /* background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%); */
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    min-width: 0;
    position: relative;
    z-index: 2;
}

/* Animated Heading */
.animated-heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.animated-heading.animate {
    opacity: 1;
    transform: translateY(0);
}

.text-line-1 {
    display: block;
    color: #333;
    opacity: 0;
    animation: slideInLeft 0.8s ease-out 0.5s forwards;
}

.text-line-2 {
    display: block;
    color: #FF6B35;
    opacity: 0;
    animation: slideInRight 0.8s ease-out 0.8s forwards;
    position: relative;
}

.highlight-text {
    display: inline-block;
    position: relative;
    min-height: 1.2em;
    color: #FF6B35;
}

.highlight-text::after {
    display: none;
}

.rotating-text {
    position: relative;
    display: inline-block;
    width: 650px;
    max-width: 100%;
    text-align: left;
    color: #FF6B35;
    min-height: 1.2em;
    overflow: visible;
}

.text-item {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    min-width: 100%;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    color: #FF6B35;
    visibility: hidden;
    overflow: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.text-item.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFC107, #FF6B35);
    animation: underlineExpand 1s ease-out 1.2s forwards;
    border-radius: 2px;
}

.animated-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1s forwards;
}

/* Hero CTA Buttons */
.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 1.3s forwards;
}

.cta-button {
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:first-child {
    background-color: #FF6B35;
    color: #FFF;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:first-child:hover {
    background-color: #FF8C42;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    color: #E65100;
    border: 2px solid #E65100;
}

.cta-button.secondary:hover {
    background-color: #E65100;
    color: white;
    transform: translateY(-2px);
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes underlineExpand {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(-5deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) rotate(5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) rotate(-3deg);
    }
    50% {
        transform: translateY(-20px) rotate(-3deg);
    }
}


.hero-images {
    flex: 1;
    position: relative;
    height: 500px;
    min-height: 400px;
    max-width: 600px;
    margin-left: 40px;
    overflow: visible;
    z-index: 2;
}

.image-wrapper {
    position: absolute;
}

.hero-images .image-wrapper:nth-child(1) {
    top: 0;
    right: 100px;
    z-index: 3;
}

.hero-images .image-wrapper:nth-child(2) {
    top: 150px;
    right: 250px;
    z-index: 2;
}

.hero-images .image-wrapper:nth-child(3) {
    top: 300px;
    right: 50px;
    z-index: 1;
}

.floating-image {
    position: relative;
    width: 200px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: block;
}

.hero-images .image-wrapper {
    opacity: 0;
    will-change: transform, opacity;
}

/* Fade in with scale, then float continuously - both image and tag move together */
.hero-images .image-wrapper:nth-child(1) {
    animation: 
        fadeInScale 1s ease-out 1.5s forwards,
        floatWrapper1 3s ease-in-out 2.5s infinite;
}

.hero-images .image-wrapper:nth-child(2) {
    animation: 
        fadeInScale 1s ease-out 1.7s forwards,
        floatWrapper2 3s ease-in-out 2.7s infinite;
}

.hero-images .image-wrapper:nth-child(3) {
    animation: 
        fadeInScale 1s ease-out 1.9s forwards,
        floatWrapper3 3s ease-in-out 2.9s infinite;
}

.hero-images .image-wrapper:nth-child(1) .floating-image {
    transform: rotate(-5deg);
}

.hero-images .image-wrapper:nth-child(2) .floating-image {
    transform: rotate(5deg);
}

.hero-images .image-wrapper:nth-child(3) .floating-image {
    transform: rotate(-3deg);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Floating animations for wrapper - maintains scale(1) from fadeInScale */
@keyframes floatWrapper1 {
    0%, 100% {
        transform: scale(1) translateY(0px);
    }
    50% {
        transform: scale(1) translateY(-20px);
    }
}

@keyframes floatWrapper2 {
    0%, 100% {
        transform: scale(1) translateY(0px);
    }
    50% {
        transform: scale(1) translateY(-20px);
    }
}

@keyframes floatWrapper3 {
    0%, 100% {
        transform: scale(1) translateY(0px);
    }
    50% {
        transform: scale(1) translateY(-20px);
    }
}

.image-tag {
    position: absolute;
    padding: 5px 15px;
    border-radius: 15px;
    color: white;
    font-size: 12px;
    font-weight: bold;
    bottom: 10px;
    left: 10px;
    opacity: 0;
    transform: translateY(10px) scale(0.8);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    pointer-events: none;
}

/* Sync tag animation with image wrapper - tags appear together with images */
.hero-images .image-wrapper:nth-child(1) .image-tag {
    animation: tagFadeInScale 0.8s ease-out 1.5s forwards;
}

.hero-images .image-wrapper:nth-child(2) .image-tag {
    animation: tagFadeInScale 0.8s ease-out 1.7s forwards;
}

.hero-images .image-wrapper:nth-child(3) .image-tag {
    animation: tagFadeInScale 0.8s ease-out 1.9s forwards;
}

@keyframes tagFadeInScale {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-5px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tag-pink { background-color: #FF6B35; }
.tag-teal { background-color: #FF8C42; }
.tag-orange { background-color: #FF9800; }

/* Category Carousel */
.category-section {
    background-color: white;
    padding: 80px 50px;
    border-radius: 30px;
    margin: 40px 20px;
    overflow: visible;
    position: relative;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.category-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.category-section .section-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.category-section .section-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: visible;
}

.carousel-btn {
    background-color: #FF6B35;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    display: block;
    margin: 0 auto;
}

.carousel-btn:hover {
    background-color: #FF8C42;
    transform: scale(1.1);
}

.carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    flex: 1;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.category-item {
    min-width: calc(25% - 11.25px);
    max-width: calc(25% - 11.25px);
    flex: 0 0 calc(25% - 11.25px);
    text-align: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    overflow: visible;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-image-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-circle {
    width: 100%;
    max-width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    position: relative;
    overflow: hidden;
    clip-path: circle(50%);
    border: 4px solid white;
    aspect-ratio: 1;
}

.category-item:hover .category-circle {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

.category-item h3 {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    margin: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-item:hover h3 {
    color: #FF6B35;
}

/* Famous Products Section */
.products-section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto;
    background: #FFF8E1;
}

/* Product Range Chart Styles */
.product-range-container {
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 40px;
}

.product-range-container .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-category-section {
    margin-bottom: 40px;
}

.product-category-section:last-child {
    margin-bottom: 0;
}

.category-header-bar {
    background: #FF6B35;
    padding: 15px 20px;
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.category-header-bar h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    letter-spacing: 1px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #FF8C42;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.product-item {
    padding: 12px 15px;
    border-right: 1px solid #FF8C42;
    border-bottom: 1px solid #FF8C42;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    background: white;
}

.product-item:nth-child(3n) {
    border-right: none;
}

/* Round corners for first row items */
.product-item:nth-child(1) {
    border-top-left-radius: 10px;
}

.product-item:nth-child(3) {
    border-top-right-radius: 10px;
}

/* Round corners for last row items - calculate based on total items */
.product-grid .product-item:last-child {
    border-bottom-right-radius: 10px;
    border-bottom: none;
}

/* Remove bottom border from last row */
.product-grid .product-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.product-grid .product-item:nth-last-child(3) {
    border-bottom-left-radius: 10px;
}

.product-grid::after {
    content: '';
    grid-column: 1 / -1;
    border-bottom: none;
}


.product-menu-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #F0F0F0;
}

.menu-nav-btn {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.menu-nav-btn .nav-icon {
    font-size: 28px;
    line-height: 1;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.menu-nav-btn .nav-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.menu-nav-btn.active .nav-icon {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.menu-nav-btn.active .nav-text {
    color: #FF6B35;
}

.menu-nav-btn.active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FF6B35;
    border-radius: 2px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.category-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.category-title {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin: 0 0 20px 0;
    position: relative;
    display: inline-block;
}

.title-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #FF6B35;
    z-index: 0;
    margin: 0 20px;
}

.category-title::before,
.category-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background: #FF6B35;
    transform: translateY(-50%);
}

.category-title::before {
    right: calc(100% + 20px);
}

.category-title::after {
    left: calc(100% + 20px);
}

.section-header h2 span {
    border-bottom: 4px solid #FF6B35;
    padding-bottom: 5px;
}

.show-more-btn {
    background-color: #FF6B35;
    color: #FFF;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.show-more-btn:hover {
    background-color: #FF8C42;
    transform: translateY(-2px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Product Menu Container */

.product-category {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.product-category.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Flipbook Container */
.flipbook-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    position: relative;
    min-height: 500px;
}

.cover {
    width: 700px;
    height: 500px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.book {
    width: 100%;
    height: 100%;
    display: flex;
    perspective: 1200px;
    position: relative;
}

.book__page {
    position: absolute;
    width: 50%;
    height: 100%;
    transform: rotateY(0deg);
    transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform-origin: 0% 0%;
    background-color: #F5F5F5;
    background-image: linear-gradient(90deg, rgba(227,227,227,1) 0%, rgba(247,247,247,0) 18%);
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
}

.book__page--1 {
    left: 0;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #8B4513 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 10;
}

.book__page--1 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.book__page--1:nth-of-type(1) {
    background-image: linear-gradient(-90deg, rgba(227,227,227,1) 0%, rgba(247,247,247,0) 18%);
}

.book__page--2 {
    left: 50%;
    pointer-events: none;
    transform-style: preserve-3d;
    background-color: #F5F5F5;
    background-image: linear-gradient(90deg, rgba(227,227,227,1) 0%, rgba(247,247,247,0) 18%);
    z-index: 8;
}

.book__page--4 {
    left: 50%;
    padding: 0 20px;
    background-color: #F5F5F5;
    background-image: linear-gradient(90deg, rgba(227,227,227,1) 0%, rgba(247,247,247,0) 18%);
    z-index: 9;
}

.book__page-front {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotateY(0deg) translateZ(1px);
    backface-visibility: hidden;
    background-color: #F5F5F5;
    background-image: linear-gradient(90deg, rgba(227,227,227,1) 0%, rgba(247,247,247,0) 18%);
    overflow: hidden;
}

.book__page-back {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 0;
    transform: rotateY(180deg) translateZ(1px);
    backface-visibility: hidden;
    background-color: #F5F5F5;
    background-image: linear-gradient(90deg, rgba(227,227,227,1) 0%, rgba(247,247,247,0) 18%);
    overflow: hidden;
}

.book__page-back .page__content {
    transform: scaleX(-1);
}

.book__page-back .page-logo-left {
    transform: translateY(-50%) scaleX(-1);
    right: 15px;
    left: auto;
}

.book__page--thankyou {
    left: 50%;
    padding: 0 20px;
    background-color: #F5F5F5;
    background-image: linear-gradient(90deg, rgba(227,227,227,1) 0%, rgba(247,247,247,0) 18%);
    z-index: 7;
    pointer-events: none;
}

.book input[type="radio"] {
    display: none;
}

.book input[type="radio"]:checked + .book__page {
    transition: transform 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
    transform: rotateY(-180deg);
    z-index: 20;
}

/* Show/hide pages based on radio state */
.book input[type="radio"]#page-1:checked ~ .book__page--1,
.book input[type="radio"]#page-1:checked ~ .book__page--4 {
    z-index: 10;
    pointer-events: auto;
}

.book input[type="radio"]#page-1:checked ~ .book__page--2,
.book input[type="radio"]#page-1:checked ~ .book__page--thankyou {
    z-index: 1;
    pointer-events: none;
}

.book input[type="radio"]#page-2:checked ~ .book__page--2 {
    z-index: 20;
    pointer-events: auto;
}

.book input[type="radio"]#page-2:checked ~ .book__page--1,
.book input[type="radio"]#page-2:checked ~ .book__page--4,
.book input[type="radio"]#page-2:checked ~ .book__page--thankyou {
    z-index: 1;
    pointer-events: none;
}

.book input[type="radio"]#page-3:checked ~ .book__page--thankyou {
    z-index: 20;
    pointer-events: auto;
}

.book input[type="radio"]#page-3:checked ~ .book__page--1,
.book input[type="radio"]#page-3:checked ~ .book__page--4,
.book input[type="radio"]#page-3:checked ~ .book__page--2 {
    z-index: 1;
    pointer-events: none;
}

.page__content {
    padding: 20px 15px;
    height: 100%;
    position: relative;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.page-logo-left {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: auto;
    z-index: 5;
    opacity: 0.9;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.page-logo-left:hover {
    opacity: 1;
}

.page-logo-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.page__content-title {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    margin-top: 5px;
    margin-bottom: 12px;
    font-family: 'Arial', sans-serif;
    flex-shrink: 0;
    display: none;
}

/* Thank You Page Styles */
.thankyou-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 40px 20px;
}

.thankyou-title {
    font-size: 48px;
    font-weight: bold;
    color: #FF6B35;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.thankyou-message {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-family: 'Arial', sans-serif;
}

.thankyou-logo {
    width: 200px;
    height: auto;
    margin: 30px 0;
}

.thankyou-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.thankyou-footer {
    font-size: 18px;
    color: #666;
    margin-top: 30px;
    font-style: italic;
    font-family: 'Arial', sans-serif;
}

.page__content-products {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    padding-right: 5px;
    min-height: 0;
    max-height: 100%;
    width: 100%;
}

.page__content-products::-webkit-scrollbar {
    width: 6px;
}

.page__content-products::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.page__content-products::-webkit-scrollbar-thumb {
    background: #FF6B35;
    border-radius: 3px;
}

.page__content-products::-webkit-scrollbar-thumb:hover {
    background: #E65100;
}

.page__number {
    position: absolute;
    bottom: 10px;
    left: 15px;
    right: 15px;
    font-size: 12px;
    text-align: center;
    color: #666;
    font-family: 'Arial', sans-serif;
    flex-shrink: 0;
}

.page__content-products .product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 15px;
    background: transparent;
    border-radius: 8px;
    box-shadow: none;
    transition: none;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    border: 2px solid #FFE0B2;
    flex: 0 0 auto;
    min-height: 100px;
    max-height: 100px;
    box-sizing: border-box;
}

.product-image-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    position: relative;
    flex-shrink: 0;
    border: 2px solid #FFE0B2;
}

.product-image-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
    justify-content: center;
    min-width: 0;
    overflow: hidden;
    padding-right: 5px;
}

.product-name {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    margin: 0 0 6px 0;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    overflow: visible;
}

.product-description {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0 0 8px 0;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 16px;
    font-weight: bold;
    color: #FF6B35;
    padding: 6px 12px;
    /* background: white;
    border-radius: 15px;
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.2); */
    display: inline-block;
    width: fit-content;
    margin-top: auto;
    white-space: nowrap;
    overflow: visible;
}

/* Page Navigation Buttons */
.page-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FF6B35;
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    z-index: 10;
}

.page-btn:hover {
    background: #FF8C42;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.page-btn:active {
    transform: scale(0.95);
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Page Indicator */
.page-indicator {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
    color: #666;
    font-weight: 600;
}

.page-indicator .current-page {
    color: #FF6B35;
    font-size: 22px;
}

/* Product Items Grid Section */
.product-items-section {
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #FFF8E1;
}

.product-items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-item-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.product-item-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #FFF8E1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item-card:hover .product-item-image img {
    transform: scale(1.1);
}

.product-item-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
}

.product-item-info h3 {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 5px 0;
    padding-left: 2px;
}

.product-price .price {
    font-size: 24px;
    font-weight: bold;
    color: #FF6B35;
}

.product-price .weight {
    font-size: 16px;
    color: #666;
}

.product-btn {
    background-color: #FF6B35;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.product-btn:hover {
    background-color: #FF8C42;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-btn {
    background-color: #FF6B35;
}

.whatsapp-btn:hover {
    background-color: #FF8C42;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #FF6B35;
    transition: transform 0.3s;
}

.page__content-products .product-card:hover,
.product-card:hover {
    transform: none;
    box-shadow: none;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.product-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.ingredients-btn {
    background-color: #FF6B35;
    color: #FFF;
    padding: 12px 25px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.ingredients-btn:hover {
    background-color: #FF8C42;
}

/* About Us Section */
.about-section {
    /* background: linear-gradient(135deg, #FFF8E1 0%, #FFE0B2 100%); */
    padding: 80px 50px;
    margin: 40px 0;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-text h2 span {
    color: #FF6B35;
}

.about-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-item h3 {
    font-size: 36px;
    color: #FF6B35;
    margin-bottom: 5px;
}

.stat-item p {
    color: #666;
    font-size: 14px;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: block;
    height: auto;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 5px solid #FF6B35;
}

/* Awards Section */
.awards-section {
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
    background-color: #FFF8E1;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.award-item-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}


.award-item-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #FFE0B2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.award-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.award-icon {
    width: 100%;
    height: 100%;
    max-width: 300px;
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.award-icon img {
    width: 500px;
    height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    display: block;
}

.award-item-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.award-item-info h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.3;
}

.award-year {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
}

.award-year .year {
    font-size: 20px;
    font-weight: bold;
    color: #FF6B35;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.award-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FF6B35;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #FFF;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: #999;
    font-size: 14px;
}

.stars {
    color: #FF6B35;
    font-size: 20px;
    margin-bottom: 10px;
}

/* Submit Section */
.submit-section {
    padding: 80px 50px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.submit-content {
    flex: 1;
    min-width: 0;
}

.submit-content h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.submit-content h2 span {
    color: #FF6B35;
}

.submit-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.submit-content .contact-form-wrapper {
    margin-top: 30px;
}

.submit-btn {
    background-color: #E65100;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: #FF6B35;
    transform: translateY(-2px);
}

.submit-images {
    flex: 1;
    position: relative;
    height: 400px;
    min-height: 350px;
    max-width: 500px;
    margin-left: 40px;
    overflow: visible;
}

.submit-images .image-wrapper {
    position: absolute;
}

.submit-images .image-wrapper:nth-child(1) {
    top: 0;
    right: 80px;
    z-index: 3;
}

.submit-images .image-wrapper:nth-child(2) {
    top: 120px;
    right: 200px;
    z-index: 2;
}

.submit-images .image-wrapper:nth-child(3) {
    top: 240px;
    right: 40px;
    z-index: 1;
}

.submit-images .floating-image {
    width: 180px;
    height: 220px;
    transform: rotate(0deg);
}

.submit-images .image-wrapper:nth-child(1) .floating-image {
    transform: rotate(-4deg);
}

.submit-images .image-wrapper:nth-child(2) .floating-image {
    transform: rotate(4deg);
}

.submit-images .image-wrapper:nth-child(3) .floating-image {
    transform: rotate(-2deg);
}

/* Footer */
footer {
    background-color: #FFF8E1;
    color: #333;
    padding: 35px 50px 15px;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: 80px;
    justify-items: start;
    align-items: start;
    padding-right: 0;
}
    
.footer-section {
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.footer-explore {
    margin-left: 0;
}

.footer-section h3 {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #FF6B35;
    text-transform: uppercase;
}

.footer-section h3 span {
    color: #FF6B35;
}

.footer-logo {
    margin-bottom: 10px;
    text-align: left;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    filter: none;
    transition: transform 0.3s ease;
    margin-left: 0;
    margin-right: auto;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.footer-section p {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #000;
    font-size: 14px;
    font-weight: normal;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 6px;
}

.footer-links-list a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: #FF6B35;
}

.contact-info {
    color: #000;
}

.contact-info p {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 14px;
    color: #000;
}

.customer-care {
    margin-top: 10px !important;
    margin-bottom: 6px !important;
}

.customer-care strong {
    font-size: 14px;
    color: #000;
}

.fssai-license {
    margin-top: 15px;
    padding-top: 15px;
    /* border-top: 1px solid #e0e0e0; */
}

.fssai-license strong {
    font-size: 13px;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.fssai-license span {
    font-size: 13px;
    color: #FF6B35;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.fssai-info {
    margin-bottom: 15px;
    padding: 12px 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 5px;
    border-left: 3px solid #FF6B35;
}

.fssai-info p {
    margin: 0;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.fssai-info strong {
    color: #333;
}

.fssai-info span {
    color: #FF6B35;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-phone {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-phone:hover {
    color: #FF6B35;
}

.contact-email {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
    margin-top: 5px;
    word-break: break-all;
}

.contact-email:hover {
    color: #FF6B35;
}

/* Contact Form Styles */
.contact-form-wrapper {
    margin-top: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f5 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
    border: 2px solid rgba(255, 107, 53, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
}

.contact-form-wrapper h4 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.contact-form-wrapper h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF6B35 0%, #FF8C42 100%);
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    position: relative;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    letter-spacing: 0.3px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.contact-form input:hover,
.contact-form textarea:hover {
    border-color: #FF6B35;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.1);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15), 0 4px 12px rgba(255, 107, 53, 0.2);
    transform: translateY(-1px);
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #e74c3c;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    display: block;
    color: #e74c3c;
    font-size: 12px;
    margin-top: 5px;
    min-height: 18px;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: white;
    padding: 14px 25px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact-submit-btn:hover::before {
    left: 100%;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}


.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    outline: none;
}

.newsletter-form button {
    background-color: #FF6B35;
    color: #FFF;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background-color: #FF8C42;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 15px;
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN - LARGE DESKTOP (1200px+)
   ============================================ */
@media (min-width: 1400px) {
    .hero {
        max-width: 1600px;
    }

    .products-section {
        max-width: 1600px;
    }

    .submit-section {
        max-width: 1600px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - TABLET (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
    header {
        padding: 15px 30px;
    }

    .logo-img {
        height: 75px;
        max-width: 240px;
    }

    nav ul {
        gap: 20px;
    }

    nav ul li a {
        padding: 6px 12px;
        font-size: 14px;
    }

    .hero {
        padding: 60px 30px;
        gap: 30px;
        flex-direction: column;
        align-items: center;
        flex-wrap: nowrap;
    }

    .hero-content {
        flex: 0 0 auto;
        max-width: 100%;
        order: 1;
        width: 100%;
        margin-bottom: 0;
    }

    .animated-heading {
        font-size: 38px;
    }

    .animated-description {
        font-size: 16px;
    }

    .hero-images {
        height: auto;
        min-height: 350px;
        max-width: 500px;
        margin: 30px auto 0;
        flex: 1 1 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        order: 2;
    }

    .animated-heading {
        font-size: 36px;
    }

    .text-line-1,
    .text-line-2 {
        display: block;
        text-align: center;
    }

    .highlight-text {
        display: block;
        text-align: center;
        width: 100%;
    }

    .rotating-text {
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: block;
        min-height: 1.2em;
        overflow: hidden;
    }

    .text-item {
        text-align: center;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }

    .hero-images .image-wrapper {
        position: relative;
        flex: 0 0 auto;
        width: auto;
    }

    .hero-images .image-wrapper:nth-child(1),
    .hero-images .image-wrapper:nth-child(2),
    .hero-images .image-wrapper:nth-child(3) {
        top: auto;
        right: auto;
        left: auto;
    }

    .floating-image {
        width: 150px;
        height: auto;
        aspect-ratio: 4/5;
        max-height: 190px;
    }

    .category-section {
        padding: 60px 30px;
        margin: 30px 10px;
    }

    .category-section .section-header h2 {
        font-size: 36px;
    }

    .category-section .section-header p {
        font-size: 16px;
    }

    .category-item {
        min-width: calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
        flex: 0 0 calc(50% - 7.5px);
    }

    .category-circle {
        width: 100%;
        max-width: 180px;
        height: 180px;
        border-radius: 50%;
        object-fit: cover;
        aspect-ratio: 1;
    }

    .category-item h3 {
        font-size: 15px;
    }

    .products-section {
        padding: 50px 20px;
    }

    .product-range-container {
        padding: 30px 20px;
    }

    .product-range-container .section-header h2 {
        font-size: 32px;
    }

    .category-header-bar h3 {
        font-size: 20px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-item:nth-child(3n) {
        border-right: 1px solid #FF8C42;
    }

    .product-item:nth-child(2n) {
        border-right: none;
    }

    .product-item {
        font-size: 14px;
        padding: 10px 12px;
    }

    .menu-col-image {
        width: 80px;
    }

    .menu-product-image {
        width: 70px;
        height: 70px;
    }

    .menu-col-name {
        min-width: 140px;
    }

    .menu-col-name h3 {
        font-size: 16px;
    }

    .menu-col-description {
        min-width: 180px;
    }

    .menu-col-description p {
        font-size: 12px;
    }

    .menu-col-weight {
        min-width: 80px;
    }

    .menu-col-weight span {
        font-size: 12px;
        padding: 4px 8px;
    }

    .menu-col-price {
        min-width: 100px;
    }

    .menu-col-price .price {
        font-size: 18px;
    }

    .menu-col-action {
        min-width: 100px;
    }

    .menu-inquiry-btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .product-menu-wrapper {
        padding: 25px;
    }

    .product-menu-nav {
        gap: 20px;
        margin-bottom: 30px;
    }

    .menu-nav-btn .nav-icon {
        font-size: 24px;
    }

    .menu-nav-btn .nav-text {
        font-size: 13px;
    }

    .category-title {
        font-size: 30px;
    }

    .category-title::before,
    .category-title::after {
        width: 60px;
    }

    .flipbook-container {
        margin: 30px 0;
        min-height: 500px;
    }

    .cover {
        width: 700px;
        height: 500px;
    }

    .book__page {
        width: 50%;
    }

    .page__content {
        padding: 25px 20px;
    }

    .page__content-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .page__content-products {
        gap: 12px;
    }

    .product-card {
        padding: 12px;
        gap: 15px;
    }

    .product-image-wrapper {
        width: 80px;
        height: 80px;
    }

    .product-name {
        font-size: 16px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .product-description {
        font-size: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .product-price {
        font-size: 14px;
        padding: 5px 10px;
        white-space: nowrap;
    }

    .product-price {
        font-size: 14px;
    }

    .product-image-wrapper {
        width: 160px;
        height: 160px;
    }
    
    .product-name {
        font-size: 20px;
    }

    .product-description {
        font-size: 13px;
    }

    .product-price {
        font-size: 16px;
    }

    .page-btn {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .product-items-section {
        padding: 60px 30px;
    }

    .product-items-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .product-item-image {
        height: 250px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .about-section {
        padding: 60px 30px;
    }

    .about-content {
        gap: 40px;
    }

    .about-text h2 {
        font-size: 36px;
    }

    .testimonials-section {
        padding: 60px 30px;
    }

    .awards-section {
        padding: 60px 30px;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 30px;
    }

    .award-item-image {
        height: 350px;
    }

    .award-icon {
        width: 100%;
        height: 350px;
    }

    .award-item-info {
        padding: 15px;
        gap: 8px;
    }

    .award-item-info h3 {
        font-size: 17px;
    }

    .award-year .year {
        font-size: 18px;
    }

    .award-description {
        font-size: 13px;
    }


    .submit-section {
        padding: 60px 30px;
        gap: 30px;
        flex-wrap: wrap;
    }

    .submit-content {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .submit-content h2 {
        font-size: 36px;
    }

    .submit-images {
        height: 350px;
        max-width: 400px;
        margin: 0 auto;
        flex: 1 1 100%;
    }

    .submit-images .image-wrapper:nth-child(1) {
        right: 50px;
    }

    .submit-images .image-wrapper:nth-child(2) {
        right: 150px;
    }

    .submit-images .floating-image {
        width: 150px;
        height: 180px;
    }

    footer {
        padding: 40px 25px 20px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        margin-bottom: 25px;
        margin-right: 0;
        margin-left: 0;
        padding: 0;
    }

    .footer-explore {
        margin-left: 20px;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
        color: #FF6B35;
    }

    .footer-logo-img {
        height: 55px;
        max-width: 180px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE (max-width: 767px)
   ============================================ */
@media (max-width: 768px) {
    header {
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .logo-img {
        height: 65px;
        max-width: 200px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .main-nav.active {
        max-height: 500px;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 20px 0;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        padding: 12px 15px;
        font-size: 14px;
        display: block;
        text-align: center;
        width: 100%;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
        gap: 30px;
        min-height: auto;
    }

    .hero-content {
        padding: 0;
        max-width: 100%;
        margin-bottom: 0;
        flex: 1 1 100%;
        order: 1;
    }

    .animated-heading {
        font-size: 28px;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .animated-description {
        font-size: 15px;
        margin-bottom: 25px;
        line-height: 1.6;
        padding: 0 10px;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
        padding: 14px 30px;
    }

    .hero-images {
        height: auto;
        min-height: auto;
        width: 100%;
        max-width: 100%;
        margin: 20px 0 0 0;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 20px 10px;
        order: 2;
        overflow: visible;
        flex-wrap: nowrap;
    }

    .animated-heading {
        font-size: 26px;
    }

    .text-line-1,
    .text-line-2 {
        display: block;
        font-size: inherit;
        text-align: center;
    }

    .highlight-text {
        display: block;
        text-align: center;
    }

    .rotating-text {
        width: 100%;
        max-width: 100%;
        text-align: center;
        display: block;
        min-height: 1.2em;
    }

    .text-item {
        text-align: center;
        width: 100%;
    }

    .highlight-text::after {
        display: none;
    }

    .hero-images .image-wrapper {
        position: relative;
        flex: 1 1 0;
        min-width: 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
    }

    .hero-images .image-wrapper:nth-child(1),
    .hero-images .image-wrapper:nth-child(2),
    .hero-images .image-wrapper:nth-child(3) {
        top: auto;
        right: auto;
        left: auto;
    }

    .floating-image {
        width: 100%;
        max-width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 15px;
    }

    .hero-images .image-wrapper:nth-child(1) .floating-image {
        transform: rotate(-3deg);
        animation: float 3s ease-in-out infinite;
    }

    .hero-images .image-wrapper:nth-child(2) .floating-image {
        transform: rotate(3deg);
        animation: float2 3s ease-in-out infinite 0.5s;
    }

    .hero-images .image-wrapper:nth-child(3) .floating-image {
        transform: rotate(-2deg);
        animation: float3 3s ease-in-out infinite 1s;
    }

    .hero-images .image-wrapper .image-tag {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 8px;
        font-size: 11px;
        padding: 4px 12px;
        transform: none;
        opacity: 1;
        animation: none;
    }

    .category-section {
        padding: 40px 15px;
        margin: 20px 10px;
        border-radius: 20px;
    }

    .carousel-container {
        gap: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel {
        gap: 0;
        padding: 15px 50px;
        scroll-snap-type: x mandatory;
        overflow-x: auto;
        overflow-y: visible;
    }

    .category-item {
        min-width: calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
        flex: 0 0 calc(50% - 7.5px);
        width: calc(50% - 7.5px);
        padding: 0 10px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        position: relative;
        overflow: visible;
    }

    .category-circle {
        width: 100%;
        max-width: 180px;
        height: 180px;
        margin: 0 auto;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        aspect-ratio: 1;
    }

    .category-item h3 {
        font-size: 14px;
        margin-top: 15px;
    }

    .category-section .section-header h2 {
        font-size: 32px;
    }

    .category-section .section-header p {
        font-size: 15px;
    }

    .products-section {
        padding: 40px 15px;
    }

    .product-menu-wrapper {
        padding: 20px;
        border-radius: 20px;
    }

    .product-menu-nav {
        gap: 15px;
        margin-bottom: 25px;
        flex-wrap: wrap;
    }

    .menu-nav-btn {
        padding: 8px 15px;
    }

    .menu-nav-btn .nav-icon {
        font-size: 22px;
    }

    .menu-nav-btn .nav-text {
        font-size: 12px;
    }

    .menu-nav-btn.active::after {
        width: 40px;
        bottom: -15px;
    }

    .category-header {
        margin-bottom: 30px;
    }

    .category-icon {
        font-size: 28px;
    }

    .category-title {
        font-size: 26px;
    }

    .category-title::before,
    .category-title::after {
        width: 40px;
    }

    .product-menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .product-name {
        font-size: 18px;
    }

    .product-description {
        font-size: 13px;
        max-width: 100%;
    }

    .product-price {
        font-size: 16px;
    }

    .product-items-section {
        padding: 50px 20px;
    }

    .product-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 25px;
    }

    .product-item-image {
        height: 200px;
    }

    .product-item-info {
        padding: 18px;
    }

    .product-item-info h3 {
        font-size: 18px;
    }

    .product-price .price {
        font-size: 20px;
    }

    .product-price .weight {
        font-size: 13px;
    }

    .product-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .show-more-btn {
        width: 100%;
        padding: 12px 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-items-section {
        padding: 60px 30px;
    }

    .product-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .product-item-image {
        height: 220px;
    }

    .product-item-info {
        padding: 20px;
    }

    .product-item-info h3 {
        font-size: 20px;
    }

    .product-price .price {
        font-size: 22px;
    }

    .product-price .weight {
        font-size: 14px;
    }

    .product-content h3 {
        font-size: 20px;
    }

    .product-content p {
        font-size: 14px;
    }

    .about-section {
        padding: 50px 20px;
        margin: 20px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 32px;
    }

    .testimonials-section {
        padding: 50px 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .awards-section {
        padding: 50px 20px;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .award-item-image {
        height: 350px;
    }

    .award-icon {
        width: 100%;
        height: 300px;
    }

    .award-item-info {
        padding: 20px;
        gap: 10px;
    }

    .award-item-info h3 {
        font-size: 20px;
    }

    .award-year .year {
        font-size: 20px;
    }

    .award-description {
        font-size: 14px;
    }

    .submit-section {
        flex-direction: column;
        padding: 50px 20px;
        text-align: center;
        gap: 30px;
    }

    .submit-content {
        margin-bottom: 0;
        flex: 1 1 100%;
        max-width: 100%;
    }

    .submit-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .submit-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .submit-btn {
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
        margin: 0 auto;
    }

    .submit-images {
        flex: 1 1 100%;
        max-width: 100%;
        height: auto;
        min-height: 250px;
        margin: 0;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .submit-images .image-wrapper {
        position: relative;
        flex: 1;
        max-width: 120px;
    }

    .submit-images .image-wrapper:nth-child(1) {
        top: 0;
        right: 0;
    }

    .submit-images .image-wrapper:nth-child(2) {
        top: 0;
        right: 0;
    }

    .submit-images .image-wrapper:nth-child(3) {
        top: 0;
        right: 0;
    }

    .submit-images .floating-image {
        width: 100%;
        max-width: 120px;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
        border-radius: 12px;
    }

    .submit-images .image-wrapper:nth-child(1) .floating-image {
        transform: rotate(-4deg);
    }

    .submit-images .image-wrapper:nth-child(2) .floating-image {
        transform: rotate(4deg);
    }

    .submit-images .image-wrapper:nth-child(3) .floating-image {
        transform: rotate(-2deg);
    }

    footer {
        padding: 30px 20px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 20px;
        margin-right: 0;
        margin-left: 0;
        padding: 0;
    }

    .footer-section {
        text-align: left;
    }

    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 12px;
        color: #FF6B35;
    }

    .footer-logo {
        margin-bottom: 12px;
        text-align: center;
    }

    .footer-logo-img {
        height: 50px;
        max-width: 160px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-section p {
        font-size: 13px;
        margin-bottom: 10px;
        line-height: 1.6;
        color: #000;
    }

    .footer-links-list {
        margin-bottom: 0;
    }

    .footer-links-list li {
        margin-bottom: 8px;
    }

    .footer-links-list a {
        font-size: 13px;
        color: #000;
    }

    .contact-info p {
        font-size: 13px;
        margin-bottom: 10px;
        color: #000;
    }

    .customer-care {
        margin-top: 12px !important;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        width: 100%;
        min-width: auto;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE DESIGN - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    header {
        padding: 12px 15px;
    }

    .logo-img {
        height: 55px;
        max-width: 180px;
    }

    nav ul {
        gap: 8px;
        padding: 15px 0;
    }

    nav ul li a {
        padding: 10px 15px;
        font-size: 13px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        padding: 40px 15px;
        gap: 25px;
    }

    .hero-content {
        padding: 0;
    }

    .animated-heading {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .animated-description {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 5px;
    }

    .hero-cta {
        gap: 12px;
    }

    .cta-button {
        font-size: 14px;
        padding: 12px 25px;
        min-height: 44px;
        max-width: 100%;
    }

    .hero-images {
        height: auto;
        min-height: auto;
        gap: 8px;
        padding: 15px 10px;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        overflow: visible;
        flex-wrap: nowrap;
        width: 100%;
    }

    .hero-images .image-wrapper {
        flex: 1 1 0;
        min-width: 0;
        max-width: 100%;
        padding: 0 3px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .floating-image {
        width: 100%;
        max-width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

    .hero-images .image-wrapper:nth-child(1) .floating-image {
        transform: rotate(-3deg);
        animation: float 3s ease-in-out infinite;
    }

    .hero-images .image-wrapper:nth-child(2) .floating-image {
        transform: rotate(3deg);
        animation: float2 3s ease-in-out infinite 0.5s;
    }

    .hero-images .image-wrapper:nth-child(3) .floating-image {
        transform: rotate(-2deg);
        animation: float3 3s ease-in-out infinite 1s;
    }

    .hero-images .image-wrapper .image-tag {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 10px;
        font-size: 11px;
        padding: 5px 14px;
        transform: none;
        opacity: 1;
        animation: none;
        white-space: nowrap;
    }

    .category-section {
        padding: 40px 15px;
        margin: 20px 10px;
        border-radius: 20px;
    }

    .category-section .section-header {
        margin-bottom: 30px;
        text-align: center;
    }

    .category-section .section-header h2 {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .category-section .section-header p {
        font-size: 14px;
    }

    .carousel-container {
        gap: 8px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        min-width: 40px;
        min-height: 40px;
        flex-shrink: 0;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel {
        padding: 10px 0;
        overflow-y: visible;
        gap: 10px;
    }

    .category-item {
        min-width: calc(50% - 5px);
        max-width: calc(50% - 5px);
        flex: 0 0 calc(50% - 5px);
        width: calc(50% - 5px);
        padding: 0 5px;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        position: relative;
        overflow: visible;
    }

    .category-circle {
        width: 100%;
        max-width: 150px;
        height: 150px;
        margin: 0 auto 15px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
        aspect-ratio: 1;
    }

    .category-item h3 {
        font-size: 11px;
        margin-top: 10px;
    }

    .products-section {
        padding: 30px 10px;
    }

    .product-range-container {
        padding: 20px 10px;
        border-radius: 15px;
    }

    .product-range-header {
        margin-bottom: 30px;
    }

    .product-range-container .section-header {
        margin-bottom: 30px;
    }

    .product-range-container .section-header h2 {
        font-size: 24px;
    }

    .product-category-section {
        margin-bottom: 30px;
    }

    .category-header-bar {
        padding: 12px 15px;
    }

    .category-header-bar h3 {
        font-size: 18px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-item {
        border-right: none !important;
        border-bottom: 1px solid #FF8C42;
        font-size: 13px;
        padding: 10px 12px;
    }

    .product-item:last-child {
        border-bottom: none;
    }

    .menu-header {
        padding-bottom: 20px;
        margin-bottom: 25px;
    }

    .menu-logo img {
        max-width: 150px;
    }

    .menu-title {
        font-size: 24px;
    }

    .menu-subtitle {
        font-size: 14px;
    }

    .menu-table {
        font-size: 12px;
        display: block;
    }

    .menu-table thead {
        display: none;
    }

    .menu-table tbody {
        display: block;
    }

    .menu-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 2px solid #FF6B35;
        border-radius: 15px;
        padding: 15px;
        background: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .menu-table tbody tr:hover {
        transform: none;
    }

    .menu-table tbody td {
        display: block;
        padding: 10px 0;
        text-align: left;
        border: none;
    }

    .menu-table tbody td:before {
        content: attr(data-label);
        font-weight: bold;
        color: #FF6B35;
        display: block;
        margin-bottom: 5px;
        font-size: 13px;
        text-transform: uppercase;
    }

    .menu-table tbody td[data-label=""]:before {
        display: none;
    }

    .menu-col-image {
        width: 100%;
        text-align: center;
    }

    .menu-product-image {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .menu-col-name {
        min-width: 100%;
    }

    .menu-col-name h3 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 10px;
    }

    .menu-col-description {
        min-width: 100%;
        text-align: center;
    }

    .menu-col-description p {
        font-size: 13px;
    }

    .menu-col-weight {
        min-width: 100%;
        text-align: center;
    }

    .menu-col-price {
        min-width: 100%;
        text-align: center;
    }

    .menu-col-price .price {
        font-size: 20px;
    }

    .menu-col-action {
        min-width: 100%;
        text-align: center;
    }

    .menu-inquiry-btn {
        width: 100%;
        max-width: 200px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .product-menu-wrapper {
        padding: 15px;
        border-radius: 15px;
    }

    .product-menu-nav {
        gap: 10px;
        margin-bottom: 20px;
    }

    .menu-nav-btn {
        padding: 6px 12px;
    }

    .menu-nav-btn .nav-icon {
        font-size: 20px;
    }

    .menu-nav-btn .nav-text {
        font-size: 11px;
    }

    .menu-nav-btn.active::after {
        width: 30px;
        bottom: -12px;
    }

    .category-icon {
        font-size: 24px;
    }

    .category-title {
        font-size: 22px;
    }

    .category-title::before,
    .category-title::after {
        width: 30px;
    }

    .flipbook-container {
        margin: 20px 0;
        min-height: auto;
    }

    .cover {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
    }

    .book {
        flex-direction: column;
        perspective: none;
    }

    .book__page {
        position: relative;
        width: 100%;
        height: auto;
        min-height: auto;
        transform: none !important;
        display: block;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        pointer-events: auto;
    }

    .book__page--1 {
        padding: 30px 20px;
        min-height: 300px;
    }

    .book__page--1,
    .book__page--2,
    .book__page--4 {
        transform: none !important;
        position: relative;
        right: auto;
    }

    .book__page-front,
    .book__page-back {
        position: relative;
        transform: none !important;
        padding: 20px 15px;
    }

    .book input[type="radio"]:checked + .book__page {
        transform: none !important;
    }

    .page__content {
        padding: 20px 15px;
        height: auto;
        min-height: auto;
    }

    .page__content-title {
        font-size: 20px;
        margin-bottom: 15px;
        margin-top: 0;
    }

    .page__content-products {
        flex-direction: column;
        gap: 15px;
        height: auto;
        overflow-y: visible;
        max-height: none;
    }

    .product-card {
        max-width: 100%;
        width: 100%;
        padding: 12px;
        gap: 12px;
        flex-direction: row;
    }

    .product-image-wrapper {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .product-name {
        font-size: 14px;
        margin-bottom: 4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .product-description {
        font-size: 11px;
        margin-bottom: 6px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .product-price {
        font-size: 12px;
        padding: 4px 8px;
        white-space: nowrap;
    }

    .page__number {
        position: relative;
        bottom: auto;
        margin-top: 15px;
        width: 100%;
    }

    .page-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .page-indicator {
        font-size: 14px;
        margin-top: 12px;
    }

    .product-items-section {
        padding: 40px 15px;
    }

    .product-items-section .section-header {
        text-align: center;
        margin-bottom: 30px;
        justify-content: center;
    }

    .product-items-section .section-header h2 {
        font-size: 24px;
        width: 100%;
        text-align: center;
    }

    .product-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 20px;
    }

    .product-item-image {
        height: 180px;
    }

    .product-item-info {
        padding: 15px;
    }

    .product-item-info h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .product-price {
        margin-bottom: 12px;
    }

    .product-price .price {
        font-size: 18px;
    }

    .product-price .weight {
        font-size: 12px;
    }

    .product-btn {
        font-size: 13px;
        padding: 10px 15px;
        min-height: 40px;
    }

    .section-header {
        margin-bottom: 25px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .section-header h2 {
        font-size: 22px;
        width: 100%;
        text-align: center;
    }

    .show-more-btn {
        min-height: 44px;
        font-size: 14px;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3 {
        font-size: 18px;
    }

    .product-content p {
        font-size: 13px;
    }

    .ingredients-btn {
        min-height: 44px;
        font-size: 14px;
    }

    .about-section {
        padding: 40px 15px;
        margin: 15px 0;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 14px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-item h3 {
        font-size: 26px;
    }

    .stat-item p {
        font-size: 12px;
    }

    .testimonials-section {
        padding: 40px 15px;
    }

    .testimonial-card {
        padding: 18px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .awards-section {
        padding: 40px 15px;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }

    .awards-section .section-header {
        padding: 0;
        margin-bottom: 20px;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 25px;
        padding: 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .award-item-card {
        margin: 0;
        border-radius: 10px;
        width: 100%;
        overflow: hidden;
    }

    .award-item-image {
        height: 350px;
        width: 100%;
        border-radius: 0;
        padding: 0;
        margin: 0;
    }

    .award-icon {
        width: 100%;
        height: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .award-icon img {
        object-fit: contain;
        width: 100%;
        height: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }

    .award-item-info {
        padding: 10px;
        gap: 6px;
    }

    .award-item-info h3 {
        font-size: 14px;
    }

    .award-year .year {
        font-size: 15px;
    }

    .award-description {
        font-size: 11px;
        line-height: 1.4;
    }

    .submit-section {
        padding: 40px 15px;
    }

    .submit-content h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .submit-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .submit-btn {
        min-height: 44px;
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        padding: 12px 25px;
    }

    .submit-images {
        height: auto;
        min-height: 200px;
        margin-top: 20px;
        gap: 8px;
    }

    .submit-images .image-wrapper {
        position: relative;
        flex: 1;
        max-width: 100px;
    }

    .submit-images .image-wrapper:nth-child(1),
    .submit-images .image-wrapper:nth-child(2),
    .submit-images .image-wrapper:nth-child(3) {
        top: 0;
        right: 0;
    }

    .submit-images .floating-image {
        width: 100%;
        max-width: 100px;
        height: auto;
        aspect-ratio: 3/4;
        object-fit: cover;
        border-radius: 10px;
    }

    footer {
        padding: 25px 15px 12px;
    }

    .contact-form-wrapper {
        margin-top: 15px;
        padding: 20px 15px;
        border-radius: 12px;
    }

    .contact-form-wrapper h4 {
        font-size: 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .contact-form label {
        font-size: 13px;
        margin-bottom: 6px;
        text-align: left;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .contact-submit-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .footer-content {
        gap: 20px;
        margin-bottom: 15px;
        margin-right: 0;
        margin-left: 0;
        padding: 0;
    }

    .footer-explore {
        margin-left: 0;
    }

    .footer-section {
        text-align: left;
    }

    .footer-section h3 {
        font-size: 14px;
        margin-bottom: 10px;
        color: #FF6B35;
    }

    .footer-logo {
        margin-bottom: 10px;
        text-align: center;
    }

    .footer-logo-img {
        height: 100px;
        max-width: 140px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-section p {
        font-size: 12px;
        margin-bottom: 8px;
        line-height: 1.5;
        color: #000;
    }

    .footer-links-list li {
        margin-bottom: 6px;
    }

    .footer-links-list a {
        font-size: 12px;
        color: #000;
    }

    .contact-info p {
        font-size: 12px;
        margin-bottom: 8px;
        color: #000;
    }

    .customer-care {
        margin-top: 10px !important;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
    }

    .newsletter-form input {
        min-height: 44px;
        font-size: 16px;
    }

    .newsletter-form button {
        min-height: 44px;
        font-size: 14px;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

