/* ===================================
   MILLMY - Main Stylesheet
   Premium Moroccan Products
   =================================== */

/* Google Fonts - DM Serif Display + Montserrat for modern elegance */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* CSS Variables */
:root {
    --primary-meat: #C41E3A;
    --primary-meat-dark: #8B0000;
    --primary-meat-light: #FF6B6B;
    --primary-green: #2D5A27;
    --primary-green-light: #4CAF50;
    --primary-green-dark: #1B3B19;
    --gold-accent: #D4AF37;
    --gold-light: #F4D03F;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #333333;
    --black: #000000;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--dark-gray);
    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;
    display: block;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-body);
    transition: var(--transition);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   ANNOUNCEMENT BANNER
   =================================== */
.announcement-banner {
    background-color: var(--black);
    color: var(--white);
    padding: 12px 0;
    position: relative;
    z-index: 1000;
    overflow: hidden;
}

.announcement-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
}

.announcement-slider {
    overflow: hidden;
    flex: 1;
    max-width: 800px;
}

.announcement-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.announcement-slide {
    min-width: 100%;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.announcement-slide span {
    color: var(--gold-accent);
    font-weight: 600;
}

.announcement-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.announcement-nav:hover {
    background: var(--white);
    color: var(--black);
}

.announcement-nav.prev {
    left: 10px;
}

.announcement-nav.next {
    right: 10px;
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 15px 0;
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Categories (Left) */
.header-categories {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-categories a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

.header.scrolled .header-categories a {
    color: var(--dark-gray);
}

.header-categories a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: var(--transition);
}

.header-categories a:hover::after {
    width: 100%;
}

/* Header Dropdown */
.header-dropdown {
    position: relative;
}

.header-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    text-decoration: none;
    cursor: pointer;
}

.header.scrolled .header-dropdown-toggle {
    color: var(--dark-gray);
}

.header-dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.header-dropdown:hover .header-dropdown-toggle i {
    transform: rotate(-180deg);
}

.header-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-accent);
    transition: var(--transition);
}

.header-dropdown:hover .header-dropdown-toggle::after {
    width: 100%;
}

.header-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 15px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.header-dropdown:hover .header-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: var(--transition);
}

.header-dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-meat);
    padding-left: 30px;
}

.header-dropdown-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-dropdown-icon-emoji {
    font-size: 1.1rem;
}

/* Logo (Center) */
.header-logo {
    text-align: center;
}

.header-logo a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    height: 100px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

.header.scrolled .logo-image {
    height: 100px;
    max-width: 350px;
}

.header.scrolled .logo-light {
    display: none;
}

.header.scrolled .logo-dark {
    display: block;
}

/* Actions (Right) */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 15px;
    border-radius: 25px;
    transition: var(--transition);
}

.header.scrolled .header-action {
    color: var(--dark-gray);
}

.header-action:hover {
    background: rgba(255, 255, 255, 0.15);
}

.header.scrolled .header-action:hover {
    background: var(--light-gray);
}

.header-action i {
    font-size: 1.2rem;
}

.cart-count {
    background: var(--primary-meat);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.contact-btn {
    background: var(--gold-accent);
    color: var(--black) !important;
    padding: 12px 25px !important;
    border-radius: 25px;
    font-weight: 600;
}

.contact-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    color: var(--white);
    font-size: 1.5rem;
    padding: 10px;
}

.header.scrolled .mobile-menu-toggle {
    color: var(--dark-gray);
}

/* ===================================
   MOBILE NAVIGATION
   =================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    z-index: 1001;
    padding: 30px;
    transition: var(--transition-slow);
    overflow-y: auto;
    box-shadow: 5px 0 30px var(--shadow-heavy);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--medium-gray);
}

.mobile-nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.mobile-nav-logo-img {
    height: 70px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.mobile-nav-close {
    background: transparent;
    font-size: 1.5rem;
    color: var(--dark-gray);
}

.mobile-nav-links {
    margin-bottom: 30px;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--light-gray);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-weight: 500;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.mobile-nav-link i {
    transition: var(--transition);
}

.mobile-nav-link.active i {
    transform: rotate(180deg);
}

.mobile-dropdown {
    display: none;
    padding: 0 0 15px 20px;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown a {
    display: block;
    padding: 12px 0;
    color: #666;
    font-size: 0.95rem;
}

.mobile-dropdown a:hover {
    color: var(--primary-meat);
    padding-left: 10px;
}

/* Mobile Search */
.mobile-search {
    padding: 0 0 20px;
    border-bottom: 1px solid var(--medium-gray);
    margin-bottom: 10px;
}

.mobile-search-form {
    display: flex;
    background: var(--light-gray);
    border-radius: 30px;
    overflow: hidden;
}

.mobile-search-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.95rem;
}

.mobile-search-form input:focus {
    outline: none;
}

.mobile-search-form button {
    padding: 15px 20px;
    background: var(--primary-meat);
    color: var(--white);
    border: none;
    font-size: 1rem;
}

.mobile-search-form button:hover {
    background: var(--primary-meat-dark);
}

.mobile-nav-contact {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-top: 30px;
}

.mobile-nav-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.mobile-nav-contact p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-contact i {
    color: var(--primary-meat);
    width: 20px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

/* Animated Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: blobFloat 15s ease-in-out infinite;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-meat) 0%, var(--primary-meat-dark) 100%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    bottom: -150px;
    left: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-light) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.3;
}

.blob-4 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-meat-light) 0%, var(--primary-meat) 100%);
    bottom: 20%;
    right: 10%;
    animation-delay: -7s;
    opacity: 0.5;
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 50% 40% 60% 50%;
    }
    25% {
        transform: translate(30px, -50px) scale(1.1);
        border-radius: 40% 60% 50% 60%;
    }
    50% {
        transform: translate(-20px, 30px) scale(0.95);
        border-radius: 60% 50% 40% 50%;
    }
    75% {
        transform: translate(40px, 20px) scale(1.05);
        border-radius: 50% 60% 60% 40%;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.floating-item {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    animation: floatItem 20s ease-in-out infinite;
}

.floating-item:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-item:nth-child(2) { top: 60%; left: 5%; animation-delay: -4s; }
.floating-item:nth-child(3) { top: 30%; right: 15%; animation-delay: -8s; }
.floating-item:nth-child(4) { top: 70%; right: 10%; animation-delay: -12s; }
.floating-item:nth-child(5) { top: 85%; left: 30%; animation-delay: -16s; }
.floating-item:nth-child(6) { top: 15%; right: 30%; animation-delay: -2s; }

@keyframes floatItem {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 20px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.hero-badge i {
    color: var(--gold-accent);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title span {
    color: var(--gold-accent);
    display: block;
}

.hero-description {
    font-size: 1.15rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-meat);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    background: var(--primary-meat-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-gray);
    border-color: var(--white);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 1s ease 0.4s backwards;
}

.hero-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.hero-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.hero-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating Product Cards */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 15%;
    left: -40px;
    animation-delay: -3s;
}

.floating-card img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.floating-card-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.floating-card-info p {
    font-size: 0.75rem;
    color: var(--primary-meat);
    font-weight: 600;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: 100px 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-meat);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-meat) 0%, var(--gold-accent) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-meat) 0%, var(--primary-meat-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.feature-card:nth-child(even) .feature-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
}

/* Bento Grid Feature Blocks */
.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card-premium {
    background: var(--white);
    border-radius: 20px;
    padding: 45px 35px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(196, 30, 58, 0.05);
    background-size: cover;
    background-position: center;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-meat) 0%, var(--gold-accent) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(196, 30, 58, 0.15);
    border-color: rgba(196, 30, 58, 0.15);
}

.feature-card-premium:hover::before {
    transform: scaleX(1);
}

.feature-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

.feature-card-icon {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-meat) 0%, var(--primary-meat-dark) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card-premium:nth-child(2) .icon-wrapper {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.feature-card-premium:nth-child(3) .icon-wrapper {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #F4D03F 100%);
    color: var(--black);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: var(--transition);
}

.feature-card-premium:hover .icon-wrapper {
    transform: scale(1.15) rotate(-5deg);
}

.feature-card-premium:hover .icon-wrapper::before {
    opacity: 1;
}

.feature-card-content {
    position: relative;
    z-index: 2;
}

.feature-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.2;
}

.feature-card-content > p {
    font-size: 0.9rem;
    color: var(--black);
    line-height: 1.6;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.5;
    transition: var(--transition);
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li:hover {
    color: var(--primary-meat);
    padding-left: 5px;
}

.checkmark {
    display: inline-flex;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-meat) 0%, var(--primary-meat-dark) 100%);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--white);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-card-premium:nth-child(2) .checkmark {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.feature-card-premium:nth-child(3) .checkmark {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #F4D03F 100%);
    color: var(--black);
}

.feature-card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(196, 30, 58, 0.85);
    line-height: 1;
    z-index: 3;
}

.feature-card-premium:nth-child(2) .feature-card-badge {
    color: rgba(45, 90, 39, 0.85);
}

.feature-card-premium:nth-child(3) .feature-card-badge {
    color: rgba(212, 175, 55, 0.85);
}

/* Bento Grid Feature Blocks (kept for reference but hidden) */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-item:hover img {
    transform: scale(1.1);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
    transition: var(--transition);
}

.bento-item:hover .bento-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(196, 30, 58, 0.9) 100%);
}

.bento-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    color: var(--white);
    z-index: 2;
}

.bento-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.bento-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.bento-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Large block - spans 2 columns */
.bento-large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-large .bento-content h3 {
    font-size: 2.5rem;
}

.bento-large .bento-content p {
    font-size: 1.1rem;
    max-width: 400px;
}

/* Tall block */
.bento-tall {
    grid-row: span 2;
}

/* Number decoration */
.bento-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.15);
    line-height: 1;
    z-index: 1;
}

/* Badge decoration */
.bento-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: var(--gold-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Check decoration */
.bento-check {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Years decoration */
.bento-years {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-meat);
    padding: 15px 20px;
    border-radius: 16px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.bento-years span {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .bento-item {
        min-height: 280px;
    }
    
    .bento-large {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 350px;
    }
    
    .bento-tall {
        grid-row: span 1;
    }
    
    .bento-large .bento-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .features-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card-premium {
        padding: 35px 25px;
    }
    
    .feature-card-content h3 {
        font-size: 1.4rem;
    }
    
    .icon-wrapper {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large {
        grid-column: span 1;
    }
    
    .bento-item {
        min-height: 300px;
    }
    
    .bento-large .bento-content h3 {
        font-size: 1.8rem;
    }
    
    .bento-number {
        font-size: 4rem;
    }
}

/* ===================================
   PRODUCTS SECTION
   =================================== */
.products-section {
    padding: 100px 0;
    background: var(--white);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

.products-header .section-header {
    text-align: left;
    margin-bottom: 0;
}

.category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 25px;
    background: var(--light-gray);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-meat);
    color: var(--white);
}

.category-tab.green:hover,
.category-tab.green.active {
    background: var(--primary-green);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-heavy);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.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;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-sale {
    background: var(--primary-meat);
    color: var(--white);
}

.badge-new {
    background: var(--primary-green);
    color: var(--white);
}

.badge-premium {
    background: var(--gold-accent);
    color: var(--black);
}

.product-quick-view {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
    box-shadow: 0 5px 15px var(--shadow);
}

.product-card:hover .product-quick-view {
    opacity: 1;
    transform: translateY(0);
}

.product-quick-view:hover {
    background: var(--primary-meat);
    color: var(--white);
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-card[data-category="viandes"] .product-category,
.product-card[data-category="volailles"] .product-category {
    color: var(--primary-meat);
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-name a {
    color: inherit;
    transition: var(--transition);
}

.product-name a:hover {
    color: var(--primary-meat);
}

a.product-image {
    display: block;
}

.product-description {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-meat);
}

.product-old-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.product-unit {
    font-size: 0.85rem;
    color: #888;
}

/* Quantity Picker */
.quantity-picker {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid var(--medium-gray);
    border-radius: 30px;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    color: var(--dark-gray);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-meat);
    color: var(--white);
}

.quantity-input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--dark-gray);
}

.quantity-input:focus {
    outline: none;
}

.add-to-cart {
    flex: 1;
    background: var(--primary-meat);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.product-card[data-category="legumes"] .add-to-cart,
.product-card[data-category="fruits"] .add-to-cart,
.product-card[data-category="epicerie"] .add-to-cart {
    background: var(--primary-green);
}

.add-to-cart:hover {
    background: var(--primary-meat-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
}

.product-card[data-category="legumes"] .add-to-cart:hover,
.product-card[data-category="fruits"] .add-to-cart:hover,
.product-card[data-category="epicerie"] .add-to-cart:hover {
    background: var(--primary-green-dark);
    box-shadow: 0 5px 20px rgba(45, 90, 39, 0.3);
}

.add-to-cart.added {
    background: var(--primary-green) !important;
}

.add-to-cart i {
    font-size: 1.1rem;
}

.view-all-btn {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-main-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px var(--shadow-heavy);
}

.about-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-secondary-image {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-heavy);
    border: 5px solid var(--white);
}

.about-secondary-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--primary-meat);
    color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

.experience-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
}

.experience-badge small {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-content h2 span {
    color: var(--primary-meat);
}

.about-content > p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-meat) 0%, var(--primary-meat-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature:nth-child(even) .about-feature-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.about-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 0.9rem;
    color: #888;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-section {
    padding: 100px 0;
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '"';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.testimonials-section .section-header {
    color: var(--white);
}

.testimonials-section .section-title {
    color: var(--white);
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 20px);
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold-accent);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-accent);
}

.testimonial-author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
}

.testimonial-author-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonials-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.testimonials-nav button:hover {
    background: var(--primary-meat);
}

/* ===================================
   WHATSAPP CONTACT SECTION
   =================================== */
.whatsapp-section {
    padding: 60px 0;
    background: #25D366;
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.whatsapp-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.whatsapp-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.whatsapp-text {
    text-align: left;
}

.whatsapp-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.whatsapp-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 400px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--white);
    color: #25D366;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn i {
    font-size: 1.4rem;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: #128C7E;
}

@media (max-width: 768px) {
    .whatsapp-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .whatsapp-text {
        text-align: center;
    }
    
    .whatsapp-text h2 {
        font-size: 1.6rem;
    }
    
    .whatsapp-text p {
        max-width: none;
    }
    
    .whatsapp-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--black);
    color: var(--white);
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.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;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-meat);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links ul li a:hover {
    color: var(--gold-accent);
    padding-left: 5px;
}

.footer-contact {
    text-align: center;
}

.footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-meat);
    font-size: 1.1rem;
}

.footer-bottom {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-payments {
    display: flex;
    gap: 15px;
}

.footer-payments img {
    height: 30px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-payments img:hover {
    opacity: 1;
}

/* ===================================
   CART SIDEBAR
   =================================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 1002;
    transition: var(--transition-slow);
    box-shadow: -5px 0 30px var(--shadow-heavy);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 25px 30px;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 span {
    background: var(--primary-meat);
    color: var(--white);
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 15px;
    font-family: var(--font-body);
}

.cart-close {
    background: var(--light-gray);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.cart-close:hover {
    background: var(--primary-meat);
    color: var(--white);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary-meat);
    font-weight: 600;
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-item-quantity button {
    width: 30px;
    height: 30px;
    background: var(--light-gray);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--dark-gray);
}

.cart-item-quantity button:hover {
    background: var(--primary-meat);
    color: var(--white);
}

.cart-item-quantity span {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    color: #999;
    font-size: 1.2rem;
    align-self: flex-start;
    background: transparent;
}

.cart-item-remove:hover {
    color: var(--primary-meat);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: #888;
}

.cart-empty i {
    font-size: 4rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.cart-empty p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cart-footer {
    padding: 25px 30px;
    border-top: 1px solid var(--medium-gray);
    background: var(--light-gray);
}

.cart-shipping-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #2e7d32;
}

.cart-shipping-info i {
    font-size: 1rem;
}

.cart-shipping-info strong {
    color: #1b5e20;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cart-subtotal span {
    font-size: 1.1rem;
    color: #666;
}

.cart-subtotal strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.cart-checkout {
    width: 100%;
    padding: 16px;
    background: var(--primary-meat);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.cart-checkout:hover {
    background: var(--primary-meat-dark);
}

.cart-continue {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--dark-gray);
    border: 2px solid var(--medium-gray);
    border-radius: 30px;
    font-weight: 500;
}

.cart-continue:hover {
    border-color: var(--dark-gray);
}

/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   SEARCH MODAL
   =================================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1003;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 150px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
}

.search-modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    color: var(--white);
    font-size: 2rem;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
}

.search-form input {
    flex: 1;
    padding: 25px 30px;
    border: none;
    font-size: 1.2rem;
    font-family: var(--font-body);
}

.search-form input:focus {
    outline: none;
}

.search-form button {
    padding: 25px 35px;
    background: var(--primary-meat);
    color: var(--white);
    font-size: 1.3rem;
}

.search-form button:hover {
    background: var(--primary-meat-dark);
}

.search-suggestions {
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.search-suggestions p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.search-suggestions a {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 5px;
    color: var(--white);
    font-size: 0.9rem;
}

.search-suggestions a:hover {
    background: var(--primary-meat);
}

/* ===================================
   SHOP PAGE STYLES
   =================================== */
.shop-hero {
    background: linear-gradient(135deg, var(--primary-meat) 0%, var(--primary-meat-dark) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.shop-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.shop-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: var(--gold-accent);
}

.shop-content {
    padding: 60px 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Shop Sidebar */
.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px var(--shadow);
}

.sidebar-widget h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-gray);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.category-filter {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-filter label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.category-filter label:hover {
    background: var(--light-gray);
}

.category-filter input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-meat);
}

.category-filter span {
    flex: 1;
}

.category-count {
    background: var(--light-gray);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

.price-range {
    padding: 10px 0;
}

.price-inputs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.price-inputs input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    text-align: center;
}

.price-inputs input:focus {
    outline: none;
    border-color: var(--primary-meat);
}

.price-slider {
    width: 100%;
    accent-color: var(--primary-meat);
}

/* Shop Main */
.shop-main {
    min-width: 0;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-results {
    color: #666;
    font-size: 0.95rem;
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shop-sort label {
    font-weight: 500;
    color: var(--dark-gray);
}

.shop-sort select {
    padding: 12px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 25px;
    font-family: var(--font-body);
    background: var(--white);
    cursor: pointer;
}

.shop-sort select:focus {
    outline: none;
    border-color: var(--primary-meat);
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-toggle button {
    width: 45px;
    height: 45px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    color: #666;
    font-size: 1.1rem;
}

.view-toggle button.active,
.view-toggle button:hover {
    background: var(--primary-meat);
    color: var(--white);
}

.shop-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.shop-products.list-view {
    grid-template-columns: 1fr;
}

.shop-products.list-view .product-card {
    display: grid;
    grid-template-columns: 250px 1fr;
}

.shop-products.list-view .product-image {
    height: 100%;
    min-height: 250px;
}

.shop-products.list-view .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.shop-products.list-view .product-description {
    -webkit-line-clamp: 3;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--light-gray);
    color: var(--dark-gray);
    border: none;
    cursor: pointer;
    padding: 0 15px;
}

.pagination-btn:hover:not(.disabled) {
    background: var(--primary-meat);
    color: var(--white);
}

.pagination-btn.active {
    background: var(--primary-meat);
    color: var(--white);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn.prev,
.pagination-btn.next {
    background: transparent;
    border: 2px solid var(--medium-gray);
}

.pagination-btn.prev:hover:not(.disabled),
.pagination-btn.next:hover:not(.disabled) {
    border-color: var(--primary-meat);
    background: var(--primary-meat);
}

.pagination-dots {
    color: #999;
    padding: 0 5px;
}

/* ===================================
   TOAST NOTIFICATIONS
   =================================== */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1004;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: var(--dark-gray);
    color: var(--white);
    padding: 16px 25px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px var(--shadow-heavy);
    animation: slideInRight 0.3s ease;
    min-width: 300px;
}

.toast.success {
    background: var(--primary-green);
}

.toast.error {
    background: var(--primary-meat);
}

.toast i {
    font-size: 1.3rem;
}

.toast-close {
    margin-left: auto;
    background: transparent;
    color: var(--white);
    opacity: 0.7;
}

.toast-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .products-grid,
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .shop-products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .header-container {
        grid-template-columns: auto 1fr auto;
    }
    
    .header-categories {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .header-action {
        padding: 8px 10px;
    }
    
    .contact-btn {
        display: none !important;
    }
    
    /* Search Modal Mobile */
    .search-modal {
        padding-top: 100px;
    }
    
    .search-modal-content {
        padding: 0 15px;
    }
    
    .search-modal-close {
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
    
    .search-form input {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .search-form button {
        padding: 18px 25px;
        font-size: 1.1rem;
    }
    
    .search-suggestions {
        margin-top: 20px;
    }
    
    .search-suggestions a {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-description {
        margin: 0 auto 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .announcement-wrapper {
        padding: 0 50px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        gap: 6px;
    }
    
    .hero-badge i {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .features-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: calc(100% - 20px);
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        width: 100%;
        max-width: none;
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .logo-image {
        height: 70px;
        max-width: 240px;
    }
    
    .header.scrolled .logo-image {
        height: 70px;
        max-width: 240px;
    }
    
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .shop-sort {
        flex-wrap: wrap;
    }
    
    .shop-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .shop-products.list-view .product-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .features-grid,
    .products-grid,
    .shop-products {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .quantity-picker {
        flex-direction: column;
    }
    
    .add-to-cart {
        width: 100%;
    }
    
    .about-secondary-image {
        width: 180px;
        right: -20px;
        bottom: -30px;
    }
    
    .experience-badge {
        left: -10px;
        padding: 20px;
    }
    
    .experience-badge span {
        font-size: 2.2rem;
    }
    
    .toast-container {
        left: 20px;
        right: 20px;
    }
    
    .toast {
        min-width: auto;
    }
}

/* ===================================
   PRODUCT PAGE STYLES
   =================================== */
.product-page {
    padding: 60px 0 80px;
    background: var(--white);
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.product-main-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px var(--shadow);
}

.product-main-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.product-main-image:hover img {
    transform: scale(1.05);
}

.product-thumbnails {
    display: flex;
    gap: 15px;
}

.product-thumbnail {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--primary-meat);
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details {
    padding: 20px 0;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #666;
}

.product-breadcrumb a {
    color: #666;
}

.product-breadcrumb a:hover {
    color: var(--primary-meat);
}

.product-breadcrumb i {
    font-size: 0.7rem;
}

.product-details .product-category {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.product-details .product-name {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.product-details .product-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-meta-item i {
    color: var(--primary-meat);
    font-size: 1.1rem;
}

.product-meta-item span {
    font-size: 0.9rem;
    color: #666;
}

.product-meta-item strong {
    color: var(--dark-gray);
}

.product-details .product-pricing {
    margin-bottom: 30px;
}

.product-details .product-price {
    font-size: 2.2rem;
}

.product-details .product-old-price {
    font-size: 1.3rem;
}

.product-sale-badge {
    display: inline-block;
    background: var(--primary-meat);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 15px;
}

.product-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.product-actions .quantity-controls {
    flex-shrink: 0;
}

.product-actions .add-to-cart {
    flex: 1;
    padding: 18px 40px;
    font-size: 1.1rem;
}

.product-features {
    border-top: 1px solid var(--medium-gray);
    padding-top: 30px;
}

.product-features h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.product-features ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #666;
}

.product-features li i {
    color: var(--primary-green);
    font-size: 1rem;
}

/* Related Products */
.related-products {
    padding: 80px 0;
    background: var(--light-gray);
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-meat) 0%, var(--primary-meat-dark) 100%);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card:nth-child(2) .contact-card-icon {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.contact-card:nth-child(3) .contact-card-icon {
    background: linear-gradient(135deg, var(--gold-accent) 0%, #B8960C 100%);
}

.contact-card:nth-child(4) .contact-card-icon {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.contact-card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.contact-card-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--primary-meat);
    font-weight: 500;
}

.contact-card-content a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
    height: 100%;
    min-height: 500px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-container h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-gray);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-meat);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* Product page responsive */
@media (max-width: 1024px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-gallery {
        position: relative;
        top: 0;
    }
    
    .product-main-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .product-details .product-name {
        font-size: 1.8rem;
    }
    
    .product-details .product-price {
        font-size: 1.8rem;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-features ul {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 350px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .product-main-image img {
        height: 300px;
    }
    
    .product-thumbnails {
        justify-content: center;
    }
    
    .product-thumbnail {
        width: 70px;
        height: 70px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
}

/* ===================================
   PAGE HERO (Reusable for inner pages)
   =================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-hero.meat-theme {
    background: linear-gradient(135deg, var(--primary-meat) 0%, #8B0000 100%);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .breadcrumb {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.page-hero .breadcrumb a:hover {
    color: var(--white);
}

.page-hero .breadcrumb i.fa-chevron-right {
    font-size: 0.75rem;
    opacity: 0.6;
}

.page-hero .breadcrumb span {
    color: var(--white);
    font-weight: 500;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 130px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
        padding: 0 20px;
    }
}

/* ===================================
   CHECKOUT PAGE STYLES
   =================================== */
.checkout-page {
    padding: 60px 0 80px;
    background: var(--light-gray);
    min-height: 80vh;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.checkout-form-section {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 5px 20px var(--shadow);
}

.checkout-form-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 15px;
}

.checkout-form-section h2 i {
    color: var(--primary-meat);
}

.checkout-form-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin: 30px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-form-section h3 i {
    color: var(--primary-green);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--primary-meat);
}

.payment-option.selected {
    border-color: var(--primary-meat);
    background: rgba(196, 30, 58, 0.05);
}

.payment-option input[type="radio"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary-meat);
}

.payment-option-content {
    flex: 1;
}

.payment-option-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.payment-option-content p {
    font-size: 0.9rem;
    color: #666;
}

.payment-option-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-meat);
}

/* Order Summary */
.order-summary {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: 0 5px 20px var(--shadow);
    position: sticky;
    top: 120px;
}

.order-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--light-gray);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.order-item-qty {
    font-size: 0.85rem;
    color: #666;
}

.order-item-price {
    font-weight: 600;
    color: var(--primary-meat);
    white-space: nowrap;
}

.order-totals {
    border-top: 2px solid var(--light-gray);
    padding-top: 20px;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.order-total-row span:first-child {
    color: #666;
}

.order-total-row.total {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px dashed var(--medium-gray);
}

.order-total-row.total span:last-child {
    color: var(--primary-meat);
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-meat);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.checkout-btn:hover {
    background: var(--primary-meat-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

.checkout-btn:disabled {
    background: var(--medium-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: #666;
    font-size: 0.85rem;
}

.secure-badge i {
    color: var(--primary-green);
}

.empty-cart-message {
    text-align: center;
    padding: 40px 20px;
}

.empty-cart-message i {
    font-size: 4rem;
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.empty-cart-message h3 {
    border: none;
    padding: 0;
    margin-bottom: 15px;
}

.empty-cart-message p {
    color: #666;
    margin-bottom: 20px;
}

/* Order Success */
.order-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

.order-success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3rem;
    color: var(--white);
}

.order-success h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.order-success p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.order-number {
    background: var(--light-gray);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    display: inline-block;
    margin-bottom: 30px;
}

.order-number span {
    color: #666;
    font-size: 0.9rem;
}

.order-number strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-meat);
    margin-top: 5px;
}

/* Checkout Responsive */
@media (max-width: 1024px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .checkout-page {
        padding: 120px 0 60px;
    }
    
    .checkout-form-section {
        padding: 25px;
    }
    
    .checkout-form-section h2 {
        font-size: 1.5rem;
    }
    
    .order-summary {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .announcement-banner,
    .cart-sidebar,
    .mobile-nav,
    .footer,
    .newsletter-section {
        display: none;
    }
}

/* ===================================
   CUSTOM ICONS STYLING
   =================================== */

/* Floating Icons in Hero */
.floating-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.2;
}

.floating-icon:nth-child(1) { width: 70px; height: 70px; }
.floating-icon:nth-child(2) { width: 60px; height: 60px; }
.floating-icon:nth-child(3) { width: 75px; height: 75px; }
.floating-icon:nth-child(4) { width: 85px; height: 85px; }
.floating-icon:nth-child(5) { width: 65px; height: 65px; }
.floating-icon:nth-child(6) { width: 70px; height: 70px; }

/* Feature Card Custom Icons */
.feature-custom-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: var(--transition);
}

/* Remove the red/green/gold background blocks for these widgets */
.feature-card-premium .icon-wrapper {
    background: transparent !important;
    color: inherit !important;
    box-shadow: none !important;
}

.feature-card-premium .icon-wrapper::before {
    display: none !important;
}

.feature-card-premium:hover .feature-custom-icon {
    transform: scale(1.15) rotate(5deg);
}

/* Category Tab Icons */
.tab-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
    transition: var(--transition);
}

.tab-icon-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 6px;
    font-size: 20px;
    line-height: 1;
    transition: var(--transition);
}

/* Delivery icon inside the round .feature-icon blocks */
.feature-icon-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.category-tab:hover .tab-icon,
.category-tab:hover .tab-icon-emoji {
    transform: scale(1.2);
}

.category-tab.active .tab-icon,
.category-tab.active .tab-icon-emoji {
    transform: scale(1.1);
}

/* About Section Custom Icons */
.about-custom-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: var(--transition);
}

/* Remove the red/green background blocks for the About widgets */
.about-feature-icon {
    background: transparent !important;
    color: inherit !important;
}

.about-feature:nth-child(even) .about-feature-icon {
    background: transparent !important;
}

.about-feature:hover .about-custom-icon {
    transform: scale(1.2) rotate(-5deg);
}

/* Shop Sidebar Icons */
.sidebar-icon {
    width: 22px;
    height: 22px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
    transition: var(--transition);
}

.sidebar-icon-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 8px;
    font-size: 18px;
    line-height: 1;
    transition: var(--transition);
}

.category-filter label:hover .sidebar-icon,
.category-filter label:hover .sidebar-icon-emoji {
    transform: scale(1.15);
}

/* Mobile Dropdown Icons */
.mobile-dropdown-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 10px;
    transition: var(--transition);
}

.mobile-dropdown-icon-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 17px;
    line-height: 1;
    transition: var(--transition);
}

.mobile-dropdown a:hover .mobile-dropdown-icon,
.mobile-dropdown a:hover .mobile-dropdown-icon-emoji {
    transform: scale(1.15);
}

/* Footer Icons */
.footer-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: var(--transition);
    flex-shrink: 0;
}

.footer-icon-emoji {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    font-size: 15px;
    line-height: 1;
    opacity: 0.7;
    transition: var(--transition);
    flex-shrink: 0;
}

.footer-links a:hover .footer-icon,
.footer-links a:hover .footer-icon-emoji {
    transform: scale(1.2);
    opacity: 1;
}

/* Responsive Icon Adjustments */
@media (max-width: 768px) {
    .floating-icon {
        width: 50px !important;
        height: 50px !important;
    }
    
    .feature-custom-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon-img {
        width: 34px;
        height: 34px;
    }
    
    .tab-icon {
        width: 20px;
        height: 20px;
    }

    .tab-icon-emoji {
        width: 20px;
        height: 20px;
        font-size: 18px;
    }
    
    .about-custom-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .floating-icon {
        width: 40px !important;
        height: 40px !important;
        opacity: 0.15;
    }
    
    .tab-icon {
        width: 18px;
        height: 18px;
        margin-right: 4px;
    }

    .tab-icon-emoji {
        width: 18px;
        height: 18px;
        margin-right: 4px;
        font-size: 16px;
    }
}
