/* ==========================================================================
   100% PURE VANILLA CSS (NO TAILWIND, NO THIRD PARTY CSS LIBRARIES)
   ========================================================================== */
:root {
    --primary: #e86a24;
    --primary-light: #f38446;
    --dark-bg: #2d1810;
    --off-white: #fdf9f4;
    --text-dark: #1e100c;
    --text-gray: #665d5a;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html, body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

section {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
}

.hide {
	display: none !important;
}

/* --- BUTTONS --- */
.btn-orange {
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(232, 106, 36, 0.35);
    transition: all 0.2s ease-in-out;
}
.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 106, 36, 0.45);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 999px;
    text-transform: uppercase;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* --- HEADER --- */
.header-light-wood {
    background-color: #ffffff;
    background-image: none;
    border-bottom: 7px solid #3f2925;
    box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.5);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 50;
}

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

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1512;
    text-decoration: none;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s ease, transform 0.2s ease;
}

.header-nav-link:hover {
    color: var(--primary);
}

.header-logo-badge {
    position: absolute;
    bottom: 17px;
    left: 50%;
    transform: translate(-50%, 50%);
    background: #ffffff;
    padding: 12px 40px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 40;
	padding-top: 44px;
}
.header-logo-badge.duplicate {
	z-index: 29;
    min-width: 325px;
    min-height: 150px;
    bottom: 15px;
    border: 7px solid #3f2925;
	box-shadow: 0 4px 15px -3px rgba(0, 0, 0, 0.5);
}

@media (max-width: 679px) {
    .header-logo-badge.duplicate {
        display: none !important;
    }
}
.header-logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.header-logo img {
    width: 5.25rem;
    height: 5.25rem;
    object-fit: contain;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}
.icon-btn-dark { background-color: var(--dark-bg); color: white; }
.icon-btn-light { background-color: #f3f4f6; color: var(--dark-bg); }

/* --- HERO SECTION --- */
.hero-section {
    background-image: linear-gradient(to bottom, rgba(253, 249, 244, 0.32), rgba(253, 249, 244, 1)), url('public/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    padding: 4.5rem 1rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--dark-bg);
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
	margin-top: 20px;
}
@media (min-width: 768px) {
    .hero-title { font-size: 4.5rem; }
}

.hero-title-gradient {
    background: linear-gradient(to bottom, #f3a022, #d14115);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.25));
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.sound-btn {
    padding: 0 1.25rem;
    height: 42px;
    background-color: var(--dark-bg);
    color: white;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}
.sound-btn:hover { transform: scale(1.05); }

.hero-stage {
    position: relative;
    width: 100%;
    max-width: 54rem;
    margin: 2rem auto 0;
	margin-top: 0;
}

.badge-brown {
    position: absolute;
    left: -10px;
    top: 20%;
    z-index: 25;
    background-color: #5c301c;
    color: white;
    border-radius: 50px;
    padding: 12px 22px;
    border: 3px solid var(--off-white);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transform: rotate(-12deg);
}
@media (max-width: 768px) {
    .badge-brown { display: none; }
}

.certified-box {
    position: absolute;
    right: -55px;
    top: 15%;
    z-index: 25;
    text-align: center;
    background: linear-gradient(135deg, #e86a24 0%, #d14115 100%);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(232, 106, 36, 0.4);
    color: white;
    transform: rotate(6deg);
    border: 3px solid white;
}
@media (max-width: 768px) {
    .certified-box { display: none; }
}
.promo-badge {
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}
.promo-old-price {
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: line-through;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.1rem;
}
.promo-new-price {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.promo-unit {
    font-size: 0.85rem;
    font-weight: 700;
    opacity: 0.95;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (min-width: 640px) {
    .hero-image-container { height: 520px; }
}

.hero-wood-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: 10;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: multiply;
}

.phone-badge {
    position: absolute;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--dark-bg);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(232, 106, 36, 0.25);
    text-decoration: none;
    border: 3px solid var(--primary);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}
.phone-badge:hover {
    transform: translateY(-8px) scale(1.05) !important;
    box-shadow: 0 15px 35px rgba(232, 106, 36, 0.4);
    color: var(--primary);
}
.phone-badge-left {
    left: -20px;
    bottom: 5px;
    transform: rotate(-3deg);
}
.phone-badge-right {
    right: -20px;
    bottom: 5px;
    transform: rotate(3deg);
}
.phone-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
}
@media (max-width: 768px) {
    .phone-badge {
        font-size: 0.9rem;
        padding: 8px 14px;
    }
    .phone-badge-left {
        left: 5px;
        bottom: -30px;
        transform: rotate(-2deg);
    }
    .phone-badge-right {
        right: 5px;
        bottom: -70px;
        transform: rotate(2deg);
    }
    .hero-section {
        padding-bottom: 7rem;
    }
}

/* --- CUSTOMER LOGOS --- */
.customers-section {
    padding: 2.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    background: white;
    text-align: center;
}
.customers-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    opacity: 0.65;
    margin-top: 1.25rem;
}

/* --- WOOD CATEGORIES --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 4rem 1.25rem;
    text-align: center;
}
@media (min-width: 768px) {
    .categories-grid { grid-template-columns: repeat(4, 1fr); }
}

.wood-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}
.wood-category-img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--dark-bg);
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    transition: transform 0.25s ease-in-out;
}
.wood-category-card:hover .wood-category-img {
    transform: scale(1.08);
}

/* --- QUALITY SECTION --- */
.split-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 5rem 1.25rem;
	padding-top: 2rem;
}
.split-col { width: 100%; }

@media (min-width: 768px) {
    .split-section { flex-direction: row; }
    .split-col { width: 50%; }
}

.experience-circle {
    /* Fallback for aspect-ratio on mobile browsers */
    padding-bottom: 75%; 
    height: 0;
    border-radius: 1.5rem;
    background: url('public/New%20folder/tolgy.jpg') center/cover no-repeat;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.experience-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--dark-bg);
    color: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* --- FEATURE CARDS --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.25rem;
}
@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    background-color: white;
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.feature-card-featured {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* --- CUSTOMER REVIEWS (SLIDESHOW & DESIGN FROM REVIEWS.PNG) --- */
.reviews-section {
    background-color: #fff;
    padding: 4rem 1.25rem;
}

.reviews-card-container {
    background-color: #24120a;
    background-image: radial-gradient(circle at 15% 50%, rgba(232, 106, 36, 0.12) 0%, transparent 65%);
    border-radius: 28px;
    padding: 3.5rem 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 992px) {
    .reviews-card-container {
        flex-direction: row;
        align-items: center;
        padding: 4rem 3.5rem;
    }
}

/* Left Side Content */
.reviews-left-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.reviews-flame-watermark {
    position: absolute;
    left: 60%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
    fill: #f38446;
}

.reviews-rating-header {
    font-size: 0.95rem;
    color: #e2d7cc;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.reviews-underline-link {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
}

.reviews-title-heading {
    font-size: 3.5rem;
    line-height: 0.98;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .reviews-title-heading {
        font-size: 2.75rem;
    }
}

.reviews-sub-heading {
    font-size: 0.95rem;
    color: #a89a8c;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.btn-google-pill {
    background: linear-gradient(135deg, #e86a24 0%, #f38446 100%);
    color: white;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(232, 106, 36, 0.45);
    transition: all 0.25s ease-in-out;
    text-decoration: none;
}

.btn-google-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(232, 106, 36, 0.65);
    background: linear-gradient(135deg, #f0732d 0%, #f59157 100%);
}

.google-circle-badge {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    color: #4285F4;
    line-height: 1;
}

/* Right Side Marquee Slideshow */
.reviews-right-slideshow {
    flex: 1.2;
    width: 100%;
    position: relative;
    z-index: 2;
}

.reviews-marquee-viewport {
    position: relative;
    height: 480px;
    overflow: hidden;
    border-radius: 18px;
}

.reviews-mask-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to bottom, #24120a 0%, rgba(36, 18, 10, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.reviews-mask-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: linear-gradient(to top, #24120a 0%, rgba(36, 18, 10, 0) 100%);
    z-index: 10;
    pointer-events: none;
}

.reviews-marquee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    height: 100%;
}

@media (max-width: 560px) {
    .reviews-card-container {
        padding: 2.5rem 1.25rem;
        border-radius: 20px;
    }
    .reviews-title-heading {
        font-size: 2.25rem;
    }
    .reviews-marquee-grid {
        grid-template-columns: 1fr;
    }
    .marquee-col:nth-child(2) {
        display: none;
    }
    .marquee-col:first-child .marquee-track {
        animation: marqueeDown 38s linear infinite;
    }
}

.marquee-col {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.marquee-track {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    will-change: transform;
}

.track-scroll-up {
    animation: marqueeUp 38s linear infinite;
}

.track-scroll-down {
    animation: marqueeDown 38s linear infinite;
}

.reviews-marquee-viewport:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes marqueeDown {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}

/* Card Details */
.marquee-card {
    background: #ffffff;
    color: #1e100c;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.marquee-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.marquee-card-stars {
    color: #f59e0b;
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.marquee-card-text {
    font-size: 0.85rem;
    font-weight: 450;
    line-height: 1.55;
    color: #2d1810;
    margin-bottom: 1rem;
    font-style: italic;
}

.marquee-card-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0e8e0;
    padding-top: 0.75rem;
}

.author-name-text {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a0b07;
}

.google-verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    color: #665d5a;
    font-weight: 600;
}

/* --- SHOP FIREWOOD --- */
.shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .shop-grid { grid-template-columns: 1fr 2fr; }
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.wood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    width: 100%;
}
@media (max-width: 1024px) {
    .wood-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .wood-grid { grid-template-columns: 1fr; }
}

.shop-card {
    background: #1a1a1a;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    border-color: var(--primary);
}
.shop-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.shop-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}
.shop-card:hover .shop-card-img-wrapper img { 
    transform: scale(1.06); 
}
.shop-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.shop-card-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem 1rem 1.5rem;
    background: linear-gradient(to top, var(--card-bg) 0%, rgba(30, 30, 30, 0.7) 50%, transparent 100%);
    z-index: 2;
}
.shop-card-title {
    color: white;
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}
.shop-card-desc {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    margin-bottom: 1rem;
}
.shop-card-specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
}
.spec-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    font-weight: 600;
    transition: background 0.3s ease, border-color 0.3s ease;
}
.spec-pill strong {
    color: #9ca3af;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.shop-card:hover .spec-pill {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}
.shop-card-price-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 2;
}
.shop-card-price-overlay .price-amount {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.1rem;
}
.shop-card-price-overlay .price-unit {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* --- DELIVERY TAGS --- */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 2.5rem;
}
@media (min-width: 768px) {
    .delivery-grid { grid-template-columns: repeat(4, 1fr); }
}
.delivery-tag {
    background: white;
    border: 1px solid #e5e5e5;
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
}
.delivery-tag.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* --- FOOTER RECREATION (EXACT MATCH FOR PUBLIC/DESIGN/FOOTER.PNG) --- */
.footer-outer-section {
    background-color: #fff;
    padding: 3rem 1.25rem 1.5rem;
}

.footer-tree-silhouette {
    width: 100%;
    margin-bottom: -3px;
    line-height: 0;
    overflow: hidden;
}

.footer-tree-img {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

.footer-dark-card {
    background-color: #1d110f;
    /*background-image: radial-gradient(circle at 50% 0%, rgba(232, 106, 36, 0.1) 0%, transparent 75%);*/
    border-radius: 0 0 28px 28px;
    padding: 3.5rem 3rem 5rem;
    color: white;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
	border-top-right-radius: 0;
    border-top-left-radius: 0;
}

/* Top 3 Info Cards Grid */
.footer-top-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 992px) {
    .footer-top-cards {
        grid-template-columns: 1fr;
    }
}

.footer-info-card {
    background: #251816;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-info-card:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 106, 36, 0.35);
}

.footer-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(232, 106, 36, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(232, 106, 36, 0.25);
}

.footer-info-text-label {
    font-size: 0.8rem;
    color: #a3978c;
    margin-bottom: 3px;
    font-weight: 500;
}

.footer-info-text-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

/* Middle 4 Link Columns */
.footer-main-columns {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
    gap: 2.5rem;
}

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

@media (max-width: 560px) {
    .footer-dark-card {
        padding: 2.5rem 1.5rem 4.5rem;
        border-radius: 20px;
		border-top-right-radius: 0;
    border-top-left-radius: 0;
    }
    .footer-main-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-column-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.footer-about-desc {
    font-size: 0.85rem;
    color: #9c8e82;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn-orange {
    background-color: var(--primary);
    color: white;
}

.social-btn-dark {
    background-color: #2e2621;
    color: #d1c5b8;
}
.social-btn-dark:hover {
    background-color: #3e332c;
    color: white;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-list a {
    font-size: 0.85rem;
    color: #9c8e82;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links-list a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* Bottom Overlapping Emblem / Logo Badge */
.footer-logo-emblem {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background: #ffffff;
    padding: 10px 32px 8px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.9);
    z-index: 10;
}

.footer-emblem-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1512;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    letter-spacing: 0.5px;
}

.footer-emblem-flame {
    color: var(--primary);
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
}

.footer-emblem-sub {
    font-size: 9px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Footer Bottom Bar Below Card */
.footer-bottom-bar {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding-top: 3rem;
    }
    .footer-payment-badges {
        display: none;
    }
    .footer-info-card {
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }
    .footer-info-icon {
        width: 36px;
        height: 36px;
    }
    .footer-info-icon svg {
        width: 16px;
        height: 16px;
    }
    .footer-info-text-value {
        font-size: 0.85rem;
        word-break: break-word;
    }
}

.footer-copyright {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.footer-payment-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.payment-badge {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    height: 26px;
}

.payment-badge-amex { background: #006fcf; color: white; border-color: #006fcf; font-style: italic; font-size: 10px; }
.payment-badge-mastercard { background: #252525; color: white; border-color: #252525; }
.payment-badge-visa { background: #1a1f71; color: white; border-color: #1a1f71; font-weight: 800; }
.payment-badge-paypal { background: #003087; color: white; border-color: #003087; font-weight: 800; }
.payment-badge-gpay { background: #ffffff; color: #3c4043; border-color: #dadce0; font-weight: 600; }

.hidden { display: none !important; }

/* --- ADDITIONAL UTILITY & COMPONENT CLASSES (EXTRACTED FROM INLINE STYLES) --- */
.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-md {
    width: 20px;
    height: 20px;
}

.sound-icon-off {
    width: 16px;
    height: 16px;
    color: #f97316;
}

.sound-icon-on {
    width: 16px;
    height: 16px;
    color: #f59e0b;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

.badge-highlight {
    color: var(--primary-light);
    font-size: 14px;
}

.fire-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,106,36,0.4) 0%, rgba(245,158,11,0.2) 50%, transparent 100%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 10;
}

.fire-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    pointer-events: none;
}

.certified-title {
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.certified-badges-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.certified-badge-circle {
    width: 38px;
    height: 38px;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.customers-title {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--text-gray);
    letter-spacing: 0.2em;
}

.customer-brand-green {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: #166534;
}

.customer-brand-red {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: #dc2626;
}

.customer-brand-blue {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    color: #2563eb;
}

.wood-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wood-category-name {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.quality-section {
    background-color: var(--off-white);
}

.experience-circle-label {
    display: none;
}

.experience-badge-num {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.75rem;
}

.experience-badge-text {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

.quality-title {
    font-size: 2.5rem;
    line-height: 1.1;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.text-primary {
    color: var(--primary);
}

.quality-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.offer-section {
    background: white;
}

.offer-container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.offer-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.feature-card-img-placeholder {
    width: 100%;
    height: 10rem;
    background: #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #6b7280;
}

.feature-card-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.feature-card-desc {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-arrow-icon {
    font-size: 1.1rem;
    line-height: 1;
}

.shop-section {
    background: white;
}

.shop-pricing-card {
    background: var(--dark-bg);
	background-image: radial-gradient(circle at 15% 50%, rgba(232, 106, 36, 0.12) 0%, transparent 65%);
    color: white;
    padding: 2rem;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
}

.shop-pricing-title {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #492e29;
    padding-bottom: 1rem;
}

.shop-pricing-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 14px;
}

.shop-pricing-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #492e29;
    padding-bottom: 0.5rem;
}

.shop-pricing-row-noborder {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
}

.btn-orange-full {
    width: 100%;
    margin-top: 2rem;
}

.shop-card-title {
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin: 0;
}

.shop-card-arrow {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}
.shop-card:hover .shop-card-arrow {
    transform: translate(3px, -3px);
}

.delivery-section {
    background-color: var(--off-white);
    padding: 4rem 1.25rem;
    border-top: 1px solid #e5e7eb;
}

.text-center {
    text-align: center;
}

.delivery-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.text-gray {
    color: var(--text-gray);
}

.delivery-subtitle {
    font-size: 13px;
    color: var(--text-gray);
}

/* Responsive Header Nav */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #3a2012;
    margin-bottom: 6px;
    transition: 0.3s;
    border-radius: 2px;
}
.hamburger-line:last-child {
    margin-bottom: 0;
}

.hamburger-btn.open .line-1 {
    transform: rotate(-45deg) translate(-6px, 6px);
}
.hamburger-btn.open .line-2 {
    opacity: 0;
}
.hamburger-btn.open .line-3 {
    transform: rotate(45deg) translate(-6px, -7px);
}

@media (max-width: 900px) {
    .header-nav {
        gap: 1rem;
    }
    .header-nav-link {
        font-size: 0.95rem;
    }
    .header-logo-badge {
        padding: 8px 24px;
    }
    .header-logo {
        font-size: 1.2rem;
    }
    .header-logo img {
        width: 4rem;
        height: 4rem;
    }
}

@media (max-width: 680px) {
    #main-header {
        padding: 0.3rem 1rem;
    }
    #main-header.mobile-menu-open {
        padding: 1rem;
    }
    .hamburger-btn {
        display: block;
    }
    .header-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        position: relative;
    }
    .header-logo-badge {
        position: static;
        transform: none;
        box-shadow: none;
        padding: 6px 12px;
    }
    .header-nav {
        display: none;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }
    .mobile-menu-open .header-nav {
        display: flex;
    }
    .header-nav-link {
        font-size: 0.85rem;
    }
}

/* --- DELIVERY SECTION RECREATION (EXACT MATCH FOR DELIVERY.PNG WITH KIA TRUCK) --- */
.delivery-hero-section {
    background-color: #1d110f;
    color: #ffffff;
    padding: 0 0 5rem 0;
    overflow: hidden;
}

.delivery-banner-container {
    background-color: #1d110f;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 1.25rem;
    overflow: hidden;
}

.delivery-banner-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center right;
    opacity: 0.15;
    mix-blend-mode: luminosity;
    filter: blur(1px);
    pointer-events: none;
}

.delivery-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.delivery-marker-wrapper {
    display: flex;
    gap: 1.75rem;
    align-items: stretch;
}

.marker-axis {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2.8rem;
}

.marker-pin-svg {
    width: 2.5rem;
    height: 3.2rem;
    flex-shrink: 0;
}

.marker-dashed-line {
    width: 2px;
    flex: 1;
    border-left: 2px dashed rgba(255, 255, 255, 0.7);
    margin: 8px 0;
    min-height: 70px;
}

.marker-circle-node {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.marker-node-inner {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e86a24;
}

.marker-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.delivery-banner-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.delivery-banner-title .text-orange {
    color: var(--primary);
}

.location-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
}

.delivery-banner-right {
    flex: 1.3;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.delivery-truck-wrapper {
    width: 100%;
    max-width: 720px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.delivery-truck-img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.7));
}

/* Main Content Below Banner */
.delivery-main-container {
    padding-top: 4rem;
}

.delivery-main-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 2.5rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.delivery-full-width-container {
    width: 100%;
    padding: 0 2.5rem;
}

.delivery-split-grid {
    display: grid;
    grid-template-columns: minmax(380px, 40%) 1fr;
    gap: 2.5rem;
    position: relative;
    align-items: stretch;
}

.delivery-map-col {
    height: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

/* --- LIGHT CREAM LEAFLET MAP & PIN STYLES --- */
.delivery-map-card {
    background: #f7f2ea;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(232, 106, 36, 0.3);
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.map-card-header {
    background: linear-gradient(to right, #2d1810, #1d110f);
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid rgba(232, 106, 36, 0.35);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map-card-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.05em;
}

.map-card-hint {
    font-size: 0.75rem;
    color: #f38446;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(232, 106, 36, 0.15);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(232, 106, 36, 0.4);
}

#delivery-leaflet-map {
    background-color: #f7f2ea !important;
}

/* Leaflet Container Overrides */
.leaflet-container {
    background-color: #f7f2ea !important;
    font-family: var(--font-body);
}

.leaflet-control-zoom {
    border: 1px solid rgba(45, 24, 16, 0.15) !important;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
}

.leaflet-control-zoom a {
    background-color: #ffffff !important;
    color: #2d1810 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    font-weight: bold !important;
    transition: all 0.2s ease;
}

.leaflet-control-zoom a:hover {
    background-color: #e86a24 !important;
    color: #ffffff !important;
}

/* Truck Marker Icon Styles (Exact match to tuzifaellato) */
.custom-leaflet-truck-marker {
    background: transparent !important;
    border: none !important;
}

.custom-truck-marker-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.custom-truck-marker-wrapper:hover {
    transform: scale(1.15);
}

.truck-marker-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 3px solid var(--marker-color, #10b981);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25), 0 0 10px var(--marker-glow);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cream Leaflet Popup */
.cream-leaflet-popup-wrapper .leaflet-popup-content-wrapper {
    background: rgba(255, 253, 248, 0.98) !important;
    border: 1px solid rgba(232, 106, 36, 0.4) !important;
    border-radius: 14px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 15px rgba(232, 106, 36, 0.15) !important;
    backdrop-filter: blur(8px);
    color: #1e100c !important;
    padding: 0 !important;
}

.cream-leaflet-popup-wrapper .leaflet-popup-tip {
    background: rgba(255, 253, 248, 0.98) !important;
    border-right: 1px solid rgba(232, 106, 36, 0.4) !important;
    border-bottom: 1px solid rgba(232, 106, 36, 0.4) !important;
}

.cream-leaflet-popup-wrapper .leaflet-popup-close-button {
    color: #6b7280 !important;
    padding: 6px 10px 0 0 !important;
}

.cream-leaflet-popup-wrapper .leaflet-popup-close-button:hover {
    color: #e86a24 !important;
}

.cream-map-popup-card {
    padding: 1rem 1.15rem;
}

.popup-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.popup-title-text {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e100c;
    letter-spacing: 0.03em;
}

.popup-price-badge {
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
}

.popup-price-badge.badge-green {
    background: linear-gradient(to right, #059669, #10b981);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.popup-price-badge.badge-yellow {
    background: linear-gradient(to right, #d97706, #f59e0b);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.35);
}

.popup-desc-text {
    font-size: 0.82rem;
    color: #5c4d47;
    line-height: 1.45;
    margin-bottom: 0.85rem;
}

.popup-order-btn {
    width: 100%;
    background: linear-gradient(to right, #e86a24, #f38446);
    border: none;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(232, 106, 36, 0.35);
    transition: all 0.2s ease;
}

.popup-order-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(232, 106, 36, 0.5);
}

/* Active City Item Highlight in Right Side List */
.delivery-area-card li {
    transition: all 0.2s ease;
}

.delivery-area-card li:hover {
    background: rgba(232, 106, 36, 0.15);
    border-color: rgba(232, 106, 36, 0.4);
    transform: translateY(-2px);
    color: #f3f4f6;
}

.delivery-area-card li.active-city-item {
    color: #ffffff !important;
    background: rgba(232, 106, 36, 0.4);
    border-color: #e86a24;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(232, 106, 36, 0.4);
    transform: translateY(-2px);
}

.delivery-area-card li::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 6px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23e86a24" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.delivery-area-card li:hover::before {
    transform: scale(1.1);
}

.delivery-area-card li.active-city-item::before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23ffffff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg>');
}

.delivery-areas-col {
    position: relative;
}

.delivery-flame-watermark {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 380px;
    height: 380px;
    fill: rgba(232, 106, 36, 0.04);
    pointer-events: none;
}

.delivery-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
    height: 100%;
    align-content: stretch;
}

.delivery-area-card, .delivery-area-card ul {
    display: contents;
}

.delivery-area-card li {
    background: rgba(30, 24, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #f3f4f6;
    backdrop-filter: blur(4px);
    cursor: pointer;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    list-style: none;
    margin: 3px;
}

@media (max-width: 1200px) {
    .delivery-full-width-container {
        padding: 0 1.5rem;
    }
    .delivery-split-grid {
        grid-template-columns: 1fr;
    }
    .delivery-map-col {
        min-height: 400px;
    }
    .delivery-map-card iframe {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .delivery-full-width-container {
        padding: 0 1rem;
    }
    .delivery-banner-inner {
        flex-direction: column;
    }
    .delivery-banner-title {
        font-size: 2.5rem;
    }
}


/* --- ONLINE ORDER FORM (#rendeles) STYLES --- */
.order-form-container {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.order-form-card {
    background: linear-gradient(145deg, #1d110f, #2d1810);
    border: 1px solid rgba(232, 106, 36, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.order-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.order-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 106, 36, 0.15);
    border: 1px solid rgba(232, 106, 36, 0.4);
    color: #ff9e2c;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.order-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.order-subtitle {
    font-size: 1rem;
    color: #d1d5db;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Alert Banners */
.order-alert-success {
    background: rgba(16, 185, 129, 0.12);
    border: 1.5px solid #10b981;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.alert-icon-title {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.75rem;
}

.alert-icon-title h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #10b981;
    letter-spacing: 0.03em;
}

.order-id-text {
    font-size: 0.85rem;
    color: #a7f3d0;
}

.order-id-text strong {
    font-family: monospace;
    font-size: 1rem;
    color: #ffffff;
}

.alert-desc {
    font-size: 0.9rem;
    color: #e5e7eb;
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.order-alert-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    color: #fca5a5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.hidden {
    display: none !important;
}

/* Steps */
.form-step-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.75rem;
}

.step-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff9e2c;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(232, 106, 36, 0.4);
}

/* Form Controls */
.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #e5e7eb;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    background: #251816;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: #e86a24;
    box-shadow: 0 0 12px rgba(232, 106, 36, 0.35);
    background: rgba(20, 10, 8, 0.9);
}

.form-select option {
    background-color: #1d110f;
    color: #ffffff;
}

.checkbox-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(232, 106, 36, 0.08);
    border: 1px solid rgba(232, 106, 36, 0.3);
    border-radius: 12px;
    padding: 1.15rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.checkbox-box:hover {
    background: rgba(232, 106, 36, 0.14);
}

.form-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #e86a24;
    cursor: pointer;
    margin-top: 2px;
}

.checkbox-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    display: block;
    letter-spacing: 0.03em;
}

.checkbox-desc {
    font-size: 0.8rem;
    color: #d1d5db;
    display: block;
    margin-top: 2px;
}

/* Order Summary Box */
.order-summary-card {
    background: rgba(15, 8, 6, 0.75);
    border: 1.5px solid rgba(232, 106, 36, 0.35);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

.summary-rows {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.95rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    color: #d1d5db;
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(232, 106, 36, 0.3);
    padding-top: 1rem;
    margin-top: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.03em;
}

.summary-total-row span:last-child {
    color: #e86a24;
    font-size: 1.6rem;
    text-shadow: 0 2px 10px rgba(232, 106, 36, 0.4);
}

/* Submit Footer */
.form-submit-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.btn-submit-full {
    width: 100%;
    padding: 1.15rem 2rem;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(232, 106, 36, 0.4);
}

.guarantee-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: #d1d5db;
    font-weight: 600;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

@media (max-width: 768px) {
    .order-form-card {
        padding: 2rem 1.25rem;
    }
    .order-title {
        font-size: 1.8rem;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .form-group.full-width {
        grid-column: span 1;
    }
    .guarantee-row {
        gap: 0.75rem;
        flex-direction: column;
        align-items: center;
    }
}

/* --- MULTI-STEP ORDER PAGE (order.html) STYLES --- */
.order-page-body {
    background-color: var(--off-white);
}

.order-hero-section {
    padding: 3rem 1.25rem 5rem;
}

.order-page-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.order-page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-bg);
    letter-spacing: 0.02em;
    margin-bottom: 0.75rem;
}

.order-page-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Step Progress Indicator Bar */
.step-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step-progress-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    border-radius: 999px;
    background: #e5e7eb;
    color: #6b7280;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.25s ease;
}

.step-progress-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #9ca3af;
    color: #ffffff;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-progress-item.active {
    background: var(--dark-bg);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(45, 24, 16, 0.25);
}

.step-progress-item.active .step-progress-num {
    background: var(--primary);
}

.step-progress-item.completed {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.step-progress-item.completed .step-progress-num {
    background: #10b981;
}

.step-progress-line {
    flex: 1;
    height: 2px;
    background: #e5e7eb;
    max-width: 60px;
}

/* Grid Layout for order.html */
.order-flow-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

/* Step Views & Container */
.order-step-container {
    width: 100%;
}

.order-step-view {
    background: linear-gradient(145deg, #1d110f, #2d1810);
    border: 1px solid rgba(232, 106, 36, 0.3);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
    color: #ffffff;
}

.step-view-transparent {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.step-card-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.25rem;
}

.step-card-header.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.step-view-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: 0.03em;
}

.step-badge-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(232, 106, 36, 0.4);
    flex-shrink: 0;
}

.step-view-desc {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-top: 0.5rem;
}

.selected-species-badge {
    display: inline-block;
    background: rgba(232, 106, 36, 0.15);
    border: 1px solid rgba(232, 106, 36, 0.4);
    color: #ff9e2c;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.btn-back-link {
    background: transparent;
    border: none;
    color: #ff9e2c;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: color 0.2s ease;
}

.btn-back-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Wood species product cards in Step 1 */
.order-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.order-wood-card {
    cursor: pointer;
    position: relative;
    height: 240px;
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.order-wood-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(232, 106, 36, 0.4);
}

.wood-tag-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 25;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.wood-card-price {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 25;
    background: rgba(29, 17, 15, 0.88);
    border: 1px solid rgba(232, 106, 36, 0.4);
    color: #ff9e2c;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.btn-card-select {
    padding: 6px 16px;
    font-size: 0.75rem;
}

/* Form Action Nav inside Step Views */
.form-action-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.step-hint-text {
    font-size: 0.82rem;
    color: #9ca3af;
}

.text-orange {
    color: #ff9e2c !important;
}

/* Order Summary Sidebar (.shop-pricing-card) */
.order-summary-sidebar {
    min-height: 504px;
}

.sidebar-dynamic-content {
    margin-bottom: 1.5rem;
}

.sidebar-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.sidebar-summary-row {
    display: flex;
    justify-content: space-between;
    color: #d1d5db;
    line-height: 1.4;
}

.sidebar-summary-row.primary-line {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
}

.sidebar-summary-row.primary-line strong {
    color: #ff9e2c;
}

.sidebar-summary-row.highlight-line {
    color: #ffffff;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 6px;
}

.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0.25rem 0;
}

.sidebar-total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1.5px solid rgba(232, 106, 36, 0.4);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
}

.sidebar-total-price {
    color: #e86a24;
    font-size: 1.4rem;
}

.sidebar-hint-box {
    background: rgba(232, 106, 36, 0.1);
    border: 1px solid rgba(232, 106, 36, 0.3);
    border-radius: 8px;
    padding: 0.85rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #ff9e2c;
    line-height: 1.4;
}

/* Disabled State for Next Step Button */
.btn-disabled {
    opacity: 0.45 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.btn-order-pulse {
    animation: orderPulse 2s infinite;
}

@keyframes orderPulse {
    0% { box-shadow: 0 0 0 0 rgba(232, 106, 36, 0.6); }
    70% { box-shadow: 0 0 0 14px rgba(232, 106, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(232, 106, 36, 0); }
}

.sidebar-success-badge {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10b981;
    color: #10b981;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sidebar-guarantee-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    color: #9ca3af;
    font-weight: 600;
}

.sidebar-guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Success Card View */
.order-success-card {
    text-align: center;
    padding: 1.5rem 0;
}

.success-header {
    margin-bottom: 2rem;
}

.success-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #10b981;
    margin: 0.75rem 0 0.5rem;
}

.success-order-id-badge {
    font-size: 0.95rem;
    color: #d1d5db;
}

.success-order-id-badge strong {
    font-family: monospace;
    font-size: 1.15rem;
    color: #ffffff;
}

.success-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.detail-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
}

.detail-label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: #ff9e2c;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.detail-val {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.success-total-box {
    background: rgba(232, 106, 36, 0.15);
    border: 1px solid rgba(232, 106, 36, 0.4);
    border-radius: 12px;
    padding: 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.total-highlight {
    color: #e86a24;
    font-size: 1.6rem;
}

.success-info-msg {
    font-size: 0.9rem;
    color: #d1d5db;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.btn-reset-flow {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
}

/* --- CONTACT SECTION & FAQ --- */
.contact-section {
    background-color: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: #1e100c;
	padding: 4rem 1.25rem;
}
.contact-section .section-title {
    color: #1e100c;
}
.contact-section .section-subtitle {
    color: #4b5563;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-question:hover {
    background: #1e100c;
	background-image: radial-gradient(circle at 15% 50%, rgba(232, 106, 36, 0.12) 0%, transparent 65%);
    color: #fff;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: #111827;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: var(--font-body);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 106, 36, 0.1);
    border-radius: 50%;
    padding: 6px;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
}
.faq-item.active .faq-question {
    background: #1e100c;
	background-image: radial-gradient(circle at 15% 50%, rgba(232, 106, 36, 0.12) 0%, transparent 65%);
    color: #fff;
}
.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.contact-form-card {
    background: #1e100c;
	background-image: radial-gradient(circle at 15% 50%, rgba(232, 106, 36, 0.12) 0%, transparent 65%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.contact-form-card .form-title {
    color: #ffffff;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
}
.contact-form-card .form-desc {
    color: #a3978c;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.custom-contact-form .form-group {
    margin-bottom: 1.25rem;
}
.custom-contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #d1d5db;
    font-weight: 500;
}
.custom-contact-form .form-control {
    width: 100%;
    background: #251816;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #ffffff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.2s ease;
}
.custom-contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px rgba(232, 106, 36, 0.15);
}
.contact-submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), #ff8a4c);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(232, 106, 36, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff8a4c, var(--primary));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}
.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(232, 106, 36, 0.6);
}
.contact-submit-btn:hover::before {
    opacity: 1;
}
.contact-submit-btn svg {
    transition: transform 0.3s ease;
}
.contact-submit-btn:hover svg {
    transform: translateX(4px) translateY(-4px);
}
@media (max-width: 1024px) {
    .order-flow-grid {
        grid-template-columns: 1fr;
    }
    .order-summary-sidebar {
        position: static;
    }
    .order-products-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 640px) {
    .step-progress-name {
        display: none;
    }
    .success-details-grid {
        grid-template-columns: 1fr;
    }
    .delivery-map-col {
        min-height: 0 !important;
    }
    .delivery-map-card {
        height: auto !important;
    }
    #delivery-leaflet-map {
        min-height: 0 !important;
        height: auto !important;
        aspect-ratio: 1 / 1;
    }
}

/* --- FEATURE CARD IMAGES --- */
.feature-card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}
.feature-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.feature-card:hover .feature-card-img {
    transform: scale(1.05);
}

/* --- CONVERSION SECTION --- */
.conversion-section {
    padding: 4rem 1.25rem;
    background-color: var(--off-white);
}
.conversion-box {
    background: linear-gradient(145deg, #3f2925 0%, var(--dark-bg) 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(45, 24, 16, 0.4);
    border: 1px solid #5c301c;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
}
.conversion-box::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232, 106, 36, 0.15) 0%, transparent 70%);
    transform: translate(30%, -30%);
    border-radius: 50%;
    pointer-events: none;
}
@media (min-width: 992px) {
    .conversion-box {
        flex-direction: row;
        align-items: center;
    }
}
.conversion-left {
    flex: 1;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2rem;
    position: relative;
}
@media (min-width: 992px) {
    .conversion-left {
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 0;
        padding-right: 2.5rem;
    }
}
.conversion-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #d14115 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(232, 106, 36, 0.3);
}
.conversion-icon-wrapper svg {
    stroke: white;
}
.conversion-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-transform: uppercase;
}
.conversion-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
}
.conversion-right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.conversion-text {
    font-size: 1rem;
    color: #e2d7cc;
    line-height: 1.6;
}
.conversion-text strong {
    color: white;
}
.conversion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
@media (min-width: 640px) {
    .conversion-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.conv-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.conv-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    background: rgba(232, 106, 36, 0.1);
}
.conv-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #a89a8c;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.conv-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
}
.conversion-info {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #a89a8c;
    font-style: italic;
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--primary);
}
.conversion-info svg {
    stroke: var(--primary);
    margin-top: 2px;
}

/* --- ZIG ZAG WHY US SECTION --- */
.why-us-page-section {
    padding: 1rem 1.25rem;
    background-color: white;
}
.why-us-page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--dark-bg);
}
.zig-zag-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 5rem;
}
.zig-zag-row:last-child {
    margin-bottom: 0;
}
.zig-zag-img-col, .zig-zag-text-col {
    width: 100%;
}
.zig-zag-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}
.zig-zag-img:hover {
    transform: scale(1.02);
}
.zig-zag-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-bg);
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.zig-zag-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
}
.zig-zag-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

@media (min-width: 768px) {
    .why-us-page-title {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .zig-zag-row {
        flex-direction: row;
        gap: 5rem;
    }
    .zig-zag-row.row-reverse {
        flex-direction: row-reverse;
    }
    .zig-zag-img-col, .zig-zag-text-col {
        width: 50%;
    }
    .zig-zag-title {
        font-size: 2.3rem;
    }
    .zig-zag-desc {
        font-size: 1.2rem;
    }
}

/* --- SCROLL ANIMATIONS --- */
.reveal-left, .reveal-right, .reveal-up, .reveal-pop, .reveal-fade {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity;
}
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-up { transform: translateY(60px); }
.reveal-pop { transform: scale(0.8); }
.reveal-fade { transform: none; }

.reveal-left.active, .reveal-right.active, .reveal-up.active, .reveal-fade.active {
    opacity: 1;
    transform: translate(0, 0);
}
.reveal-pop.active {
    opacity: 1;
    transform: scale(1);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
    background-color: var(--off-white);
    padding: 6rem 1.25rem;
    position: relative;
    overflow: hidden;
}
.newsletter-card {
    background: linear-gradient(145deg, var(--dark-bg) 0%, #3f2925 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}
.newsletter-flame {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    fill: var(--primary);
    opacity: 0.03;
    transform: rotate(-15deg);
    pointer-events: none;
}
.newsletter-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.newsletter-badge {
    background: rgba(232, 106, 36, 0.15);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(232, 106, 36, 0.3);
    margin-bottom: 1.5rem;
    display: inline-block;
}
.newsletter-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.newsletter-desc {
    color: #e2d7cc;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}
.newsletter-form {
    width: 100%;
    max-width: 500px;
}
.newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}
.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}
.newsletter-input::placeholder {
    color: rgba(255,255,255,0.5);
}
.newsletter-input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
}
.newsletter-submit {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
}
.newsletter-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-top: 1rem;
}
.newsletter-privacy svg {
    color: #10b981;
}

@media (min-width: 600px) {
    .newsletter-input-group {
        flex-direction: row;
        gap: 0.5rem;
        background: rgba(255,255,255,0.05);
        padding: 0.5rem;
        border-radius: 999px;
        border: 1px solid rgba(255,255,255,0.1);
    }
    .newsletter-input {
        border: none;
        background: transparent;
        margin-bottom: 0;
    }
    .newsletter-input:focus {
        border: none;
        background: transparent;
    }
    .newsletter-submit {
        width: auto;
    }
    .newsletter-title {
        font-size: 3rem;
    }
}
