﻿/*
Theme Name: SNEHAM
Theme URI: https://sneham.com
Author: SNEHAM Team
Author URI: https://sneham.com
Description: Elegant minimalist design with soft earth tones and refined aesthetics. Features clean lines, sophisticated typography, and subtle modern touches.
Version: 5.0.0
Requires at least: 5.0
Tested up to: 6.9
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sneham
Tags: e-commerce, woocommerce, elegant, minimal, sophisticated, earth-tones

Completely unique elegant design - no resemblance to previous versions.
*/

/* ============================================
   ELEGANT COLOR PALETTE - EARTH TONES
   ============================================ */
:root {
    /* Earth Tone Colors */
    --sage: #87A96B;
    --sage-light: #A8C88A;
    --sage-dark: #6B8E4F;
    --terracotta: #C9735F;
    --terracotta-light: #E3967E;
    --sand: #D4C5A9;
    --sand-light: #E8DDC7;
    --stone: #9B9B93;
    --stone-light: #B8B8B0;
    
    /* Neutral Palette */
    --ivory: #FAF9F6;
    --linen: #F5F1EB;
    --canvas: #FDFCF9;
    --charcoal: #2D2D2A;
    --slate: #5A5A56;
    --mist: #E8E6E1;
    
    /* Accent Colors */
    --accent-gold: #D4AF37;
    --accent-rust: #B85450;
    
    /* Backgrounds */
    --bg-primary: var(--canvas);
    --bg-secondary: var(--linen);
    --bg-card: var(--ivory);
    
    /* Text */
    --text-primary: var(--charcoal);
    --text-secondary: var(--slate);
    --text-muted: var(--stone);
    
    /* Shadows */
    --shadow-subtle: 0 2px 8px rgba(45, 45, 42, 0.06);
    --shadow-soft: 0 4px 16px rgba(45, 45, 42, 0.08);
    --shadow-medium: 0 8px 24px rgba(45, 45, 42, 0.12);
    --shadow-deep: 0 16px 48px rgba(45, 45, 42, 0.15);
    
    /* Borders */
    --border-light: 1px solid var(--mist);
    --border-medium: 1px solid var(--sand);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Bengali', 'Cormorant Garamond', 'Lora', 'Poppins', -apple-system, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.75;
    font-size: 1.0625rem;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: var(--sage-dark);
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: var(--sage);
    border-bottom-color: var(--sage);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

/* ============================================
   HEADER - ELEGANT MINIMALIST
   ============================================ */
.site-header {
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: var(--border-light);
    padding: 1.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
}

.custom-logo {
    max-height: 55px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.custom-logo:hover {
    opacity: 1;
}

/* Navigation - Elegant Style */
.main-navigation {
    display: flex;
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 0.125rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-menu a {
    display: block;
    padding: 0.625rem 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.3px;
    position: relative;
    transition: color 0.25s ease;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--sage);
    transition: width 0.3s ease;
}

.main-menu a:hover::after {
    width: calc(100% - 3rem);
}

.main-menu a:hover {
    color: var(--sage);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: var(--border-light);
    padding: 10px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 1001;
}

.hamburger-line {
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

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

.main-navigation.mobile-menu-open {
    position: fixed;
    inset: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.main-navigation.mobile-menu-open .main-menu {
    flex-direction: column;
    gap: 1rem;
}

.main-navigation.mobile-menu-open .main-menu a {
    font-size: 1.25rem;
    padding: 1rem 2rem;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-navigation:not(.mobile-menu-open) {
        display: none;
    }
    
    .header-container {
        padding: 0 2rem;
    }
}

/* ============================================
   HERO - ELEGANT SPACIOUS LAYOUT
   ============================================ */
.site-main {
    margin-top: 0;
}

.hero-section-v3 {
    padding: 8rem 3rem;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.hero-section-v3::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(135, 169, 107, 0.03) 0%, transparent 100%);
}

.hero-container-v3 {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.hero-content-v3 {
    position: relative;
}

.hero-badge-v3 {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-card);
    color: var(--sage);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    border: var(--border-light);
}

.hero-title-v3 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
}

.hero-tagline-v3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-style: italic;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
}

.hero-description-v3 {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 3rem;
    max-width: 540px;
}

.hero-buttons-v3 {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn-primary-v3 {
    padding: 1rem 2.5rem;
    background: var(--sage);
    color: white;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-btn-primary-v3:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.hero-btn-secondary-v3 {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    border: var(--border-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-btn-secondary-v3:hover {
    border-color: var(--sage);
    color: var(--sage);
    background: var(--bg-card);
}

.hero-visual-v3 {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-v3::before {
    content: '';
    position: absolute;
    inset: 0;
    border: var(--border-medium);
    background: var(--bg-card);
}

.hero-icon-v3 {
    font-size: 16rem;
    opacity: 0.08;
    color: var(--sage);
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .hero-container-v3 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-title-v3 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section-v3 {
        padding: 5rem 2rem;
    }
    
    .hero-title-v3 {
        font-size: 2.5rem;
    }
    
    .hero-visual-v3 {
        height: 350px;
    }
    
    .hero-icon-v3 {
        font-size: 10rem;
    }
}

/* ============================================
   PRODUCTS - ELEGANT CARD DESIGN
   ============================================ */
.products-section-new {
    padding: 6rem 3rem;
    background: var(--bg-primary);
}

.section-header-new {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-new {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
    position: relative;
    display: inline-block;
}

.section-title-new::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--sage);
}

.section-subtitle-new {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-style: italic;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
}

.products-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1320px;
    margin: 0 auto;
}

.product-card-new {
    background: var(--bg-card);
    border: var(--border-light);
    padding: 0;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.product-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--sand);
}

.product-image-wrapper-new {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-img-new {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-placeholder-new {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: var(--bg-secondary);
    opacity: 0.3;
}

.product-badge-new {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--terracotta);
    color: white;
    padding: 0.375rem 1rem;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
}

.product-info-new {
    padding: 2.5rem;
}

.product-title-new {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
}

.product-title-new a {
    color: inherit;
    border: none;
}

.product-title-new a:hover {
    color: var(--sage);
    border: none;
}

.product-description-new {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.product-price-new {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
}

.product-actions-new {
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: var(--border-light);
}

.btn-primary-small {
    flex: 1;
    padding: 0.875rem 1.5rem;
    background: var(--sage);
    color: white;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    border-radius: 2px;
}

.btn-primary-small:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-secondary-small {
    flex: 1;
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: var(--text-primary);
    font-weight: 500;
    border: var(--border-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    border-radius: 2px;
}

.btn-secondary-small:hover {
    border-color: var(--sage);
    color: var(--sage);
    background: var(--bg-secondary);
}

@media (max-width: 768px) {
    .products-section-new {
        padding: 4rem 2rem;
    }
    
    .products-grid-new {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ============================================
   ABOUT - ELEGANT LAYOUT
   ============================================ */
.about-section-new {
    padding: 6rem 3rem;
    background: var(--bg-secondary);
}

.about-container-new {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-content-new {
    position: relative;
}

.about-image-placeholder-new {
    width: 100%;
    height: 450px;
    background: var(--bg-card);
    border: var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image-placeholder-new::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: var(--border-light);
    z-index: -1;
}

.about-image-icon {
    font-size: 12rem;
    opacity: 0.15;
    color: var(--sage);
}

.about-text-content-new {
    position: relative;
}

.about-title-new {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
    position: relative;
}

.about-title-new::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--sage);
}

.about-description-new {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.about-stats-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card-new {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: var(--border-light);
    transition: all 0.3s ease;
}

.stat-card-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
    border-color: var(--sand);
}

.stat-number-new {
    font-size: 3rem;
    font-weight: 600;
    color: var(--sage);
    display: block;
    margin-bottom: 0.75rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
}

.stat-label-new {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

@media (max-width: 1024px) {
    .about-container-new {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-placeholder-new {
        height: 350px;
    }
    
    .about-image-icon {
        font-size: 10rem;
    }
}

@media (max-width: 768px) {
    .about-section-new {
        padding: 4rem 2rem;
    }
    
    .about-container-new {
        gap: 2.5rem;
    }
    
    .about-image-content-new {
        order: 1;
    }
    
    .about-text-content-new {
        order: 2;
        width: 100%;
        max-width: 100%;
    }
    
    .about-image-placeholder-new {
        height: 280px;
        width: 100%;
        max-width: 100%;
    }
    
    .about-image-icon {
        font-size: 8rem;
    }
    
    .about-title-new {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .about-title-new::after {
        width: 60px;
        bottom: -0.75rem;
    }
    
    .about-description-new {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .about-stats-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .stat-card-new {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .stat-number-new {
        font-size: 2.5rem;
        white-space: nowrap;
    }
    
    .stat-label-new {
        font-size: 0.8125rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .about-section-new {
        padding: 3rem 1.5rem;
    }
    
    .about-container-new {
        gap: 2rem;
    }
    
    .about-image-placeholder-new {
        height: 220px;
    }
    
    .about-image-icon {
        font-size: 6rem;
    }
    
    .about-title-new {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .about-description-new {
        font-size: 0.9375rem;
        line-height: 1.75;
        margin-bottom: 1.5rem;
    }
    
    .about-stats-new {
        gap: 1rem;
    }
    
    .stat-card-new {
        padding: 1.25rem;
    }
    
    .stat-number-new {
        font-size: 2rem;
    }
    
    .stat-label-new {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
}

/* ============================================
   FEATURES SECTION - NEW MODERN DESIGN
   ============================================ */
.features-section-new {
    padding: 6rem 3rem;
    background: var(--bg-secondary);
    position: relative;
}

.features-container-new {
    max-width: 1320px;
    margin: 0 auto;
}

.features-header-new {
    text-align: center;
    margin-bottom: 4rem;
}

.features-title-new {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
    position: relative;
    display: inline-block;
}

.features-title-new::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--sage);
}

.features-subtitle-new {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
}

.features-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-box-new {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border: var(--border-light);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-box-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135, 169, 107, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-box-new:hover::before {
    left: 100%;
}

.feature-box-new:hover {
    border-color: var(--sage);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.feature-icon-wrapper-new {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--bg-secondary);
    border: var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
}

.feature-box-new:hover .feature-icon-wrapper-new {
    background: var(--sage);
    border-color: var(--sage);
    transform: rotate(5deg) scale(1.1);
}

.feature-icon-new {
    font-size: 3rem;
    transition: transform 0.4s ease;
}

.feature-box-new:hover .feature-icon-new {
    transform: scale(1.2);
}

.feature-title-new {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
}

.feature-description-new {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   CTA SECTION - CALL TO ACTION
   ============================================ */
.cta-section-new {
    padding: 8rem 3rem;
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section-new::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.cta-container-new {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content-new {
    padding: 3rem 2rem;
}

.cta-title-new {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
    line-height: 1.2;
}

.cta-description-new {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-button-new {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    background: var(--ivory);
    color: var(--sage-dark);
    font-size: 1.125rem;
    font-weight: 600;
    border: 2px solid var(--ivory);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-new:hover {
    background: transparent;
    color: var(--ivory);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button-new:hover .cta-arrow {
    transform: translateX(8px);
}

@media (max-width: 1024px) {
    .features-section-new {
        padding: 5rem 2rem;
    }
    
    .features-title-new {
        font-size: 2.75rem;
    }
    
    .features-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .cta-section-new {
        padding: 6rem 2rem;
    }
    
    .cta-title-new {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .features-section-new {
        padding: 4rem 1.5rem;
    }
    
    .features-title-new {
        font-size: 2.25rem;
    }
    
    .features-subtitle-new {
        font-size: 1.125rem;
    }
    
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-box-new {
        padding: 2.5rem 1.5rem;
    }
    
    .feature-icon-wrapper-new {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon-new {
        font-size: 2.5rem;
    }
    
    .cta-section-new {
        padding: 5rem 1.5rem;
    }
    
    .cta-title-new {
        font-size: 2rem;
    }
    
    .cta-description-new {
        font-size: 1.125rem;
    }
    
    .cta-button-new {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ============================================
   CONTACT - ELEGANT FORM (Keeping for reference, but not used)
   ============================================ */
.contact-section-new {
    padding: 6rem 3rem;
    background: var(--bg-primary);
}

.contact-container-new {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
}

.contact-info-new {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-title-new {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
    position: relative;
}

.contact-title-new::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100px;
    height: 2px;
    background: var(--sage);
}

.contact-description-new {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.contact-details-new {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item-new {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: var(--border-light);
    transition: all 0.3s ease;
}

.detail-item-new:hover {
    border-color: var(--sand);
    transform: translateX(4px);
}

.detail-icon-new {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: var(--border-medium);
    flex-shrink: 0;
}

.detail-text-new {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-form-new {
    background: var(--bg-card);
    padding: 3rem;
    border: var(--border-medium);
}

.form-new {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-label-new {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input-new,
.form-textarea-new {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-primary);
    border: var(--border-medium);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-input-new:focus,
.form-textarea-new:focus {
    outline: none;
    border-color: var(--sage);
    background: var(--bg-card);
}

.form-textarea-new {
    min-height: 150px;
    resize: vertical;
}

@media (max-width: 1024px) {
    .contact-container-new {
        grid-template-columns: 1fr;
    }
    
    .contact-info-new {
        position: static;
    }
}

/* ============================================
   SINGLE PRODUCT - ELEGANT DESIGN
   ============================================ */
.single-product-wrapper-new {
    padding: 5rem 3rem;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: visible;
}

.breadcrumb-new {
    margin-bottom: 3rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.breadcrumb-new a {
    color: var(--sage);
    border: none;
}

.breadcrumb-separator {
    margin: 0 0.75rem;
}

.single-product-layout-new {
    display: block;
    margin-bottom: 5rem;
    width: 100%;
    overflow: visible;
}

/* Product Hero Modern Styles */
.product-hero-modern {
    margin-bottom: 4rem;
    padding: 0;
    width: 100%;
    overflow: visible;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    padding: 0;
    width: 100%;
}

.hero-image-box {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.image-container-modern,
.image-placeholder-modern {
    background: var(--bg-card);
    padding: 1rem;
    border: var(--border-medium);
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.product-image-modern {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: contain;
}

.placeholder-emoji {
    font-size: 4rem;
    opacity: 0.2;
    display: block;
    text-align: center;
}

.hero-info-box {
    padding-left: 1rem;
    padding-right: 2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    min-width: 0;
}

.product-name-modern {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
    word-wrap: break-word;
    line-height: 1.2;
}

.price-section-modern {
    margin-bottom: 2rem;
}

.price-label {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-right: 0.5rem;
}

.price-amount-modern {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--sage);
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
}

.benefits-grid-modern {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item-modern {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border: var(--border-light);
}

.benefit-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    word-wrap: break-word;
}

.benefit-text strong {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.0625rem;
}

.benefit-text span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* Product Details Modern Styles */
.product-details-modern {
    margin-bottom: 4rem;
    width: 100%;
    padding: 0;
    overflow: visible;
}

.details-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
}

.detail-section-modern {
    background: var(--bg-card);
    border: var(--border-light);
    padding: 2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.section-header-modern {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: var(--border-light);
}

.section-title-modern {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
    word-wrap: break-word;
}

.section-content-modern {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.0625rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

.section-content-modern p,
.section-content-modern ul,
.section-content-modern ol,
.section-content-modern li {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.features-grid-modern {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-card-modern {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border: var(--border-light);
    word-wrap: break-word;
}

.feature-check {
    color: var(--sage);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Order Buttons in Product Page */
.hero-order-button-wrapper {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: var(--border-light);
}

.hero-order-button-modern,
.description-order-button-modern {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
    color: var(--ivory);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--sage);
    transition: all 0.4s ease;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-soft);
}

.hero-order-button-modern:hover,
.description-order-button-modern:hover {
    background: linear-gradient(135deg, var(--sage-dark) 0%, var(--sage) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: var(--ivory);
}

.order-btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.hero-order-button-modern:hover .order-btn-icon,
.description-order-button-modern:hover .order-btn-icon {
    transform: scale(1.2) rotate(-10deg);
}

.order-btn-text {
    font-weight: 600;
}

.order-btn-arrow {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.hero-order-button-modern:hover .order-btn-arrow,
.description-order-button-modern:hover .order-btn-arrow {
    transform: translateX(6px);
}

.description-order-button-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: var(--border-light);
    text-align: center;
}

.product-image-section-new {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-image-container-new {
    background: var(--bg-card);
    padding: 1rem;
    border: var(--border-medium);
    position: relative;
    max-width: 280px;
    margin: 0 auto;
}

.product-image-container-new::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: var(--border-light);
    z-index: -1;
}

.main-product-image-new {
    width: 100%;
    height: auto;
    display: block;
    max-height: 280px;
    object-fit: contain;
}

.product-image-placeholder-new {
    width: 100%;
    min-height: 250px;
    background: var(--bg-secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.placeholder-icon-new {
    font-size: 4rem;
    opacity: 0.2;
    color: var(--sage);
}

.product-details-section-new {
    position: relative;
    padding-right: 2rem;
    overflow: visible;
    word-wrap: break-word;
    min-width: 0;
}

.product-header-new {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    padding-right: 1rem;
    border-bottom: var(--border-light);
    word-wrap: break-word;
}

.product-title-new {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
}

.product-price-new {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 1.5rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
}

.stock-status-new {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: var(--border-medium);
}

.stock-status-new.in-stock-new {
    background: var(--bg-card);
    color: var(--sage);
    border-color: var(--sage);
}

.stock-status-new.out-of-stock-new {
    background: var(--bg-card);
    color: var(--terracotta);
    border-color: var(--terracotta);
}

.delivery-info-new {
    background: var(--bg-secondary);
    padding: 2rem;
    padding-right: 1.5rem;
    border: var(--border-light);
    margin-bottom: 2.5rem;
    word-wrap: break-word;
}

.delivery-item-new {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.delivery-item-new:last-child {
    margin-bottom: 0;
}

.delivery-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: var(--border-light);
}

.product-tabs-new {
    background: var(--bg-card);
    border: var(--border-light);
    margin-bottom: 5rem;
}

.tab-buttons-new {
    display: flex;
    border-bottom: var(--border-medium);
}

.tab-btn-new {
    flex: 1;
    padding: 1.25rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid transparent;
}

.tab-btn-new.active {
    color: var(--sage);
    border-bottom-color: var(--sage);
    background: var(--bg-secondary);
}

.tab-panel-new {
    padding: 2.5rem;
    padding-right: 2rem;
    display: none;
    word-wrap: break-word;
}

.tab-panel-new.active {
    display: block;
}

.description-text-new {
    color: var(--text-secondary);
    line-height: 1.9;
    font-size: 1.0625rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding-right: 1rem;
}

.features-list-new {
    list-style: none;
}

.features-list-new li {
    padding: 1rem 0;
    margin-bottom: 0.5rem;
    border-bottom: var(--border-light);
    color: var(--text-primary);
    padding-left: 2rem;
    position: relative;
}

.features-list-new li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--sage);
}

.features-list-new li:last-child {
    border-bottom: none;
}

/* Order Form Section */
.order-form-section-new {
    background: var(--bg-secondary);
    padding: 5rem 3rem;
    border-top: var(--border-medium);
    border-bottom: var(--border-medium);
}

.order-form-container-new {
    max-width: 1320px;
    margin: 0 auto;
}

.order-form-layout-new {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
}

.form-heading-new,
.summary-heading-new {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
    position: relative;
}

.form-heading-new::after,
.summary-heading-new::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--sage);
}

.form-group-new {
    margin-bottom: 2rem;
}

.form-label-new {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input-new,
.form-textarea-new {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--bg-primary);
    border: var(--border-medium);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 0;
}

.form-input-new:focus,
.form-textarea-new:focus {
    outline: none;
    border-color: var(--sage);
    background: var(--bg-card);
}

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

.order-button-new {
    width: 100%;
    padding: 1.25rem 2.5rem;
    background: var(--sage);
    color: white;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 2px;
}

.order-button-new:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.order-summary-new {
    background: var(--bg-card);
    padding: 2.5rem;
    border: var(--border-medium);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-details-new {
    margin-bottom: 2rem;
}

.summary-item-new {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: var(--border-light);
}

.summary-label-new {
    color: var(--text-secondary);
    font-weight: 500;
}

.summary-value-new {
    color: var(--text-primary);
    font-weight: 600;
}

.summary-total-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: var(--border-medium);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.total-label-new {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    flex-shrink: 0;
}

.total-value-new {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--sage);
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
    white-space: nowrap;
    flex-shrink: 0;
}

.error-message-new {
    background: var(--bg-card);
    border: 2px solid var(--terracotta);
    color: var(--terracotta);
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.order-success-message-new {
    background: var(--bg-card);
    border: 2px solid var(--sage);
    color: var(--sage);
    padding: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.success-icon-new {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.order-success-message-new h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
}

.no-products-message-new {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    background: var(--bg-card);
    border: var(--border-light);
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .single-product-layout-new,
    .order-form-layout-new {
        grid-template-columns: 1fr;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image-box {
        position: static;
    }
    
    .hero-info-box {
        padding-left: 0;
        padding-right: 0;
    }
    
    .product-image-section-new,
    .order-summary-new {
        position: static;
    }
    
    .detail-section-modern {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .product-image-container-new {
        max-width: 250px;
    }
    
    .main-product-image-new {
        max-height: 250px;
    }
    
    .product-image-placeholder-new {
        min-height: 220px;
    }
    
    .hero-order-button-modern,
    .description-order-button-modern {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-order-button-wrapper {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .description-order-button-wrapper {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 768px) {
    .single-product-wrapper-new {
        padding: 3rem 1.5rem;
    }
    
    .order-form-section-new {
        padding: 3rem 1.5rem;
    }
    
    .single-product-layout-new {
        gap: 2rem;
    }
    
    .hero-content-wrapper {
        gap: 2rem;
    }
    
    .hero-info-box {
        padding-left: 0;
        padding-right: 0;
    }
    
    .product-name-modern {
        font-size: 2.25rem;
    }
    
    .price-amount-modern {
        font-size: 2rem;
    }
    
    .product-details-modern {
        margin-bottom: 3rem;
    }
    
    .detail-section-modern {
        padding: 2rem 1.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .section-title-modern {
        font-size: 1.5rem;
    }
    
    .section-content-modern p,
    .section-content-modern ul,
    .section-content-modern ol,
    .section-content-modern li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
    }
    
    .section-content-modern {
        font-size: 1rem;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .hero-order-button-modern,
    .description-order-button-modern {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .hero-order-button-wrapper {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .description-order-button-wrapper {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .order-btn-icon {
        font-size: 1.25rem;
    }
    
    .order-btn-arrow {
        font-size: 1.125rem;
    }
    
    .product-details-section-new {
        padding-right: 0;
    }
    
    .description-text-new {
        padding-right: 0;
    }
    
    .product-image-container-new {
        max-width: 100%;
        padding: 0.75rem;
    }
    
    .main-product-image-new {
        max-height: 220px;
    }
    
    .product-image-placeholder-new {
        min-height: 200px;
    }
    
    .placeholder-icon-new {
        font-size: 3.5rem;
    }
    
    .image-container-modern,
    .image-placeholder-modern {
        max-width: 100%;
    }
    
    .product-image-modern {
        max-height: 300px;
    }
    
    .summary-total-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem 0;
    }
    
    .total-label-new {
        font-size: 1rem;
        width: 100%;
    }
    
    .total-value-new {
        font-size: 1.5rem;
        width: 100%;
    }
}

/* ============================================
   FOOTER - ELEGANT MINIMALIST
   ============================================ */
.site-footer-new {
    background: var(--charcoal);
    color: var(--mist);
    padding: 5rem 3rem 2rem;
    border-top: var(--border-medium);
}

.footer-container-new {
    max-width: 1320px;
    margin: 0 auto;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-heading-new {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--sage-light);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
    position: relative;
}

.footer-heading-new::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 50px;
    height: 1px;
    background: var(--sage);
}

.footer-description-new,
.footer-menu-new li,
.footer-col-new p {
    color: var(--mist);
    line-height: 1.8;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-menu-new {
    list-style: none;
}

.footer-menu-new a {
    color: var(--mist);
    border: none;
    opacity: 0.8;
}

.footer-menu-new a:hover {
    color: var(--sage-light);
    opacity: 1;
    border: none;
}

.social-links-new {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon-new {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--mist);
    transition: all 0.3s ease;
}

.social-icon-new:hover {
    background: var(--sage);
    border-color: var(--sage);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom-new {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--mist);
    font-size: 0.875rem;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .footer-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ORDER FORM PAGE - ELEGANT DESIGN
   ============================================ */
.order-form-page-wrapper {
    padding: 5rem 3rem;
    max-width: 1320px;
    margin: 0 auto;
    background: var(--bg-primary);
}

.order-form-page-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Product Summary Section */
.order-product-summary {
    margin-bottom: 2rem;
}

.product-summary-card {
    background: var(--bg-card);
    border: var(--border-medium);
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.product-summary-card:hover {
    border-color: var(--sand);
    box-shadow: var(--shadow-soft);
}

.product-summary-image {
    width: 450px;
    height: 450px;
    flex-shrink: 0;
    background: var(--bg-secondary);
    border: var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    transition: all 0.3s ease;
}

.product-summary-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-soft);
    border-color: var(--sand);
}

.product-summary-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-summary-placeholder {
    font-size: 10rem;
    opacity: 0.3;
    color: var(--sage);
}

.product-summary-details {
    flex: 1;
}

.product-summary-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
}

.product-summary-description-wrapper {
    margin-bottom: 1.5rem;
}

.product-summary-description,
.product-summary-description-full {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.product-summary-description-full {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--sage);
    border: 1px solid var(--sage);
    font-weight: 500;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
    margin-top: 0.5rem;
}

.read-more-btn:hover {
    background: var(--sage);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.read-more-btn.active {
    background: var(--sage);
    color: white;
}

.read-more-icon {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.read-more-btn:hover .read-more-icon {
    transform: translateY(2px);
}

.product-summary-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--sage);
    font-family: 'Cormorant Garamond', 'Noto Sans Bengali', serif;
    margin-bottom: 2rem;
}

.product-summary-card .delivery-info-summary {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: var(--border-light);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Order Form Content */
.order-form-content-wrapper {
    background: var(--bg-card);
    border: var(--border-medium);
    padding: 4rem;
}

.order-form-fields-new {
    position: relative;
}

.delivery-info-summary {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: var(--border-light);
}

.delivery-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.delivery-info-icon {
    font-size: 1.25rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: var(--border-light);
}

.order-summary-new .form-actions-new {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: var(--border-medium);
}

/* Responsive Order Form Page */
@media (max-width: 1024px) {
    .order-form-page-container .order-form-layout-new {
        grid-template-columns: 1fr;
    }
    
    .order-form-page-container .order-summary-new {
        position: static;
    }
    
    .product-summary-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .product-summary-image {
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
    }
    
    .product-summary-details {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .order-form-page-wrapper {
        padding: 3rem 2rem;
    }
    
    .order-form-content-wrapper {
        padding: 2.5rem;
    }
    
    .product-summary-card {
        padding: 2rem;
        flex-direction: column;
        align-items: center;
    }
    
    .product-summary-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 280px;
        aspect-ratio: 1;
        padding: 1.5rem;
    }
    
    .product-summary-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .product-summary-placeholder {
        font-size: 6rem;
    }
    
    .summary-total-new {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem 0;
    }
    
    .total-label-new {
        font-size: 1rem;
        width: 100%;
    }
    
    .total-value-new {
        font-size: 1.5rem;
        width: 100%;
    }
    
    .product-summary-title {
        font-size: 2rem;
    }
    
    .product-summary-details {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .product-summary-card {
        padding: 1.5rem;
    }
    
    .product-summary-image {
        min-height: 250px;
        padding: 1rem;
    }
    
    .product-summary-placeholder {
        font-size: 5rem;
    }
}


