/* ==========================================================================
   Ongole Fresh Chicken & Mutton - Premium Stylesheet
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Variables */
:root {
    --primary: #d9213e;
    --primary-hover: #b81630;
    --primary-light: #fef2f3;
    --secondary: #f59e0b;
    --secondary-hover: #d97706;
    --accent: #10b981;
    --accent-light: #ecfdf5;
    
    --dark: #1e1b18;
    --dark-medium: #44403c;
    --dark-light: #78716c;
    --light: #fffdfb;
    --light-bg: #faf7f2;
    --white: #ffffff;
    
    --border-color: #f1ede8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(30, 27, 24, 0.04);
    --shadow-md: 0 10px 30px -10px rgba(30, 27, 24, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(217, 33, 62, 0.12);
    --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   GLOBAL RESET
   ========================================================================== */
*, *::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(--light);
    color: var(--dark-medium);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
}

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

button, select, input, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
}

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

/* Common Layout Elements */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* ==========================================================================
   PROMO & ANNOUNCEMENT BAR
   ========================================================================== */
.promo-bar {
    background: linear-gradient(90deg, var(--primary) 0%, #eb3b5a 100%);
    color: var(--white);
    text-align: center;
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 1001;
    position: relative;
    box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 253, 251, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(30, 27, 24, 0.05);
    transition: var(--transition);
}

header.scrolled {
    padding: 5px 0;
    box-shadow: var(--shadow-sm);
    background: rgba(255, 253, 251, 0.95);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.logo span {
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark-medium);
    position: relative;
    padding: 8px 0;
}

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

.nav-links a:hover,
.nav-links a.active-nav {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active-nav::after {
    width: 100%;
}

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

.cart-btn {
    position: relative;
    background: var(--light-bg);
    color: var(--dark);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid var(--border-color);
}

.cart-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(217, 33, 62, 0.2);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 0 0 3px var(--white);
}

.nav-btn {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(217, 33, 62, 0.2);
}

.nav-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 33, 62, 0.3);
}

.menu-toggle {
    display: none;
    background: var(--light-bg);
    color: var(--dark);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    z-index: 1001;
}

.menu-toggle:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(217, 33, 62, 0.2);
    transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    background: radial-gradient(circle at 80% 20%, #fef8f0 0%, var(--light) 50%);
    padding: 80px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(217, 33, 62, 0.1);
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, #eb3b5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--dark-light);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.primary-btn {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 24px rgba(217, 33, 62, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.primary-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(217, 33, 62, 0.35);
}

.secondary-btn {
    background: var(--white);
    color: var(--dark);
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.secondary-btn:hover {
    background: var(--light-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(217, 33, 62, 0.08) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    max-width: 480px;
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    transform: rotate(2deg);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* ==========================================================================
   TRUST SECTION
   ========================================================================== */
.trust {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 50px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-card {
    text-align: center;
    padding: 16px;
    position: relative;
}

.trust-card::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 25%;
    width: 1px;
    height: 50%;
    background-color: var(--border-color);
}

.trust-card:last-child::after {
    display: none;
}

.trust-card h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.trust-card p {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-light);
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.section-header .section-subtitle {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--dark-light);
    font-size: 1.05rem;
}

/* ==========================================================================
   PRODUCTS MARKET SECTION
   ========================================================================== */
.products-section {
    background-color: var(--light-bg);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    color: var(--dark-medium);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 6px 15px rgba(217, 33, 62, 0.2);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(217, 33, 62, 0.1);
}

.product-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: #f7f5f2;
}

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

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

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.2);
    z-index: 5;
}

.product-tag.popular {
    background: var(--primary);
    box-shadow: 0 4px 8px rgba(217, 33, 62, 0.2);
}

.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.product-desc {
    color: var(--dark-light);
    font-size: 0.875rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-cut-selector {
    margin-bottom: 20px;
}

.product-cut-selector label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-light);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.custom-select {
    width: 100%;
    padding: 10px 14px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    background: var(--light-bg);
    color: var(--dark-medium);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
}

.custom-select:hover, .custom-select:focus {
    border-color: var(--primary);
    background: var(--white);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
}

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

.price-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

.price-unit {
    font-size: 0.75rem;
    color: var(--dark-light);
}

/* Action button and Quantity controller */
.action-container {
    min-width: 120px;
    display: flex;
    justify-content: flex-end;
}

.add-to-cart-btn {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 33, 62, 0.2);
}

.qty-controls {
    display: flex;
    align-items: center;
    background: var(--primary-light);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(217, 33, 62, 0.15);
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

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

.qty-val {
    width: 32px;
    text-align: center;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

/* ==========================================================================
   FEATURES (WHY CHOOSE US)
   ========================================================================== */
.features-section {
    background-color: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    background: var(--white);
    border-color: rgba(217, 33, 62, 0.15);
    box-shadow: var(--shadow-md);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 24px auto;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
    background: var(--primary);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--dark-light);
    line-height: 1.6;
}

/* ==========================================================================
   PROCESS STEPPER SECTION
   ========================================================================== */
.process-section {
    background-color: var(--light-bg);
    overflow: hidden;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 8%;
    right: 8%;
    height: 4px;
    background: var(--border-color);
    z-index: 1;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.step-num {
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--dark-light);
    border: 4px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 24px auto;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.process-step:hover .step-num, .process-step.active .step-num {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 0 8px var(--primary-light);
}

.process-step h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--dark-light);
    max-width: 200px;
    margin: 0 auto;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--light-bg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 24px rgba(217, 33, 62, 0.25);
    text-align: center;
}

.experience-badge h4 {
    font-size: 2.2rem;
    color: var(--white);
    line-height: 1;
}

.experience-badge p {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-content p {
    color: var(--dark-light);
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.about-feat-item i {
    color: var(--accent);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    background-color: var(--light-bg);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-medium);
    margin-bottom: 24px;
    flex-grow: 1;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 1px solid rgba(217, 33, 62, 0.1);
    font-family: var(--font-heading);
}

.customer-meta h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.customer-meta span {
    font-size: 0.75rem;
    color: var(--dark-light);
    font-weight: 500;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    background-color: var(--light-bg);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: rgba(217, 33, 62, 0.2);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    font-family: var(--font-heading);
}

.faq-icon {
    font-size: 0.9rem;
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-answer-content {
    padding: 0 24px 20px 24px;
    color: var(--dark-light);
    font-size: 0.95rem;
    border-top: 1px solid var(--border-color);
    margin-top: 0;
    padding-top: 16px;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, #302621 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 33, 62, 0.1) 0%, rgba(255,255,255,0) 60%);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-content {
    max-width: 600px;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.cta-btn {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    padding: 18px 40px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 8px 24px rgba(217, 33, 62, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
}

.cta-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(217, 33, 62, 0.5);
}

.cta-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-detail-content p, .contact-detail-content a {
    font-size: 0.9rem;
    color: var(--dark-light);
}

.contact-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.form-group-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--dark-light);
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    background: var(--light-bg);
    transition: var(--transition);
    color: var(--dark);
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(217, 33, 62, 0.08);
}

textarea.form-control {
    resize: none;
    min-height: 120px;
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    width: 100%;
    box-shadow: 0 4px 14px rgba(217, 33, 62, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.submit-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 6px 20px rgba(217, 33, 62, 0.3);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    font-size: 0.95rem;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

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

.footer-links h4, .footer-contact h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 16px;
}

/* ==========================================================================
   CART SYSTEM DRAWER
   ========================================================================== */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30, 27, 24, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(30, 27, 24, 0.15);
    z-index: 1060;
    transition: cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-close-btn {
    font-size: 1.2rem;
    color: var(--dark-light);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
}

.cart-close-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.cart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-empty-msg {
    margin: auto;
    text-align: center;
    color: var(--dark-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cart-empty-msg i {
    font-size: 3rem;
    color: rgba(217, 33, 62, 0.15);
}

.cart-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.cart-item-img {
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-sm);
    object-fit: cover;
    background: var(--light-bg);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.cart-item-cut {
    font-size: 0.75rem;
    color: var(--primary);
    background: var(--primary-light);
    padding: 2px 8px;
    border-radius: 100px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 6px;
}

.cart-item-price {
    font-weight: 700;
    color: var(--dark-medium);
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.cart-item-qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.cart-item-qty-btn:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.cart-item-qty-val {
    width: 24px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
}

.cart-item-delete {
    color: var(--dark-light);
    font-size: 0.95rem;
}

.cart-item-delete:hover {
    color: var(--primary);
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-color);
    background: var(--light-bg);
}

.delivery-meter {
    margin-bottom: 20px;
}

.delivery-meter-text {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.delivery-meter-bar {
    height: 6px;
    background: var(--border-color);
    border-radius: 100px;
    overflow: hidden;
}

.delivery-meter-fill {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: var(--transition);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.cart-summary-row.total {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-color);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--dark);
    font-family: var(--font-heading);
}

.cart-summary-row.total .total-val {
    color: var(--primary);
}

.checkout-btn {
    background: var(--accent);
    color: var(--white);
    width: 100%;
    padding: 16px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
    margin-top: 16px;
}

.checkout-btn:hover {
    background: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .trust-card::after {
        display: none;
    }
    .trust-card:nth-child(odd)::after {
        display: block;
        right: -8px;
    }
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
        padding-left: 20px;
    }
    .process-steps::before {
        left: 60px;
        top: 0;
        bottom: 0;
        width: 4px;
        height: auto;
    }
    .process-step {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 20px;
        padding: 0;
    }
    .step-num {
        margin: 0;
    }
    .process-step p {
        margin: 0;
        max-width: 100%;
    }
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
    .testimonial-card:last-child {
        grid-column: span 2;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    .navbar {
        height: 70px;
    }
    .menu-toggle {
        display: flex;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 25px rgba(30, 27, 24, 0.15);
        padding: 100px 30px;
        gap: 24px;
        z-index: 999;
        transition: var(--transition);
    }
    .nav-links.open {
        right: 0;
    }
    .nav-links a {
        display: inline-block;
        width: fit-content;
        font-size: 1.1rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-badge {
        justify-content: center;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        margin: 0 auto 30px auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image-container {
        order: -1;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-img-box {
        max-width: 400px;
        margin: 0 auto;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card:last-child {
        grid-column: span 1;
    }
    .form-group-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    .cta-action {
        align-items: center;
    }
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .primary-btn, .secondary-btn {
        width: 100%;
        justify-content: center;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .trust-card::after {
        display: none;
    }
    .category-tabs {
        gap: 8px;
    }
    .tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
