/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --primary-color: #D4A373;
    --secondary-color: #CCD5AE;
    --accent-color: #E9EDC9;
    --dark-color: #5C4033;
    --light-color: #FEFAE0;
    --text-color: #333;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #D4A373 0%, #5C4033 100%);
    --gradient-2: linear-gradient(135deg, #CCD5AE 0%, #E9EDC9 100%);
    --shadow: 0 10px 40px rgba(92, 64, 51, 0.15);
    --shadow-light: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-color);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    width: 80px;
    height: 80px;
    border: 4px solid var(--accent-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5C4033 0%, #D4A373 100%);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary-custom {
    background: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    background: var(--dark-color);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(254, 250, 224, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: none;
}

.navbar-custom.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-light);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color) !important;
}

.navbar-brand span {
    color: var(--primary-color);
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-icons a {
    color: var(--dark-color);
    font-size: 1.3rem;
    position: relative;
    transition: var(--transition);
}

.navbar-icons a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(254, 250, 224, 0.9) 0%, rgba(233, 237, 201, 0.9) 100%),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1920') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--secondary-color);
    z-index: -1;
    border-radius: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-badge {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: badgeFloat 3s ease-in-out infinite;
}

.hero-badge.badge-1 {
    top: 20%;
    left: -10%;
}

.hero-badge.badge-2 {
    bottom: 20%;
    right: -5%;
    animation-delay: 1s;
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-badge i {
    font-size: 2rem;
    color: var(--primary-color);
}

.hero-badge h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.hero-badge p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.feature-card {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    margin: 0;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: inline-block;
    background: var(--gradient-2);
    color: var(--dark-color);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title h2 span {
    background: none;
    padding: 0;
    color: var(--primary-color);
    font-size: inherit;
    letter-spacing: normal;
    text-transform: none;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 100px 0;
    background: var(--light-color);
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-badge.sale {
    background: #e74c3c;
}

.product-badge.new {
    background: #27ae60;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-color);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.product-actions a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-content {
    padding: 25px;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 10px 0;
    transition: var(--transition);
}

.product-title:hover {
    color: var(--primary-color);
}

.product-rating {
    color: #f1c40f;
    margin-bottom: 10px;
}

.product-rating span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 5px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.product-price .current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
}

.product-price .old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.product-card .btn-primary-custom {
    width: 100%;
    padding: 12px;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
    padding: 100px 0;
    background: var(--white);
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(92, 64, 51, 0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
}

.category-overlay h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.category-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.category-overlay a {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.category-overlay a:hover {
    color: var(--white);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: var(--light-color);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.about-experience h3 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
}

.about-experience p {
    margin: 0;
    font-weight: 500;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--primary-color);
}

.about-content p {
    color: #666;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-feature i {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 600;
    color: var(--dark-color);
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    padding: 100px 0;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
}

.why-section .section-title span {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.why-section .section-title h2 {
    color: var(--white);
}

.why-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.why-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.why-card h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
}

.testimonial-card::before {
    content: '"';
    font-size: 8rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 30px;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.testimonial-author span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #f1c40f;
    margin-top: 5px;
}

/* ===== RECIPES SECTION ===== */
.recipes-section {
    padding: 100px 0;
    background: var(--light-color);
}

.recipe-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.recipe-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.recipe-time {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
}

.recipe-time i {
    color: var(--primary-color);
    margin-right: 5px;
}

.recipe-content {
    padding: 25px;
}

.recipe-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.recipe-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-card {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-meta span {
    color: #666;
    font-size: 0.85rem;
}

.blog-meta span i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.blog-content h4:hover {
    color: var(--primary-color);
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--dark-color);
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    padding: 80px 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background: var(--dark-color);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--light-color);
    color: var(--dark-color);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding-top: 80px;
}

.footer-widget h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links{
    padding-left: 0 !important;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 60px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.9) 0%, rgba(212, 163, 115, 0.9) 100%),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1920') center/cover;
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.breadcrumb {
    background: none;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
    color: var(--white);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ===== SHOP PAGE ===== */
.shop-section {
    padding: 80px 0;
}

.shop-sidebar {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-light);
}

.sidebar-widget {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: #666;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.category-list span {
    background: var(--accent-color);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.price-range {
    padding: 10px 0;
}

.price-inputs {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.price-inputs input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
}

.form-check {
    margin-bottom: 12px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
}

.shop-toolbar p {
    margin: 0;
    color: #666;
}

.shop-toolbar select {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-section {
    padding: 80px 0;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thumbnail-images {
    display: flex;
    gap: 15px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    border-color: var(--primary-color);
}

.product-info h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.product-info .product-rating {
    margin-bottom: 20px;
}

.product-info .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.product-info .price .old-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}

.product-info .description {
    color: #666;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 20px;
}

.option-group label {
    font-weight: 600;
    color: var(--dark-color);
    display: block;
    margin-bottom: 10px;
}

.weight-options {
    display: flex;
    gap: 10px;
}

.weight-options .option {
    padding: 10px 25px;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.weight-options .option:hover,
.weight-options .option.active {
    border-color: var(--primary-color);
    background: var(--accent-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-selector button {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    background: var(--white);
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.quantity-selector input {
    width: 60px;
    height: 45px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.product-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-buttons .btn {
    flex: 1;
    padding: 15px;
    font-size: 1rem;
}

.product-meta {
    background: var(--light-color);
    padding: 25px;
    border-radius: 15px;
}

.product-meta p {
    margin-bottom: 10px;
    color: #666;
}

.product-meta p strong {
    color: var(--dark-color);
}

.product-tabs {
    margin-top: 60px;
}

.nav-tabs {
    border-bottom: 2px solid #eee;
}

.nav-tabs .nav-link {
    color: #666;
    font-weight: 600;
    padding: 15px 30px;
    border: none;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: none;
    border-color: var(--primary-color);
}

.tab-content {
    padding: 30px 0;
}

.nutrition-table {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
}

.nutrition-table th {
    background: var(--dark-color);
    color: var(--white);
    padding: 15px;
}

.nutrition-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

/* ===== CART PAGE ===== */
.cart-section {
    padding: 80px 0;
}

.cart-table {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.cart-table th {
    background: var(--dark-color);
    color: var(--white);
    padding: 20px;
    font-weight: 600;
}

.cart-table td {
    padding: 20px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-product h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.cart-product span {
    color: #666;
    font-size: 0.9rem;
}

.remove-item {
    color: #e74c3c;
    cursor: pointer;
    transition: var(--transition);
}

.remove-item:hover {
    transform: scale(1.2);
}

.cart-summary {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-light);
}

.cart-summary h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #666;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    padding-top: 20px;
    border-top: 2px solid #eee;
    margin-top: 20px;
}

.coupon-form {
    display: flex;
    gap: 10px;
    margin: 25px 0;
}

.coupon-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
}

.coupon-form button {
    padding: 12px 25px;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.coupon-form button:hover {
    background: var(--primary-color);
}

/* ===== CHECKOUT PAGE ===== */
.checkout-section {
    padding: 80px 0;
}

.checkout-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.checkout-form h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
}

.payment-methods {
    margin-top: 30px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover,
.payment-option.active {
    border-color: var(--primary-color);
    background: var(--accent-color);
}

.payment-option input {
    width: auto;
}

.payment-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.order-summary {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 100px;
}

.order-summary h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
}

.order-item-info {
    flex: 1;
}

.order-item-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.order-item-info span {
    color: #666;
    font-size: 0.9rem;
}

.order-item-price {
    font-weight: 600;
    color: var(--dark-color);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* 
/* ===== AUTH PAGES ===== */
.auth-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.auth-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow);
    margin: 0 auto;
}

.auth-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 10px;
}

.auth-card p {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
} */

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-login button {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-login button:hover {
    background: var(--light-color);
}

.divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
}

.divider span {
    background: var(--white);
    padding: 0 20px;
    position: relative;
    color: #666;
}

.auth-links {
    text-align: center;
    margin-top: 25px;
}

.auth-links a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== MY ACCOUNT PAGE ===== */
.account-section {
    padding: 80px 0;
}

.account-sidebar {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-light);
}

.account-user {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.account-user img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.account-user h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.account-user span {
    color: #666;
    font-size: 0.9rem;
}

.account-menu li {
    margin-bottom: 5px;
}

.account-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #666;
    border-radius: 10px;
    transition: var(--transition);
}

.account-menu a:hover,
.account-menu a.active {
    background: var(--accent-color);
    color: var(--dark-color);
}

.account-menu a i {
    width: 20px;
}

.account-content {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-light);
}

.account-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.order-card {
    background: var(--light-color);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.order-card-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
}

.order-status {
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.order-status.delivered {
    background: #d4edda;
    color: #155724;
}

.order-status.processing {
    background: #fff3cd;
    color: #856404;
}

.order-status.shipped {
    background: #cce5ff;
    color: #004085;
}

/* ===== FAQ PAGE ===== */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    background: var(--white);
    border: none;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-button {
    background: var(--white);
    font-weight: 600;
    color: var(--dark-color);
    padding: 20px 25px;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-color);
    color: var(--dark-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    padding: 20px 25px;
    color: #666;
}

/* ===== TRACK ORDER PAGE ===== */
.track-order-section {
    padding: 80px 0;
}

.track-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
    max-width: 600px;
    margin: 0 auto;
}

.track-result {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
}

.track-timeline {
    position: relative;
    padding-left: 30px;
}

.track-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #eee;
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ddd;
    border: 3px solid #fff;
}

.timeline-item.completed::before {
    background: #27ae60;
}

.timeline-item.current::before {
    background: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(212, 163, 115, 0.3);
}

.timeline-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.timeline-item span {
    color: #666;
    font-size: 0.9rem;
}

/* ===== POLICY PAGES ===== */
.policy-section {
    padding: 80px 0;
}

.policy-content {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-light);
}

.policy-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 30px 0 15px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: #666;
    margin-bottom: 15px;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-content ul li {
    color: #666;
    margin-bottom: 10px;
    list-style: disc;
}

/* ===== RECIPE DETAIL ===== */
.recipe-detail-section {
    padding: 80px 0;
}

.recipe-hero {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
}

.recipe-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recipe-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.recipe-hero-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.recipe-meta-info {
    display: flex;
    gap: 30px;
}

.recipe-meta-info span {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.recipe-meta-info i {
    color: var(--primary-color);
}

.recipe-content-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
}

.recipe-content-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.ingredients-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ingredients-list li i {
    color: var(--primary-color);
}

.steps-list {
    counter-reset: step-counter;
}

.steps-list li {
    padding: 20px 0 20px 60px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.steps-list li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: 700;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.btn-scroll-top {
    background: var(--dark-color);
    opacity: 0;
    visibility: hidden;
}

.btn-scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.btn-whatsapp-float {
    background: #25D366;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero-badge {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .about-experience {
        position: static;
        margin-top: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .product-buttons {
        flex-direction: column;
    }

    .cart-table {
        font-size: 0.9rem;
    }

    .cart-product img {
        width: 60px;
        height: 60px;
    }

    .auth-card {
        padding: 30px;
    }

    .policy-content {
        padding: 30px;
    }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== EMPTY STATES ===== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.empty-state p {
    color: #666;
    margin-bottom: 25px;
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 9999;
}

.custom-toast {
    background: var(--white);
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    transform: translateX(120%);
    transition: var(--transition);
}

.custom-toast.show {
    transform: translateX(0);
}

.custom-toast.success i {
    color: #27ae60;
}

.custom-toast.error i {
    color: #e74c3c;
}

.custom-toast i {
    font-size: 1.5rem;
}

.custom-toast p {
    margin: 0;
    color: var(--dark-color);
    font-weight: 500;
}


/* Additional Shop Page Styles */
.shop-banner {
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.9) 0%, rgba(212, 163, 115, 0.8) 100%),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1920') center/cover fixed;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shop-banner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--light-color), transparent);
}

.shop-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.shop-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

.shop-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

/* Sidebar Enhancements */
.shop-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-light);
}

.sidebar-widget h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-widget h4 i {
    color: var(--primary-color);
}

/* Category List */
.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--light-color);
    border-radius: 10px;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.category-list li a:hover,
.category-list li a.active {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateX(5px);
}

.category-list li a span {
    background: var(--white);
    color: var(--dark-color);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-list li a:hover span,
.category-list li a.active span {
    background: var(--dark-color);
    color: var(--white);
}

/* Price Range Slider */
.price-slider {
    padding: 20px 10px 10px;
}

.noUi-connect {
    background: var(--primary-color);
}

.noUi-handle {
    border-radius: 50%;
    box-shadow: var(--shadow-light);
}

.noUi-handle:before,
.noUi-handle:after {
    display: none;
}

.price-inputs {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.price-inputs input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-color);
}

.price-inputs input:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Rating Filter */
.rating-filter label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    cursor: pointer;
    transition: var(--transition);
}

.rating-filter label:hover {
    color: var(--primary-color);
}

.rating-filter .stars {
    color: #f1c40f;
}

.rating-filter .stars i.empty {
    color: #ddd;
}

/* Tags */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    padding: 8px 18px;
    background: var(--light-color);
    border-radius: 50px;
    color: var(--dark-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.tag-cloud a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Shop Toolbar */
.shop-toolbar {
    background: var(--white);
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.result-count {
    color: #666;
    font-size: 0.95rem;
}

.result-count span {
    color: var(--dark-color);
    font-weight: 700;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-options button {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-color);
    background: var(--white);
    border-radius: 10px;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.view-options button:hover,
.view-options button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-select {
    padding: 10px 20px;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    background: var(--white);
    color: var(--dark-color);
    font-weight: 500;
    cursor: pointer;
    min-width: 200px;
}

.sort-select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
    display: flex;
    flex-direction: row;
}

.products-grid.list-view .product-image {
    width: 250px;
    min-width: 250px;
    height: 200px;
}

.products-grid.list-view .product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Product Card Enhancements */
.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-badge {
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-sale {
    background: #e74c3c;
    color: var(--white);
}

.badge-new {
    background: #27ae60;
    color: var(--white);
}

.badge-hot {
    background: #f39c12;
    color: var(--white);
}

.badge-organic {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-actions a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-color);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.product-actions a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.product-actions a.active {
    background: #e74c3c;
    color: var(--white);
}

.quick-view-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.product-card:hover .quick-view-btn {
    bottom: 15px;
}

.quick-view-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.product-content {
    padding: 20px;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 8px 0;
    transition: var(--transition);
    line-height: 1.4;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.product-rating .stars {
    color: #f1c40f;
    font-size: 0.85rem;
}

.product-rating .count {
    color: #666;
    font-size: 0.85rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark-color);
}

.old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.discount-percent {
    background: #e74c3c;
    color: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-weight {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.weight-option {
    padding: 5px 12px;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
}

.weight-option:hover,
.weight-option.active {
    border-color: var(--primary-color);
    background: var(--accent-color);
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow);
}

.add-to-cart-btn i {
    font-size: 1.1rem;
}

/* Pagination */
.shop-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
}

.shop-pagination a,
.shop-pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.shop-pagination a {
    background: var(--white);
    color: var(--dark-color);
    box-shadow: var(--shadow-light);
}

.shop-pagination a:hover,
.shop-pagination a.active {
    background: var(--gradient-1);
    color: var(--white);
}

.shop-pagination .dots {
    color: #666;
}

/* Mobile Filter Button */
.mobile-filter-btn {
    display: none;
    width: 100%;
    padding: 15px;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    margin-bottom: 20px;
    cursor: pointer;
}

.mobile-filter-btn i {
    margin-right: 10px;
}

/* Sidebar Overlay for Mobile */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.sidebar-overlay.active {
    display: block;
}

/* Empty State */
.no-products {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 20px;
}

.no-products i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.no-products h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.no-products p {
    color: #666;
    margin-bottom: 20px;
}

/* Special Offer Banner */
.special-offer-banner {
    background: var(--gradient-1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: var(--white);
    margin-bottom: 25px;
}

.special-offer-banner h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.special-offer-banner p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.special-offer-banner .code {
    background: var(--white);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
}

/* Responsive */
@media (max-width: 1199px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .mobile-filter-btn {
        display: block;
    }

    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        background: var(--light-color);
        z-index: 999;
        padding: 20px;
        overflow-y: auto;
        transition: var(--transition);
    }

    .shop-sidebar.active {
        left: 0;
    }

    .close-sidebar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ddd;
    }

    .close-sidebar h3 {
        margin: 0;
        font-size: 1.3rem;
        color: var(--dark-color);
    }

    .close-sidebar button {
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--dark-color);
    }

    .products-grid.list-view .product-card {
        flex-direction: column;
    }

    .products-grid.list-view .product-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 767px) {
    .shop-banner h1 {
        font-size: 2.5rem;
    }

    .shop-stats {
        flex-direction: column;
        gap: 20px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .shop-toolbar {
        flex-direction: column;
        text-align: center;
    }

    .toolbar-left,
    .toolbar-right {
        width: 100%;
        justify-content: center;
    }
}

/* Product Detail Page Styles */
.product-detail-section {
    padding: 120px 0 80px;
    background: var(--light-color);
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    box-shadow: var(--shadow-light);
}

.main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.zoom-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.thumbnail-images {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
}

.thumbnail-images img:hover,
.thumbnail-images img.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.product-info {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.product-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.badge-item {
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-organic {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.badge-bestseller {
    background: #f39c12;
    color: var(--white);
}

.product-info h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-info .hindi-name {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.product-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-rating .stars {
    color: #f1c40f;
}

.product-rating .count {
    color: #666;
    font-size: 0.95rem;
}

.product-sku {
    color: #666;
    font-size: 0.9rem;
}

.product-stock {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #27ae60;
    font-weight: 600;
}

.product-stock.out-of-stock {
    color: #e74c3c;
}

.price-box {
    background: var(--light-color);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.price-box .current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
}

.price-box .old-price {
    font-size: 1.3rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}

.price-box .discount {
    background: #e74c3c;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 15px;
}

.price-box .tax-info {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

.product-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.product-options {
    margin-bottom: 25px;
}

.option-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-title span {
    color: var(--primary-color);
    font-weight: 400;
}

.weight-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.weight-option {
    padding: 12px 25px;
    border: 2px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-width: 100px;
}

.weight-option:hover,
.weight-option.active {
    border-color: var(--primary-color);
    background: var(--accent-color);
}

.weight-option .weight {
    font-weight: 700;
    color: var(--dark-color);
    display: block;
}

.weight-option .price {
    font-size: 0.85rem;
    color: var(--primary-color);
}

.quantity-cart-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
}

.quantity-selector button {
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-color);
}

.quantity-selector button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-selector input {
    width: 60px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    background: transparent;
}

.add-to-cart-btn {
    flex: 1;
    padding: 15px 30px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.add-to-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.buy-now-btn {
    width: 100%;
    padding: 15px;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
}

.buy-now-btn:hover {
    background: var(--primary-color);
}

.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.action-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.action-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.action-btn.active {
    background: #ffe6e6;
    border-color: #e74c3c;
    color: #e74c3c;
}

.delivery-info {
    background: var(--light-color);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.delivery-info h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-info h5 i {
    color: var(--primary-color);
}

.pincode-check {
    display: flex;
    gap: 10px;
}

.pincode-check input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    outline: none;
}

.pincode-check input:focus {
    border-color: var(--primary-color);
}

.pincode-check button {
    padding: 12px 25px;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pincode-check button:hover {
    background: var(--primary-color);
}

.delivery-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.delivery-feature i {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.delivery-feature span {
    font-size: 0.9rem;
    color: #666;
}

.product-highlights {
    background: var(--light-color);
    border-radius: 15px;
    padding: 20px;
}

.product-highlights h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.highlight-list li:last-child {
    border-bottom: none;
}

.highlight-list li i {
    color: #27ae60;
}

/* Product Tabs */
.product-tabs-section {
    padding: 60px 0;
    background: var(--white);
}

.product-tabs {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.nav-tabs {
    border-bottom: 2px solid #eee;
    background: var(--light-color);
    padding: 0;
}

.nav-tabs .nav-link {
    border: none;
    border-radius: 0;
    padding: 20px 30px;
    font-weight: 600;
    color: #666;
    transition: var(--transition);
}

.nav-tabs .nav-link:hover {
    color: var(--primary-color);
    background: transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    background: var(--white);
    border-bottom: 3px solid var(--primary-color);
}

.tab-content {
    padding: 40px;
}

.tab-pane h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.tab-pane p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 12px;
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.benefit-item span {
    font-weight: 600;
    color: var(--dark-color);
}

/* Nutrition Table */
.nutrition-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
}

.nutrition-table th {
    background: var(--dark-color);
    color: var(--white);
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}

.nutrition-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.nutrition-table tr:nth-child(even) {
    background: var(--light-color);
}

.nutrition-table tr:last-child td {
    border-bottom: none;
}

/* Reviews Section */
.reviews-summary {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.rating-overview {
    text-align: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: 15px;
    min-width: 200px;
}

.rating-overview .big-rating {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1;
}

.rating-overview .stars {
    color: #f1c40f;
    font-size: 1.2rem;
    margin: 10px 0;
}

.rating-overview .total-reviews {
    color: #666;
}

.rating-bars {
    flex: 1;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.rating-bar .stars {
    min-width: 100px;
    color: #f1c40f;
}

.rating-bar .bar {
    flex: 1;
    height: 10px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar .bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 10px;
}

.rating-bar .count {
    min-width: 40px;
    color: #666;
    font-size: 0.9rem;
}

.review-card {
    padding: 25px;
    background: var(--light-color);
    border-radius: 15px;
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.reviewer span {
    color: #666;
    font-size: 0.85rem;
}

.review-rating {
    color: #f1c40f;
}

.review-content p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.review-images {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.review-images img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
}

.write-review-btn {
    padding: 15px 30px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.write-review-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background: var(--light-color);
}

/* Responsive */
@media (max-width: 991px) {
    .product-gallery {
        position: static;
        margin-bottom: 30px;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .reviews-summary {
        flex-direction: column;
    }

    .delivery-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .product-info {
        padding: 25px;
    }

    .product-info h1 {
        font-size: 1.5rem;
    }

    .price-box .current-price {
        font-size: 2rem;
    }

    .quantity-cart-row {
        flex-direction: column;
    }

    .action-buttons {
        flex-direction: column;
    }

    .nav-tabs .nav-link {
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    .tab-content {
        padding: 25px;
    }
}


.cart-section {
    padding: 120px 0 80px;
    background: var(--light-color);
    min-height: 80vh;
}

.cart-header {
    background: var(--gradient-1);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.cart-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cart-header p {
    opacity: 0.9;
    margin: 0;
}

.cart-steps {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.cart-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
}

.cart-step.active {
    background: var(--white);
    color: var(--dark-color);
}

.cart-step .step-num {
    width: 25px;
    height: 25px;
    background: var(--dark-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.cart-step.active .step-num {
    background: var(--primary-color);
}

.cart-table-container {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.cart-table {
    width: 100%;
    margin: 0;
}

.cart-table thead {
    background: var(--dark-color);
    color: var(--white);
}

.cart-table th {
    padding: 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.cart-table td {
    padding: 25px 20px;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.cart-table tbody tr:last-child td {
    border-bottom: none;
}

.cart-table tbody tr:hover {
    background: var(--light-color);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-product img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 15px;
}

.cart-product-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.cart-product-info span {
    color: #666;
    font-size: 0.9rem;
}

.cart-product-info .product-category {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.cart-price {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.1rem;
}

.cart-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
}

.quantity-control button {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-control button:hover {
    background: var(--primary-color);
    color: var(--white);
}

.quantity-control input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 700;
    background: transparent;
}

.cart-subtotal {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.remove-item {
    width: 40px;
    height: 40px;
    border: none;
    background: #fee;
    color: #e74c3c;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.remove-item:hover {
    background: #e74c3c;
    color: var(--white);
}

.cart-actions {
    padding: 25px;
    background: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.coupon-form {
    display: flex;
    gap: 10px;
}

.coupon-form input {
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    width: 200px;
    font-weight: 500;
}

.coupon-form input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.coupon-form button {
    padding: 12px 25px;
    background: var(--dark-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.coupon-form button:hover {
    background: var(--primary-color);
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 100px;
}

.cart-summary h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: #666;
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--dark-color);
}

.summary-row.discount {
    color: #27ae60;
}

.summary-row.discount span:last-child {
    color: #27ae60;
}

.summary-row.total {
    border-top: 2px solid var(--dark-color);
    margin-top: 15px;
    padding-top: 20px;
    font-size: 1.3rem;
}

.summary-row.total span:last-child {
    font-weight: 800;
    color: var(--primary-color);
}

.free-shipping-progress {
    background: var(--light-color);
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.progress-bar-container {
    height: 8px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-1);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.free-shipping-progress p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.free-shipping-progress .amount {
    color: var(--primary-color);
    font-weight: 700;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.checkout-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.continue-shopping {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.continue-shopping:hover {
    background: var(--dark-color);
    color: var(--white);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.payment-methods img {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition);
}

.payment-methods img:hover {
    opacity: 1;
}

.secure-checkout {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.secure-checkout i {
    color: #27ae60;
    margin-right: 5px;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 20px;
}

.empty-cart-icon {
    width: 150px;
    height: 150px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.empty-cart-icon i {
    font-size: 4rem;
    color: #ddd;
}

.empty-cart h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.empty-cart p {
    color: #666;
    margin-bottom: 30px;
}

/* Suggested Products */
.suggested-products {
    margin-top: 60px;
}

.suggested-products h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 991px) {
    .cart-summary {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .cart-header h1 {
        font-size: 1.8rem;
    }

    .cart-steps {
        flex-direction: column;
        align-items: center;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #eee;
        border-radius: 15px;
        overflow: hidden;
    }

    .cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }

    .cart-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--dark-color);
    }

    .cart-product {
        flex-direction: column;
        text-align: center;
    }

    .cart-actions {
        flex-direction: column;
    }

    .coupon-form {
        width: 100%;
    }

    .coupon-form input {
        flex: 1;
    }
}

.checkout-section {
    padding: 120px 0 80px;
    background: var(--light-color);
    min-height: 100vh;
}

.checkout-header {
    background: var(--gradient-1);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.checkout-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-weight: 600;
}

.checkout-step.active {
    background: var(--white);
    color: var(--dark-color);
}

.checkout-step.completed {
    background: #27ae60;
}

.checkout-step .step-num {
    width: 25px;
    height: 25px;
    background: var(--dark-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.checkout-step.active .step-num {
    background: var(--primary-color);
}

.checkout-step.completed .step-num {
    background: var(--white);
    color: #27ae60;
}

.checkout-form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.form-section {
    margin-bottom: 40px;
}

.form-section:last-child {
    margin-bottom: 0;
}

.form-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section-title i {
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: block;
}

.form-group label .required {
    color: #e74c3c;
}

.form-control {
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.form-control.is-invalid {
    border-color: #e74c3c;
}

.form-select {
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
}

.saved-addresses {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.address-card {
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.address-card:hover {
    border-color: var(--primary-color);
}

.address-card.selected {
    border-color: var(--primary-color);
    background: var(--accent-color);
}

.address-card .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
}

.address-card h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.address-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.add-new-address {
    border: 2px dashed var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    color: var(--primary-color);
}

.add-new-address i {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    gap: 15px;
}

.payment-option {
    border: 2px solid #eee;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 15px;
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option.selected {
    border-color: var(--primary-color);
    background: var(--accent-color);
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option .radio-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-option.selected .radio-custom {
    border-color: var(--primary-color);
}

.payment-option.selected .radio-custom::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
}

.payment-icon {
    width: 50px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-color);
    border-radius: 8px;
}

.payment-icon i {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.payment-icon img {
    max-height: 25px;
}

.payment-info h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

.payment-info p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

.card-details {
    display: none;
    padding: 20px;
    background: var(--light-color);
    border-radius: 15px;
    margin-top: 15px;
}

.card-details.show {
    display: block;
}

/* Order Summary */
.order-summary {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-light);
    position: sticky;
    top: 100px;
}

.order-summary h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-color);
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 12px;
}

.order-item-info {
    flex: 1;
}

.order-item-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 3px;
}

.order-item-info span {
    color: #666;
    font-size: 0.85rem;
}

.order-item-price {
    font-weight: 700;
    color: var(--dark-color);
}

.promo-code {
    margin-bottom: 20px;
}

.promo-code .input-group {
    border: 2px solid #eee;
    border-radius: 12px;
    overflow: hidden;
}

.promo-code input {
    border: none;
    padding: 12px 15px;
}

.promo-code button {
    background: var(--dark-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    font-weight: 600;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #666;
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--dark-color);
}

.summary-row.discount span:last-child {
    color: #27ae60;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 2px solid var(--dark-color);
    margin-top: 15px;
    padding-top: 15px;
}

.summary-row.total span:last-child {
    color: var(--primary-color);
    font-weight: 800;
}

.place-order-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 20px;
}

.place-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.place-order-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.terms-checkbox {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

.terms-checkbox input {
    margin-top: 3px;
}

.terms-checkbox a {
    color: var(--primary-color);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
    color: #666;
    font-size: 0.9rem;
}

.secure-badge i {
    color: #27ae60;
}

/* Order Success Modal */
.order-success-modal .modal-content {
    border: none;
    border-radius: 20px;
    text-align: center;
    padding: 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: #d4edda;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.success-icon i {
    font-size: 3rem;
    color: #27ae60;
}

.order-success-modal h3 {
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.order-success-modal p {
    color: #666;
    margin-bottom: 25px;
}

.order-id {
    background: var(--light-color);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.order-id span {
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .order-summary {
        position: static;
        margin-top: 30px;
    }

    .saved-addresses {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .checkout-form-container {
        padding: 25px;
    }

    .checkout-header h1 {
        font-size: 1.8rem;
    }

    .checkout-steps {
        flex-direction: column;
        align-items: center;
    }
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.9) 0%, rgba(212, 163, 115, 0.8) 100%),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1920') center/cover fixed;
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-story {
    padding: 100px 0;
    background: var(--white);
}

.story-image {
    position: relative;
}

.story-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.story-image .experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-1);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.story-image .experience-badge h3 {
    font-size: 3rem;
    font-weight: 800;
    margin: 0;
}

.story-image .experience-badge p {
    margin: 0;
    font-size: 1rem;
}

.story-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 25px;
}

.story-content h2 span {
    color: var(--primary-color);
}

.story-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-feature i {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.story-feature span {
    font-weight: 600;
    color: var(--dark-color);
}

/* Mission & Vision */
.mission-section {
    padding: 100px 0;
    background: var(--light-color);
}

.mission-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.mission-card .icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.mission-card .icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.mission-card p {
    color: #666;
    line-height: 1.8;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--white);
}

.process-timeline {
    position: relative;
    padding: 30px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--accent-color);
}

.process-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-item:nth-child(even) {
    flex-direction: row-reverse;
}

.process-item:nth-child(even) .process-content {
    text-align: right;
    padding-right: 60px;
    padding-left: 0;
}

.process-content {
    flex: 1;
    padding-left: 60px;
}

.process-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.process-content p {
    color: #666;
    margin: 0;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.process-image {
    flex: 1;
}

.process-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--light-color);
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-card-content {
    padding: 25px;
}

.team-card-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-card-content span {
    color: var(--primary-color);
    font-weight: 600;
}

.team-card-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 15px 0;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--gradient-1);
    color: var(--white);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Certifications */
.certifications-section {
    padding: 80px 0;
    background: var(--white);
}

.cert-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.cert-card:hover {
    box-shadow: var(--shadow);
}

.cert-card img {
    height: 80px;
    margin-bottom: 20px;
}

.cert-card h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.cert-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .story-image .experience-badge {
        right: 10px;
        bottom: -20px;
        padding: 20px;
    }

    .story-image .experience-badge h3 {
        font-size: 2rem;
    }

    .process-timeline::before {
        left: 40px;
    }

    .process-item,
    .process-item:nth-child(even) {
        flex-direction: column;
    }

    .process-content,
    .process-item:nth-child(even) .process-content {
        text-align: center;
        padding: 20px 0;
    }

    .story-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}

.contact-hero {
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.9) 0%, rgba(212, 163, 115, 0.8) 100%),
        url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920') center/cover fixed;
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white);
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-section {
    padding: 100px 0;
    background: var(--light-color);
}

.contact-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.contact-info-card .icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card .icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 5px;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-info-card a:hover {
    color: var(--dark-color);
}

.contact-form-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-form-container {
    background: var(--light-color);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-light);
}

.contact-form-container h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.contact-form-container p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.form-select {
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: var(--white);
}

.submit-btn {
    padding: 18px 50px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
    box-shadow: var(--shadow-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Quick Contact */
.quick-contact {
    background: var(--gradient-1);
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
    height: 100%;
}

.quick-contact h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quick-contact-item i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.quick-contact-item p {
    margin: 0;
    opacity: 0.9;
}

.quick-contact-item a {
    color: var(--white);
    font-weight: 600;
}

.quick-contact-item a:hover {
    opacity: 0.8;
}

.social-links {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links .social-icons {
    display: flex;
    gap: 12px;
}

.social-links .social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links .social-icons a:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
    background: var(--light-color);
}

.accordion-item {
    background: var(--white);
    border: none;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-button {
    background: var(--white);
    font-weight: 600;
    color: var(--dark-color);
    padding: 20px 25px;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-color);
    color: var(--dark-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    padding: 20px 25px;
    color: #666;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-form-container {
        padding: 30px;
    }

    .quick-contact {
        margin-top: 30px;
    }
}


.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--accent-color) 100%);
    padding: 120px 0 80px;
}

.auth-container {
    max-width: 1000px;
    margin: 0 auto;
}

.auth-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.auth-image {
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.9) 0%, rgba(212, 163, 115, 0.9) 100%),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=800') center/cover;
    padding: 60px 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
}

.auth-image h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.auth-image p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.auth-features {
    margin-top: 40px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.auth-feature i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.auth-form-container {
    padding: 60px 50px;
}

.auth-form-container h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.auth-form-container .subtitle {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: block;
}

.form-control {
    padding: 15px 20px 15px 50px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.input-group-custom {
    position: relative;
}

.input-group-custom i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 10;
}

.password-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    z-index: 10;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-forgot a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.remember-forgot a:hover {
    color: var(--dark-color);
}

.btn-login {
    width: 100%;
    padding: 15px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
}

.divider span {
    background: var(--white);
    padding: 0 20px;
    position: relative;
    color: #999;
    font-size: 0.9rem;
}

.social-login {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.social-btn {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.social-btn.google {
    color: #db4437;
}

.social-btn.facebook {
    color: #4267B2;
}

.auth-switch {
    text-align: center;
    color: #666;
}

.auth-switch a {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 991px) {
    .auth-image {
        min-height: 400px;
        text-align: center;
    }

    .auth-form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .social-login {
        grid-template-columns: 1fr;
    }
}

/* Use same styles as login.html */
.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--accent-color) 100%);
    padding: 120px 0 80px;
}

.auth-container {
    max-width: 1000px;
    margin: 0 auto;
}

.auth-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.auth-image {
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.9) 0%, rgba(212, 163, 115, 0.9) 100%),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=800') center/cover;
    padding: 60px 40px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
}

.auth-image h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.auth-image p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.auth-features {
    margin-top: 40px;
}

.auth-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.auth-feature i {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.auth-form-container {
    padding: 60px 50px;
}

.auth-form-container h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.auth-form-container .subtitle {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    display: block;
    font-size: 0.9rem;
}

.form-control {
    padding: 12px 20px 12px 45px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 163, 115, 0.1);
}

.input-group-custom {
    position: relative;
}

.input-group-custom i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    z-index: 10;
}

.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #999;
    z-index: 10;
}

.btn-register {
    width: 100%;
    padding: 15px;
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ddd;
}

.divider span {
    background: var(--white);
    padding: 0 20px;
    position: relative;
    color: #999;
    font-size: 0.9rem;
}

.social-login {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.social-btn {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.social-btn:hover {
    border-color: var(--primary-color);
    background: var(--light-color);
}

.social-btn.google {
    color: #db4437;
}

.social-btn.facebook {
    color: #4267B2;
}

.auth-switch {
    text-align: center;
    color: #666;
}

.auth-switch a {
    color: var(--primary-color);
    font-weight: 700;
}

.terms-text {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}

.terms-text a {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .auth-image {
        min-height: 400px;
        text-align: center;
    }

    .auth-form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .social-login {
        grid-template-columns: 1fr;
    }
}


.recipes-hero {
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.9) 0%, rgba(212, 163, 115, 0.8) 100%),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1920') center/cover fixed;
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white);
}

.recipes-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.recipes-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.recipe-filters {
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    background: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.recipe-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-light);
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.recipe-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.1);
}

.recipe-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recipe-badge {
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-veg {
    background: #27ae60;
    color: var(--white);
}

.badge-easy {
    background: #3498db;
    color: var(--white);
}

.badge-quick {
    background: #f39c12;
    color: var(--white);
}

.recipe-meta {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--white);
    padding: 8px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    font-size: 0.85rem;
}

.recipe-meta i {
    color: var(--primary-color);
}

.recipe-content {
    padding: 25px;
}

.recipe-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.recipe-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 10px 0 15px;
    line-height: 1.4;
}

.recipe-title:hover {
    color: var(--primary-color);
}

.recipe-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.recipe-info {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.recipe-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.recipe-info-item i {
    color: var(--primary-color);
}

/* Featured Recipe */
.featured-recipe {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: var(--shadow);
}

.featured-recipe-content {
    padding: 50px;
}

.featured-badge {
    display: inline-block;
    background: var(--gradient-1);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.featured-recipe-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.featured-recipe-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.featured-recipe-image {
    height: 100%;
    min-height: 400px;
}

.featured-recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .featured-recipe-content {
        padding: 40px 30px;
    }

    .featured-recipe-image {
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .recipes-hero h1 {
        font-size: 2.5rem;
    }

    .recipe-filters {
        justify-content: flex-start;
    }
}


.faq-hero {
    background: linear-gradient(135deg, rgba(92, 64, 51, 0.9) 0%, rgba(212, 163, 115, 0.8) 100%),
        url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?w=1920') center/cover fixed;
    padding: 180px 0 100px;
    text-align: center;
    color: var(--white);
}

.faq-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.faq-section {
    padding: 80px 0;
    background: var(--light-color);
}

.faq-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.faq-category-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.faq-category-card:hover,
.faq-category-card.active {
    background: var(--gradient-1);
    color: var(--white);
    transform: translateY(-5px);
}

.faq-category-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.faq-category-card:hover i,
.faq-category-card.active i {
    color: var(--white);
}

.faq-category-card h5 {
    font-weight: 700;
    margin: 0;
}

.accordion-item {
    background: var(--white);
    border: none;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.accordion-button {
    background: var(--white);
    font-weight: 600;
    color: var(--dark-color);
    padding: 20px 25px;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background: var(--accent-color);
    color: var(--dark-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D4A373'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    color: #666;
    line-height: 1.8;
}

.accordion-body ul {
    padding-left: 20px;
    margin-top: 10px;
}

.accordion-body ul li {
    margin-bottom: 8px;
}

.search-faq {
    max-width: 600px;
    margin: 0 auto 50px;
}

.search-faq .input-group {
    border: 2px solid #eee;
    border-radius: 50px;
    overflow: hidden;
    background: var(--white);
}

.search-faq input {
    border: none;
    padding: 15px 25px;
}

.search-faq button {
    background: var(--gradient-1);
    color: var(--white);
    border: none;
    padding: 15px 30px;
}

.still-need-help {
    background: var(--gradient-1);
    color: var(--white);
    padding: 60px;
    border-radius: 25px;
    text-align: center;
    margin-top: 60px;
}

.still-need-help h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.still-need-help p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .faq-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .faq-hero h1 {
        font-size: 2.5rem;
    }

    .faq-categories {
        grid-template-columns: 1fr;
    }

    .still-need-help {
        padding: 40px 30px;
    }
}