/* Base Styles */
:root {
    --primary-color: #e67e22;
    --secondary-color: #d35400;
    --dark-color: #333;
    --light-color: #f9f9f9;
    --gray-color: #777;
    --light-gray: #eee;
    --white: #fff;
    --black: #000;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

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

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 100px;
    transition: height 0.3s ease;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1.1rem;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary-color);
    background-color: rgba(231, 76, 60, 0.1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-icon {
    font-size: 1.8rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.cart-icon:hover {
    background-color: rgba(231, 76, 60, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

.cart-count {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8rem;
    position: relative;
    top: -10px;
    right: 5px;
}

/* Hero Section - Tastee.in Style */
.hero {
    position: relative;
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: var(--white);
    padding: 0;
    margin-bottom: 40px;
    overflow: hidden;
    min-height: 70vh;
    margin-top: 0;
    padding-top: 100px;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-100%);
}

.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.slide-image {
    position: relative;
    width: 100%;
    height: 500px;
    opacity: 0;
    transform: scale(0.9) translateX(50px);
    transition: all 1s ease-out;
}

.hero-slide.active .slide-image {
    opacity: 1;
    transform: scale(1) translateX(0);
    animation: slideInImage 1s ease-out 0.3s both;
}

.slide-image img {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.4));
    animation: float 4s ease-in-out infinite;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.slide-image img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Random positioning for bhakri images */
.slide-image img:nth-child(1) {
    width: 400px;
    height: auto;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.slide-image img:nth-child(2) {
    width: 200px;
    height: auto;
    top: 5%;
    right: 15%;
    animation-delay: 0.5s;
}

.slide-image img:nth-child(3) {
    width: 200px;
    height: auto;
    bottom: 20%;
    left: 5%;
    animation-delay: 1s;
}

.slide-image img:nth-child(4) {
    width: 200px;
    height: auto;
    top: 60%;
    right: 5%;
    animation-delay: 1.5s;
}

.slide-text {
    text-align: left;
    z-index: 2;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.hero-slide.active .slide-text {
    opacity: 1;
    transform: translateX(0);
    animation: slideInText 0.8s ease-out 0.8s both;
}

.slide-text h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.hero-slide.active .slide-text h1 {
    opacity: 1;
    transform: translateY(0);
    animation: slideInTitle 0.6s ease-out 1.2s both;
}

.slide-text p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.hero-slide.active .slide-text p {
    opacity: 1;
    transform: translateY(0);
    animation: slideInDescription 0.6s ease-out 1.6s both;
}

.slide-text .cta-button {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
    display: inline-block;
    background: linear-gradient(45deg, #fff, #f8f9fa);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hero-slide.active .slide-text .cta-button {
    opacity: 1;
    transform: translateY(0);
    animation: slideInButton 0.6s ease-out 2s both;
}

.slide-text .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #f8f9fa, #fff);
}

/* Carousel Navigation Dots - Tastee.in Style */
.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(0,0,0,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dot.active {
    background-color: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

.dot:hover {
    background-color: rgba(255,255,255,0.7);
    transform: scale(1.1);
}

/* Animations */
@keyframes slideInImage {
    from {
        opacity: 0;
        transform: scale(0.8) translateX(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateX(0);
    }
}

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

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

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

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

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

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: var(--secondary-color);
}

/* Category Grid */
.featured-categories {
    padding: 40px 0;
}

.featured-categories h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.category-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 15px;
    text-align: center;
}

.category-card a {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: var(--light-gray);
    color: var(--dark-color);
    font-weight: 500;
}

/* About Preview */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 0;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.learn-more:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section p, .footer-section li {
    margin-bottom: 10px;
    color: var(--light-gray);
}

.footer-section a {
    color: var(--light-gray);
    transition: color 0.3s;
}

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

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--gray-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-color);
    color: var(--gray-color);
}

/* Shop Page Styles */
.shop-main {
    padding: 40px 0;
}

.shop-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.filter-btn {
    padding: 8px 15px;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.product-section {
    margin-bottom: 50px;
}

.product-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-gray);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    padding: 15px;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    min-height: 50px;
}

.price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.weight {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: var(--secondary-color);
}

/* About Page Styles */
.about-main {
    padding: 40px 0;
}

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.about-content {
    height: -webkit-fill-available;
    text-align: center; 
    max-width: 1000px;
    /* margin: 0 auto; */
    padding: 20px 10px;
    margin: 0 auto;
    background-image: url('../images/about-content.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    position: relative;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    z-index: 1;
}

.about-content > * {
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: 2rem;
    margin: 30px 0 20px;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.value-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.about-process ol {
    padding-left: 20px;
    margin: 20px 0;
}

.about-process li {
    margin-bottom: 15px;
}

/* Company Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.location-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s;
}

.location-card:hover {
    transform: translateY(-5px);
}

.location-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.location-card p {
    margin-bottom: 8px;
    line-height: 1.5;
}

.location-card strong {
    color: var(--dark-color);
}

/* Contact Page Styles */
.contact-main {
    padding: 40px 0;
}

.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form h2, .contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

.info-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.whatsapp-link {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.whatsapp-link:hover {
    background-color: #128C7E;
    color: white;
}

.faq-section {
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.faq-container {
    margin-bottom: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    background-color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer p {
    padding: 15px 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 15px;
}

.write-review {
    display: block;
    margin: 20px auto 0;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.write-review:hover {
    background-color: var(--secondary-color);
}

/* Product Single Page Styles */
.product-single {
    padding: 40px 0;
}

.breadcrumbs {
    padding: 0 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--gray-color);
}

.breadcrumbs a {
    color: var(--gray-color);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
}

.main-image {
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
}

.thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail.active, .thumbnail:hover {
    border-color: var(--primary-color);
}

.product-details h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--gray-color);
    font-size: 0.9rem;
}

.product-rating {
    color: #f1c40f;
}

.price-container {
    margin: 20px 0;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.weight {
    color: var(--gray-color);
}

.product-description {
    margin: 20px 0;
}

.product-description ul {
    margin: 15px 0 15px 20px;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin: 25px 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
}

.qty-minus, .qty-plus {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
}

.qty-input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--light-gray);
    border-right: 1px solid var(--light-gray);
}

.add-to-cart, .buy-now {
    padding: 0 25px;
    height: 40px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart {
    background-color: var(--primary-color);
    color: var(--white);
}

.add-to-cart:hover {
    background-color: var(--secondary-color);
}

.buy-now {
    background-color: var(--dark-color);
    color: var(--white);
}

.buy-now:hover {
    background-color: #444;
}

.product-shipping {
    background-color: var(--light-gray);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.product-shipping p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-tabs {
    margin-top: 40px;
}

.tab-btn {
    padding: 10px 20px;
    background-color: var(--light-gray);
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-weight: 500;
    margin-right: 5px;
}

.tab-btn.active {
    border-bottom-color: var(--primary-color);
    background-color: var(--white);
}

.tab-content {
    display: none;
    padding: 20px;
    background-color: var(--white);
    border-radius: 0 0 5px 5px;
}

.tab-content.active {
    display: block;
}

.tab-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}

.tab-content th, .tab-content td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.tab-content th {
    background-color: var(--light-gray);
}

.review {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.related-products {
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.related-products h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

/* Homepage New Sections */
.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.section-cta {
    text-align: center;
    margin-top: 30px;
}

/* Trending Products */
.trending-products {
    text-align: center;
    background-color: var(--white);
    padding: 60px 0;
}

.trending-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.product-card.trending {
    position: relative;
    border: 2px solid var(--primary-color);
}

.old-price {
    text-decoration: line-through;
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-left: 5px;
}

.rating {
    color: #f1c40f;
    font-size: 0.9rem;
    margin: 5px 0;
}

/* Special Products */
.special-products {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
}

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

.special-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.special-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.special-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.special-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.special-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.special-card p {
    padding: 0 20px;
    color: var(--gray-color);
    margin-bottom: 15px;
}

.special-card .price {
    padding: 0 20px;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.special-card .add-to-cart {
    margin: 0 20px 20px;
    width: calc(100% - 40px);
}

/* Best Sellers */
.best-sellers {
    text-align: center;
    background-color: var(--white);
    padding: 60px 0;
}

.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.bestseller-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}

.bestseller-card:hover {
    transform: translateY(-5px);
}

.rank {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: var(--dark-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.bestseller-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin: 20px 0 15px;
}

.bestseller-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.bestseller-card .price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.sales {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 60px 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
}

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

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white);
}

.feature-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background-color: var(--light-color);
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card .rating {
    color: #f1c40f;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--dark-color);
}

.customer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.customer strong {
    color: var(--primary-color);
}

.customer span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Image Carousel Section */
.image-carousel {
    padding: 60px 0;
    background: #f8f9fa;
}

.carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 500px;
    animation: slideInUp 0.8s ease-out;
}

.carousel-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.carousel-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.carousel-btn-shop {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #d4af37);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-btn-shop:hover {
    background: linear-gradient(135deg, #d4af37, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
    text-decoration: none;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-dots .dot:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Certificates Section */
.certificates {
    text-align: center;
    padding: 60px 0;
    background: #f8f9fa;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.certificate-item {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 25px;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.certificate-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.certificate-info h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.certificate-info p {
    color: var(--gray-color);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--dark-color), #444);
    color: var(--white);
    padding: 60px 0;
}

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

.newsletter h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 15px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

/* Why Choose VAMAJI Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.why-choose-us .section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    font-weight: 400;
}

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

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.value-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.value-icon svg {
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon svg {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.value-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Values */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 60px 0;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .value-card {
        padding: 30px 20px;
    }
    
    .value-card h3 {
        font-size: 20px;
    }
    
    .value-card p {
        font-size: 14px;
    }
}

/* Main Footer Styles */
.main-footer {
    background-color: #fdf2f8;
    padding: 60px 0 40px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Logo Column */
.logo-column {
    max-width: 300px;
}

.footer-logo {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
}

.logo-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-text {
    flex: 1;
}

.brand-name {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    font-size: 24px;
    font-weight: 800;
    padding: 8px 15px;
    border-radius: 8px;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: 1px;
}

.tagline {
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
}

.logo-illustration {
    flex-shrink: 0;
}

/* Social Media Icons */
.social-media {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.social-icon.facebook {
    background: #1877f2;
    color: white;
}

.social-icon i {
    font-size: 18px;
}

.social-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* Footer Headings */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #e74c3c;
    padding-left: 8px;
}

/* Contact Info */
.contact-info {
    margin-top: 10px;
}

.phone-number {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    display: block;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }
    
    .logo-column {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 50px 0 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
        text-align: center;
        padding: 0 20px;
    }
    
    .logo-column {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }
    
    .footer-column {
        align-items: center;
    }
    
    .footer-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .phone-number {
        font-size: 20px;
    }
    
    .social-media {
        justify-content: center;
        margin-top: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 25px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        padding: 0 15px;
        gap: 20px;
    }
    
    .logo-column {
        grid-column: 1 / -1;
        margin-bottom: 15px;
    }
    
    .footer-heading {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .phone-number {
        font-size: 18px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
    }
    
    .social-icon img {
        width: 18px;
        height: 18px;
    }
    
    .logo-column img {
        width: 120px !important;
    }
}

@media (max-width: 360px) {
    .main-footer {
        padding: 30px 0 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        padding: 0 10px;
        gap: 15px;
    }
    
    .logo-column {
        grid-column: 1 / -1;
        margin-bottom: 10px;
    }
    
    .footer-heading {
        font-size: 14px;
    }
    
    .footer-links a {
        font-size: 12px;
    }
    
    .phone-number {
        font-size: 16px;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon img {
        width: 16px;
        height: 16px;
    }
    
    .logo-column img {
        width: 100px !important;
    }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-preview, .contact-content, .product-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    /* Mobile Header Styles */
    .header-container {
        padding: 15px 20px;
    }
    
    .logo {
        height: 80px;
    }
    
    /* Ensure hero section starts below header */
    .hero {
        margin-top: 0;
        padding-top: 80px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .main-nav a {
        font-size: 1.4rem;
        padding: 15px 25px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .cart-icon {
        font-size: 1.3rem;
    }
    
    .category-grid, .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Mobile Styles for smaller screens */
@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .logo {
        height: 120px;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    .hamburger-line {
        height: 2px;
    }
    
    .main-nav a {
        font-size: 1.3rem;
        padding: 12px 20px;
    }
    
    .cart-icon {
        font-size: 1.5rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    /* Homepage responsive styles */
    .special-grid {
        grid-template-columns: 1fr;
    }
    
    .bestseller-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .carousel-slide img {
        height: 250px;
    }
    
    .carousel-content {
        padding: 20px 25px;
        max-width: 90%;
    }
    
    .carousel-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .carousel-content p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .carousel-btn-shop {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certificate-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .certificate-image {
        width: 100px;
        height: 100px;
    }
    
    .certificate-info h3 {
        font-size: 1.2rem;
        margin-top: 15px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section Responsive Styles - Tastee.in Style */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh;
        margin-top: 0;
        padding-top: 80px;
    }
    
    .hero-carousel {
        height: 60vh;
        margin-top: 0;
    }
    
    .slide-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
        text-align: center;
    }
    
    .slide-text {
        text-align: center;
        order: 2;
    }
    
    .slide-text h1 {
        font-size: 2.5rem;
    }
    
    .slide-text p {
        font-size: 1.2rem;
    }
    
    .slide-image {
        order: 1;
        height: 400px;
    }
    
    .slide-image img:nth-child(1) {
        width: 300px;
        top: 15%;
        left: 5%;
    }
    
    .slide-image img:nth-child(2) {
        width: 150px;
        top: 5%;
        right: 10%;
    }
    
    .slide-image img:nth-child(3) {
        width: 150px;
        bottom: 15%;
        left: 5%;
    }
    
    .slide-image img:nth-child(4) {
        width: 150px;
        top: 50%;
        right: 5%;
    }
    
    .carousel-dots {
        bottom: 25px;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        margin-top: 0;
        padding-top: 60%;
    }
    
    .hero-carousel {
        height: 60vh;
        margin-top: 0;
    }
    
    .slide-content {
        padding: 0 15px;
        gap: 25px;
    }
    
    .slide-text h1 {
        font-size: 2rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .slide-image {
        height: 300px;
    }
    
    .slide-image img:nth-child(1) {
        width: 200px;
        top: 10%;
        left: 5%;
    }
    
    .slide-image img:nth-child(2) {
        width: 120px;
        top: 5%;
        right: 5%;
    }
    
    .slide-image img:nth-child(3) {
        width: 120px;
        bottom: 10%;
        left: 5%;
    }
    
    .slide-image img:nth-child(4) {
        width: 120px;
        top: 40%;
        right: 5%;
    }
    
    .carousel-dots {
        bottom: 20px;
        padding: 6px 12px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .slide-text .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .category-grid, .product-grid {
        grid-template-columns: 1fr;
    }
}