/* Base Styles */
:root {
    --primary-color: #e31479;
    --secondary-color: #b20f5f;
    --accent-color: #ff6b9e;
    --text-color: #333;
    --text-light: #777;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --dark: #222;
    --border-color: #eee;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    min-height: 100%;
    position: relative;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background-color: #fff;
}

/* Watermark background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/images/bg_line.png') repeat;
    background-size: 200px;
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
}

/* Content background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: -2;
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

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

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Cart Count Badge */
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
    opacity: 0;
    transform: scale(0);
}

.cart-count.has-items {
    opacity: 1;
    transform: scale(1);
}

.cart-icon {
    position: relative;
    display: inline-block;
}

/* View Cart Button */
.view-cart-btn {
    display: none;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.view-cart-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.view-cart-btn i {
    margin-right: 5px;
}

.top-bar {
    background: var(--dark);
    padding: 6px 0;
    color: var(--white);
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    margin-right: 5px;
    color: var(--primary-color);
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 16px;
    transition: var(--transition);
}

.social-links .zomato-link {
    background-color: #CB202D;  /* Zomato's brand red */
    color: white !important;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links .zomato-link:hover {
    background-color: #9f1b24;  /* Slightly darker red on hover */
    transform: translateY(-1px);
}

/* Leadership Section */
.leadership-section {
    background-color: #fff;
    padding: 80px 0;
}

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

.leader-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.leader-img {
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.leader-img img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

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

.leader-info {
    padding: 25px;
    text-align: center;
}

.leader-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.leader-role {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .leader-img {
        height: 300px;
    }
}

.social-links .swiggy-link {
    background-color: #FC8019;  /* Swiggy's brand orange */
    color: white !important;
    padding: 5px 12px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.social-links .swiggy-link:hover {
    background-color: #e67317;  /* Slightly darker orange on hover */
    transform: translateY(-1px);
}

.social-links .swiggy-link img {
    height: 20px;
    width: auto;
    vertical-align: middle;
}

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

.main-nav {
    padding: 0px 0;
    transition: all 0.3s ease;
    background: white;
    border-bottom: 0px solid #eee;
}

.main-nav.scrolled {
    padding: 0 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-nav .container {
    display: flex;
}

.logo {
    position: relative;
    z-index: 2;
    padding: 0;
    display: flex;
    align-items: center;
    height: 80px; /* Fixed height for the logo container */
    overflow: hidden; /* Prevents logo from overflowing */
}

.logo a {
    display: inline-flex;
    align-items: center;
    position: relative;
    text-decoration: none;
    padding: 2px 0;
    height: auto;
}

/* Logo image */
.logo img {
    height: 150px; /* Increased logo size to match other pages */
    width: auto;
    max-width: none; /* Allows the logo to exceed its container if needed */
    transition: var(--transition);
    position: relative;
    z-index: 2;
    object-fit: contain;
    margin: 0 15px 0 0; /* Adjusted margin */
    pointer-events: none;
}

/* Logo text */
.logo .logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; /* Slightly increased font size */
    font-weight: 700;
    color: var(--primary-color);
    margin-left: 10px;
    position: relative;
    z-index: 2;
    line-height: 1;
    text-transform: none;
    letter-spacing: 0.5px;
    pointer-events: none;
}

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

/* Navigation container */
.main-nav .container {
    display: flex;
    padding: 5px 0;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: auto; /* Push menu to the right */
}

.nav-menu > li {
    position: relative;
    margin: 0 5px;
    padding: 10px 0;
}

.nav-menu > li > a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1001;
    padding: 10px 0;
}

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

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(231, 76, 60, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Cart Icon */
.cart-icon {
    margin-left: 10px;
}

.cart-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.cart-icon a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.bar {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

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

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 8px 15px;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

/* Hero Slider Styles */
.hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #ffffff; /* White background for the slider container */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* White background while loading */
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    will-change: opacity; /* Optimize for better performance */
    backface-visibility: hidden; /* Prevent flicker in WebKit browsers */
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
    -moz-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
}

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

/* Ensure background images are loaded properly */
.hero-slide[style*="background-image"] {
    background-size: cover !important;
    background-position: center center !important;
}

/* Force hardware acceleration */
.hero-slide {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    padding: 20px 0; /* Reduced vertical padding */
    min-height: 500px; /* Adjust based on your needs */
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.container.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 20px 20px 15px;
    text-align: left;
    color: var(--white);
    width: 50%;
    margin-top: -50px; /* Pull content up more */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.3s both;
    max-width: 600px;
}

.hero-content .btn {
    animation: fadeInUp 1s ease 0.6s both;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.slider-arrow:hover {
background: var(--primary-color);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

/* Responsive Styles */
/* Festival Offer Box */
.festival-offer {
    position: relative;
    width: 320px;
    background: linear-gradient(135deg, #fff9f9 0%, #fff5f0 100%);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.1);
    z-index: 3;
    overflow: hidden;
}

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

.offer-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #e31479;
    color: white;
    padding: 5px 30px;
    font-size: 14px;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    width: 120px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.offer-content h3 {
    color: #333;
    font-size: 1.8rem;
    margin: 0 0 15px 0;
    text-align: center;
    color: #e31479;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.offer-content h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #ffc107;
}

.offer-image {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border: 10px solid #fff;
    transform: rotate(-5deg) translateY(0);
    transition: all 0.3s ease;
    margin-left: 50px;
    margin-top: -20px;
}

.offer-image:hover {
    transform: rotate(-2deg) translateY(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

.offer-tag {
    position: absolute;
    top: 20px;
    right: -10px;
    background: #e31479;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: rotate(10deg);
    z-index: 2;
}

.offer-details {
    text-align: center;
    padding: 0 10px;
}

.price-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-left: 10px;
    white-space: nowrap;
}

.discounted-price {
    color: #e31479;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.offer-text {
    color: #666;
    font-size: 0.9rem;
    margin: 10px 0;
}

.btn-order {
    display: block;
    background: #e31479;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin: 20px auto 0;
    width: 80%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}

.btn-order:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(227, 20, 121, 0.4);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content {
        width: 55%;
    }
    
    .festival-offer {
        width: 40%;
    }
}

@media (max-width: 1200px) {
    .festival-offer {
        width: 300px;
        margin: 0 auto;
    }
    
    .container.hero-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .festival-offer {
        width: 100%;
        max-width: 320px;
    }
    
    .hero {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

.nav-menu > li:hover > a::after,
.nav-menu > li.active > a::after {
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: var(--white);
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 1000;
}

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

.dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
    padding-left: 25px;
}

.cart-icon {
    position: relative;
    margin-left: 20px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--white);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: var(--dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Products Section */
.products-section.section-padding {
    padding-top: 1px !important; /* Reduced from default section padding */
}

/* Category Sections */
.category-section {
    padding: 10px 0 20px; /* Reduced top padding from 80px to 40px */
    position: relative;
    scroll-margin-top: 60px; /* Reduced scroll margin */
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Highlight effect for active category */
.category-highlight {
    animation: highlight-fade 1s ease-out;
}

@keyframes highlight-fade {
    0% { background-color: rgba(231, 76, 60, 0.05); }
    100% { background-color: transparent; }
}

/* Add padding to the first category section */
.category-section:first-child {
    padding-top: 30px; /* Reduced from 40px */
}

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

.category-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-img {
    height: 200px;
    overflow: hidden;
}

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

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

.category-content {
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Subcategory Tabs */
.section-header .subcategory-tabs {
    margin: 20px 0 30px;
    width: 100%;
}

.subcategory-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.subcategory-nav li {
    margin: 0 5px 10px;
    padding: 8px 20px;
    background: #f5f5f5;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.subcategory-nav li:hover {
    background: #f0f0f0;
    color: #333;
}

.subcategory-nav li.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Product Filters and Tabs */
.category-tabs {
    margin-top: 30px;
    padding-top: 30px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 10;
    background: white;
    position: sticky;
    top: 0;
}

.tab-nav {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 5px;
}

.tab-nav li {
    margin: 0 5px 10px 0;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-color);
    background: var(--light-bg);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.tab-nav li:hover,
.tab-nav li.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 5px;
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-group {
    display: flex;
    align-items: center;
    margin: 10px 0;
    position: relative;
}

.filter-group label {
    margin-right: 10px;
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
}

.filter-select {
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

/* Search Box */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 250px;
}

.search-box input[type="text"] {
    padding: 10px 15px 10px 40px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    width: 100%;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.search-box input[type="text"]::placeholder {
    color: #999;
}

.search-box button {
    position: absolute;
    left: 12px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.search-box button:hover {
    color: var(--primary-color);
}

.search-box input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    background-color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-group {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .tab-nav {
        justify-content: center;
    }
    
    .tab-nav li {
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Featured Products */
.featured-products {
    padding: 1px 0;
    background: transparent;
}

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

.view-all-container {
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
    width: 100%;
}

.view-all-container .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 250px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.view-all-container .btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(227, 20, 121, 0.3);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .view-all-container {
        margin: 30px 0 15px;
    }
    
    .view-all-container .btn-outline {
        padding: 10px 30px;
        font-size: 14px;
        min-width: 200px;
    }
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: float 6s ease-in-out infinite;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-img {
    position: relative;
    overflow: hidden;
    height: 160px;
    padding-left: 7%;
    padding-top: 3%;
    border-radius: 12px;
}

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

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

.product-info {
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: visible;
}

.product-category {
    font-size: 0.65rem;
    color: #e31479;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.product-title {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-color);
    flex: 1;
    height: auto;
    min-height: 2.6em;
    display: flex;
    /* align-items: center;
    justify-content: center;
    text-align: center; */
    line-height: 1.3;
    padding: 0 5px;
    overflow: visible;
    white-space: normal;
    text-overflow: unset;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.product-price .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e31479;
}

.product-price .weight {
    font-size: 0.8rem;
    color: #777;
}

.product-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.buy-now {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #e31479;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
}

.buy-now:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-content {
    margin-bottom: 5px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.product-title {
    font-size: 0.9rem;
    margin: 0;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10%;
}

.product-price-container {
    order: 2;
    margin-top: 5px;
}

.controls-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.product-price {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 0 5px 0;
    display: block;
}

.weight-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 4px 0;
    justify-content: flex-start;
}

.weight-option {
    padding: 2px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #f8f8f8;
    text-align: center;
    white-space: nowrap;
}

.weight-option:hover {
    background: #f0f0f0;
}

.weight-option.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 3px;
    margin: 0;
    flex-shrink: 0;
}

.quantity-btn {
    width: 22px;
    height: 22px;
    border: 1px solid #e0e0e0;
    background: #f8f8f8;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border-radius: 4px;
    padding: 0;
}

.quantity-btn:hover {
    background: #eee;
}

.quantity-input {
    width: 30px;
    height: 22px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 12px;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
    padding: 0;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.product-total {
    font-weight: 750;
    margin: 2px 10px 8px 0;
    color: var(--primary-color);
    font-size: 0.75rem;
    white-space: nowrap;
    text-align: left;
    padding: 0;
}

.product-rating {
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

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

.about-image {
    order: -1; /* This will move the image to the top */
    margin-bottom: 20px;
}

.about-text {
    width: 100%;
}

.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--dark);
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1);
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.about-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 12%;
    min-height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

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

.experience {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px 30px;
    border-top-left-radius: 15px;
    text-align: center;
    box-shadow: -5px -5px 20px rgba(0,0,0,0.1);
}

.experience h3 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
    line-height: 1;
}

.experience p {
    margin: 5px 0 0;
    font-size: 1rem;
    opacity: 0.9;
    letter-spacing: 1px;
}

/* Branches Section */
.branches-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

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

.branch-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.branch-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e31479, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 24px;
}

.branch-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.branch-address {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.branch-address p {
    margin: 5px 0;
}

.branch-address a {
    color: #e31479;
    text-decoration: none;
    transition: color 0.3s ease;
}

.branch-address a:hover {
    color: #b30e5c;
}

.branch-address i {
    margin-right: 8px;
    color: #e31479;
}

.btn-outline {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid #e31479;
    color: #e31479;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #e31479;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive Branches */
@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .branch-card {
        padding: 25px 20px;
    }
}

/* Master Chefs Section */
.master-chefs-section {
    background: transparent;
}

.master-chefs-section .section-header {
text-align: center;
margin: 0 auto 50px;
max-width: 800px;
padding: 0 20px;
}

.master-chefs-section .section-subtitle {
color: #e31479;
font-size: 1.1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
display: block;
margin-bottom: 10px;
}

.master-chefs-section .section-title {
font-size: 2.5rem;
color: #222;
margin-bottom: 15px;
position: relative;
display: inline-block;
}

.master-chefs-section .section-title:after {
content: '';
position: absolute;
left: 50%;
bottom: -10px;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: #e31479;
}

.master-chefs-section .section-description {
color: #666;
font-size: 1.1rem;
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
}

/* Chefs Grid */
.chefs-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
margin: 50px auto 0;
max-width: 1200px;
padding: 0 20px;
width: 100%;
box-sizing: border-box;
justify-items: center;
}

/* Chef Card */
.chef-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
position: relative;
margin: 0 auto;
max-width: 350px;
width: 100%;
border: 1px solid #f0f0f0;
}

.chef-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
border-color: rgba(231, 76, 60, 0.2);
}

.chef-img {
position: relative;
overflow: hidden;
height: 350px;
}

.chef-img img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

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

.chef-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(231, 76, 60, 0.9);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: all 0.3s ease;
}

.chef-card:hover .chef-overlay {
opacity: 1;
}

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

.social-icon {
width: 40px;
height: 40px;
background: #fff;
color: #e31479;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
transition: all 0.3s ease;
text-decoration: none;
}

.social-icon:hover {
background: #222;
color: #fff;
transform: translateY(-3px);
}

.chef-info {
padding: 25px;
text-align: center;
position: relative;
background: #fff;
}

.chef-info h3 {
font-size: 1.5rem;
margin-bottom: 5px;
color: #222;
}

.chef-role {
display: block;
color: #e31479;
font-weight: 600;
margin-bottom: 15px;
font-size: 1rem;
text-transform: uppercase;
letter-spacing: 1px;
}

.chef-info p {
color: #666;
font-size: 0.95rem;
line-height: 1.6;
margin-bottom: 20px;
}

.chef-signature {
margin-top: 15px;
padding-top: 15px;
border-top: 1px dashed #eee;
}

.chef-signature img {
height: 40px;
width: auto;
opacity: 0.7;
}

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

@media (max-width: 768px) {
.master-chefs-section .section-title {
font-size: 2rem;
}
    
.chefs-grid {
grid-template-columns: 1fr;
max-width: 500px;
margin: 0 auto;
}
    
.chef-img {
height: 400px;
}
}

/* Testimonials Section */
.testimonials-section {
padding: 100px 0;
background: #fff;
position: relative;
overflow: hidden;
}

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

.testimonial-card {
background: #fff;
border-radius: 12px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
border: 1px solid #f0f0f0;
display: flex;
flex-direction: column;
height: 100%;
}

.testimonial-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
border-color: rgba(231, 76, 60, 0.2);
}

.testimonial-content {
flex: 1;
position: relative;
padding: 0 0 20px 0;
margin-bottom: 20px;
border-bottom: 1px solid #f0f0f0;
}

.quote-icon {
font-size: 2.5rem;
color: rgba(231, 76, 60, 0.1);
margin-bottom: 20px;
line-height: 1;
}

.testimonial-text {
font-size: 1rem;
line-height: 1.7;
color: #555;
margin-bottom: 20px;
font-style: italic;
}

.testimonial-rating {
color: #ffd1dc;
font-size: 0.9rem;
margin-bottom: 15px;
}

.testimonial-rating i {
margin-right: 3px;
}

.testimonial-author {
display: flex;
align-items: center;
}

.testimonial-author img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
margin-right: 15px;
border: 3px solid #fff;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-info h4 {
margin: 0;
font-size: 1.1rem;
color: #333;
font-weight: 600;
}

.author-info p {
margin: 3px 0 0;
font-size: 0.9rem;
color: #777;
}

/* Responsive Styles */
@media (max-width: 768px) {
.testimonials-grid {
grid-template-columns: 1fr;
gap: 25px;
}
    
.testimonial-card {
padding: 25px 20px;
}
    
.testimonial-text {
font-size: 0.95rem;
}
    
.quote-icon {
font-size: 2rem;
margin-bottom: 15px;
}
}

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

.testimonial-card {
background: white;
border-radius: 15px;
padding: 40px 30px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
position: relative;
overflow: visible;
text-align: center;
border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
content: '\201C';
position: absolute;
top: 20px;
left: 20px;
font-size: 80px;
color: #f0f0f0;
font-family: Georgia, serif;
line-height: 1;
z-index: 0;
}

.testimonial-content {
position: relative;
z-index: 1;
}

.testimonial-text {
font-size: 1rem;
color: #555;
line-height: 1.8;
margin-bottom: 25px;
position: relative;
font-style: italic;
min-height: 120px;
}

.testimonial-author {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 20px;
}

.author-img {
width: 80px;
height: 80px;
border-radius: 50%;
overflow: hidden;
margin: 0 auto 15px;
border: 3px solid white;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.author-info h4 {
font-size: 1.1rem;
margin: 10px 0 5px;
color: #333;
font-weight: 600;
}

.author-info span {
font-size: 0.85rem;
color: #e31479;
display: block;
font-weight: 500;
    display: block;
    font-weight: 500;
}

/* Animation */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.2s ease-out; /* Reduced from 0.6s to 0.3s */
}

.testimonial-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        min-height: auto;
        margin-bottom: 20px;
    }
}

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

/* Faster animations for testimonials */
.testimonial-card {
    animation-duration: 0.5s !important; /* Faster animation duration */
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 70px;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-top .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-widget p {
    margin-bottom: 20px;
    color: #bbb;
}

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

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #bbb;
    display: block;
    transition: var(--transition);
    padding: 5px 0;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    margin-left: 10px;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 0.5px;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
    font-size: 14px;
}

.payment-methods {
    margin-top: 15px;
}

.payment-methods i {
    font-size: 30px;
    margin: 0 5px;
    color: #bbb;
    transition: var(--transition);
}

.payment-methods i:hover {
    color: var(--primary-color);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 120px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 120px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        transition: var(--transition);
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
        width: 100%;
    }
    
    .nav-menu li a {
        padding: 10px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        width: 100%;
        box-shadow: none;
        transform: none;
        display: none;
        padding-left: 20px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero {
        margin-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-top .container {
        grid-template-columns: 1fr;
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #4bb543;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    max-width: 350px;
    display: flex;
    align-items: center;
}

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

.toast-message {
    font-size: 14px;
    line-height: 1.4;
}

.toast.error {
    background: #e31479;
}

.toast.warning {
    background: #f39c12;
}

.toast.info {
    background: #3498db;
}
