/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1C1C1C;
    background-color: #FAFAFA;
    padding-top: 110px; /* Account for floating header */
}

/* Header Styles */
#main-header {
    position: fixed;
    top: 8px;
    left: 0;
    margin: 0 16px;
    width: calc(100% - 32px);
    height: 90px;
    z-index: 9999;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Scroll Behavior */
#main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Aurora Background Blobs */
.aurora-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    animation: aurora-drift 12s infinite alternate ease-in-out;
    top: -150px;
    max-height: 200px;
    overflow: hidden;
}

.blob-1 {
    width: 300px;
    height: 200px;
    background-color: #F0B8A8;
    top: -100px;
    left: -80px;
}

.blob-2 {
    width: 300px;
    height: 200px;
    background-color: #F8DDD2;
    top: -80px;
    left: 35%;
    animation-delay: -2s;
}

.blob-3 {
    width: 300px;
    height: 200px;
    background-color: #F5EDE0;
    top: -100px;
    right: -80px;
    animation-delay: -4s;
}

@keyframes aurora-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(20px, 40px) scale(1.1);
    }
}

/* Navbar Container */
.navbar {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.nav-logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
  background: transparent;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2D1B0E; /* Dark warm brown */
    font-size: 15px;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
    padding: 5px 0;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: #E8621A; /* Brand orange */
    background: rgba(232,98,26,0.1);
    border-radius: 20px;
    padding: 6px 14px;
}

/* Underline Animation */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #E8621A;
    transition: width 0.3s ease;
}

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

/* Active Link */
.nav-links a.active {
    color: #E8621A;
    font-weight: 700;
}

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

/* Right Icons */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #2D1B0E;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-btn:hover {
    color: #E8621A;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #E8621A;
    color: white;
    font-size: 11px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10000;
    position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Mobile Menu */
/* /* =============================
   MOBILE MENU — ACCORDION
   ============================= */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #FFFFFF;
  z-index: 99999;
  overflow-y: auto;
  padding: 80px 0 40px;
  box-shadow: 4px 0 40px rgba(0,0,0,0.12);
}

.mobile-menu.open {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #F5EDE0;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2D1B0E;
  transition: background 0.2s ease;
  z-index: 100000;
}

.mobile-menu-close:hover {
  background: #E8621A;
  color: white;
}

.mobile-nav-list {
  list-style: none;
  padding: 0 0 24px;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #F5EDE0;
}

.mobile-nav-link {
  display: block;
  padding: 18px 28px;
  font-size: 18px;
  font-weight: 700;
  color: #2D1B0E;
  text-decoration: none;
  transition: color 0.2s ease,
    background 0.2s ease;
}

.mobile-nav-link:hover {
  color: #E8621A;
  background: #FDF8F3;
}

/* Accordion group */
.mobile-nav-group {
  border-bottom: 1px solid #F5EDE0;
}

.mobile-nav-group-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: #2D1B0E;
  font-family: 'Inter', sans-serif;
  text-align: left;
  transition: color 0.2s ease,
    background 0.2s ease;
}

.mobile-nav-group-btn:hover {
  color: #E8621A;
  background: #FDF8F3;
}

.mobile-nav-group-btn.active {
  color: #E8621A;
}

.mobile-nav-arrow {
  font-size: 12px;
  color: #E8621A;
  transition: transform 0.3s ease;
  display: inline-block;
}

.mobile-nav-group-btn.active 
  .mobile-nav-arrow {
  transform: rotate(90deg);
}

/* Sub menu hidden by default */
.mobile-nav-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease,
    padding 0.3s ease;
  background: #FDF8F3;
}

.mobile-nav-sub.open {
  max-height: 300px;
  padding-bottom: 8px;
}

.mobile-nav-sublink {
  display: block;
  padding: 9px 28px 9px 40px;
  font-size: 15px;
  font-weight: 500;
  color: #5C3D2E;
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.mobile-nav-sublink::before {
  content: '—';
  position: absolute;
  left: 24px;
  color: #E8621A;
  font-size: 12px;
}

.mobile-nav-sublink:hover {
  color: #E8621A;
}

.mobile-menu-footer {
  padding: 24px 28px;
  border-top: 2px solid #F5EDE0;
}

.mobile-contact-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #E8621A;
  color: white;
  text-align: center;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.mobile-contact-btn:hover {
  background: #C44E0F;
}

.mobile-icons {
  display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #main-header {
        height: 70px;
        margin: 0 8px;
        width: calc(100% - 16px);
    }

    .navbar {
        padding: 0 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .nav-logo img {
        height: 45px;
    }

    .nav-links {
        display: none !important;
    }

    .nav-icons {
        display: flex !important;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }

    .icon-btn {
        display: none !important;
    }

    .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        color: #2D1B0E;
    }

    .hamburger span {
        display: block !important;
        width: 22px;
        height: 2px;
        background: #2D1B0E;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
}

/* Hamburger Animation */
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Premium Footer Styles */
#main-footer {
    background-color: #FDF8F3;
    /* very subtle warm texture using linear gradient */
    background-image: radial-gradient(circle at center, rgba(0,0,0,0.01) 0%, transparent 100%);
    color: #5C3D2E;
    position: relative;
    padding-top: 80px;
}

.footer-top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E8621A, #F5EDE0, #E8621A);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Column 1: Brand */
.footer-logo {
    height: 60px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-style: italic;
    font-size: 14px;
    color: #8B6355;
    margin-bottom: 15px;
    margin-top: 0;
}

.footer-desc {
    font-size: 13px;
    color: #8B6355;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(232,98,26,0.3);
    color: #E8621A;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
    background-color: #E8621A;
    border-color: #E8621A;
    color: white;
}

/* Headings */
.footer-heading {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: #E8621A;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    margin-top: 0;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #E8621A;
}

/* Lists and Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    line-height: 2.2;
}

.footer-links a {
    color: #5C3D2E;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #E8621A;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    content: '→';
    margin-right: 5px;
}

/* Contact Info */
.footer-contact {
    margin-bottom: 25px;
}

.footer-contact p {
    font-size: 14px;
    color: #5C3D2E;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}

/* Newsletter */
.footer-newsletter h5 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #E8621A;
    margin-bottom: 5px;
    margin-top: 0;
}

.footer-newsletter p {
    font-size: 12px;
    color: #8B6355;
    margin-bottom: 15px;
    margin-top: 0;
}

.newsletter-form {
    display: flex;
    width: 100%;
}

.newsletter-form input {
    background: white;
    border: 1px solid rgba(232,98,26,0.3);
    color: #2D1B0E;
    border-radius: 25px 0 0 25px;
    padding: 12px 20px;
    outline: none;
    flex: 1;
    min-width: 0;
}

.newsletter-form input::placeholder {
    color: rgba(45, 27, 14, 0.5);
}

.newsletter-form button {
    background: #E8621A;
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #C44E0F;
}

/* Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(232,98,26,0.15);
    background-color: #F5EDE6;
    padding: 24px 0;
    margin-top: 40px;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.footer-bottom p {
    font-size: 13px;
    color: #8B6355;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: #8B6355;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #E8621A;
}

.footer-bottom-links span {
    color: #8B6355;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

/* --- PRODUCTS PAGE --- */
.page-hero-banner {
    background: linear-gradient(135deg, #F5EDE0 0%, #FFF3E8 100%);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}
.breadcrumb {
    font-size: 14px;
    color: #B8A99A;
    margin-bottom: 12px;
}
.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    color: #2D1B0E;
    margin-bottom: 12px;
}
.page-subtitle {
    font-size: 18px;
    color: #8B6355;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Tabs */
.filter-tabs-container {
    background: white;
    position: sticky;
    top: 90px;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 16px 0;
}
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.filter-tab {
    background: transparent;
    color: #2D1B0E;
    border: 1px solid transparent;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-tab:hover {
    border-color: #E8621A;
}
.filter-tab.active {
    background: #E8621A;
    color: white;
    border-color: #E8621A;
}

/* Products Grid */
.products-grid-section {
    padding: 60px 0;
}
.product-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
@media (max-width: 992px) {
    .product-grid-main { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .product-grid-main { grid-template-columns: 1fr; }
    .filter-tabs-container { top: 70px; }
}

/* Badge colors */
.badge-green { background: #2D1B0E; color: white; }
.badge-red { background: #E8621A; color: white; }
.badge-blue { background: #1C1C1C; color: white; }

.product-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  position: relative;
  display: block !important;
  opacity: 1 !important;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(232,98,26,0.15);
}
.product-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-card .card-body {
  padding: 24px;
}
.product-card .card-size {
  font-size: 12px;
  color: #E8621A;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.product-card .card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #2D1B0E;
  margin-bottom: 10px;
}
.product-card .card-desc {
  font-size: 14px;
  color: #8B6355;
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-card .card-price {
  font-size: 22px;
  font-weight: 700;
  color: #E8621A;
  margin-bottom: 16px;
}
.product-card .btn-view {
  width: 100%;
  padding: 12px;
  background: #E8621A;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.product-card .btn-view:hover {
  background: #C44E0F;
}

/* --- ABOUT US PAGE --- */
/* Section 2: Our Story */
.our-story-section {
    background: white;
    padding: 100px 0;
}
.our-story-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}
.story-label {
    font-size: 12px;
    color: #E8621A;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
}
.story-heading {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2D1B0E;
    margin-bottom: 24px;
    line-height: 1.2;
}
.story-content p {
    font-size: 16px;
    color: #5C3D2E;
    line-height: 1.8;
    margin-bottom: 16px;
}
.story-image-wrap {
    position: relative;
}
.story-main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: block;
}
.story-badge-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.story-badge-card h4 {
    color: #E8621A;
    font-size: 16px;
    margin-bottom: 4px;
}
.story-badge-card p {
    font-size: 13px;
    color: #8B6355;
    margin: 0;
}

/* Section 3: Stats */
.stats-section {
    background: #E8621A;
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    color: white;
}
.stat-item {
    border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child {
    border-right: none;
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* Section 4: Values */
.values-section {
    background: #FDF8F3;
    padding: 100px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.value-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}
.value-card:hover {
    transform: translateY(-8px);
}
.value-icon {
    width: 72px;
    height: 72px;
    background: rgba(232,98,26,0.1);
    color: #E8621A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}
.value-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #2D1B0E;
    margin-bottom: 16px;
}
.value-desc {
    font-size: 15px;
    color: #8B6355;
    line-height: 1.6;
}

/* Section 5: Products Overview */
.products-overview-section {
    background: white;
    padding: 100px 0;
}
.overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}
.overview-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.overview-list {
    list-style: none;
    padding: 0;
}
.overview-list li {
    padding: 12px 0;
    border-bottom: 1px solid #F5EDE0;
    display: flex;
    align-items: center;
    gap: 12px;
}
.overview-list .check {
    color: #E8621A;
    font-weight: bold;
}
.overview-list .item-name {
    font-weight: 600;
    color: #2D1B0E;
    font-size: 16px;
}

/* Section 6: Photo Gallery Strip */
.about-gallery-section {
    background: #F5EDE0;
    padding: 100px 0;
}
.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.about-gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.3s ease;
}
.about-gallery-grid img:hover {
    transform: scale(1.03);
}

/* Section 7: Mission */
.mission-section {
    background: linear-gradient(135deg, #2D1B0E, #5C3D2E);
    padding: 100px 0;
    color: white;
}
.mission-content {
    max-width: 800px;
    margin: 0 auto;
}
.quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: 120px;
    color: #E8621A;
    line-height: 1;
    margin-bottom: -20px;
}
.mission-quote {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
}
.mission-author {
    color: #E8621A;
    font-size: 16px;
    font-weight: 600;
}

/* About Us Responsive Overrides */
@media (max-width: 992px) {
    .our-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-badge-card { left: 20px; }
    .overview-grid { grid-template-columns: 1fr; }
    .about-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .stat-item { border: none; }
    .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
    .mission-quote { font-size: 24px; }
    .about-gallery-grid { grid-template-columns: 1fr; }
}

/* --- GALLERY PAGE --- */
.masonry-gallery-section {
    background: white;
    padding: 60px 0;
}
.gallery-grid {
  columns: 3;
  column-gap: 20px;
  padding: 60px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.gallery-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
  border-radius: 16px;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,27,14,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-caption p {
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 10px;
}
.gallery-btn {
  background: #E8621A;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.3s ease;
}
.gallery-btn:hover {
  background: #C44E0F;
}

/* Instagram CTA Strip */
.ig-strip-section {
    background: #F5EDE0;
    padding: 60px 0;
}
.ig-icon {
    font-size: 52px;
    margin-bottom: 12px;
}
.ig-heading {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2D1B0E;
    margin-bottom: 12px;
}
.ig-subtext {
    font-size: 16px;
    color: #8B6355;
}

@media (max-width: 768px) {
  .gallery-grid {
    columns: 2;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }
}

/* --- CONTACT PAGE --- */
.contact-main-section {
    background: white;
    padding: 100px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
}
.contact-label {
    font-size: 12px;
    color: #E8621A;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
}
.contact-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #2D1B0E;
    margin-bottom: 16px;
}
.contact-subtext {
    font-size: 16px;
    color: #8B6355;
    margin-bottom: 32px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form .form-group {
  margin-bottom: 20px;
}
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2D1B0E;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  color: #2D1B0E;
  background: #F5F5F5;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  font-family: 'Inter', sans-serif;
  outline: none;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: #EFEFEF;
  box-shadow: 0 0 0 3px rgba(232,98,26,0.15);
}
.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}
.btn-submit {
  width: 100%;
  padding: 16px;
  background: #E8621A;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}
.btn-submit:hover {
  background: #C44E0F;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #FDF8F3;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid #F0E4D7;
  transition: box-shadow 0.3s ease;
}
.contact-info-card:hover {
  box-shadow: 0 8px 30px rgba(232,98,26,0.1);
}
.contact-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,98,26,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #E8621A;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.contact-info-card p {
  font-size: 15px;
  color: #2D1B0E;
  margin-bottom: 4px;
}
.contact-info-card span {
  font-size: 13px;
  color: #8B6355;
}
.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.social-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(232,98,26,0.3);
    color: #E8621A;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}
.social-circle:hover {
    background: #E8621A;
    color: white;
}

/* FAQ section */
.faq-teaser-section {
    background: #F5EDE0;
    padding: 80px 0;
}
.accordion-container {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}
.accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.accordion-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: white;
}
.accordion-header h3 {
    font-size: 16px;
    color: #2D1B0E;
    font-weight: 600;
    margin: 0;
}
.accordion-arrow {
    color: #E8621A;
    transition: transform 0.3s ease;
    font-size: 12px;
}
.accordion-content {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.accordion-content p {
    color: #8B6355;
    font-size: 15px;
    line-height: 1.6;
    padding-bottom: 24px;
}
.accordion-item.open .accordion-content {
    max-height: 200px;
}
.accordion-item.open .accordion-arrow {
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* --- HOW IT WORKS PAGE --- */
.hiw-steps-section {
    background: white;
    padding: 100px 0;
}
.hiw-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2D1B0E;
    margin-bottom: 16px;
}
.hiw-subtitle {
    font-size: 18px;
    color: #8B6355;
}
.step-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid #F0E4D7;
  max-width: 1100px;
  margin: 0 auto;
}
.step-section:last-child {
  border-bottom: none;
}
.step-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.step-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.step-img:hover img {
  transform: scale(1.04);
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: #E8621A;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: -40px;
  display: block;
}
.step-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #2D1B0E;
  margin-bottom: 16px;
}
.step-desc {
  font-size: 16px;
  color: #5C3D2E;
  line-height: 1.8;
  margin-bottom: 24px;
}
.step-highlight {
  background: rgba(232,98,26,0.08);
  border-left: 3px solid #E8621A;
  border-radius: 0 12px 12px 0;
  padding: 16px 20px;
  font-size: 14px;
  color: #E8621A;
  font-weight: 600;
}

/* Requirements section */
.hiw-req-section {
    background: #F5EDE0;
    padding: 100px 0;
}
.req-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.req-card {
    background: white;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    text-align: left;
}
.req-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2D1B0E;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.req-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.req-card li {
    font-size: 15px;
    color: #5C3D2E;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.req-check {
    color: #E8621A;
    font-weight: bold;
}

.bg-white {
    background-color: #ffffff;
}

@media (max-width: 992px) {
    .req-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
  .step-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 20px;
  }
  .step-section.reverse .step-img {
    order: -1;
  }
}

/* --- BULK ORDERS PAGE --- */
.bulk-intro-section {
    background: white;
    padding: 100px 0;
}
.bulk-intro-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}
.bulk-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bulk-benefits-list li {
    font-size: 16px;
    color: #2D1B0E;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.bulk-intro-image-wrap {
    position: relative;
}
.bulk-intro-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: block;
}
.bulk-floating-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.bulk-floating-badge strong {
    display: block;
    color: #E8621A;
    font-size: 16px;
    margin-bottom: 4px;
}
.bulk-floating-badge span {
    font-size: 14px;
    color: #8B6355;
}

.bulk-products-section {
    background: #FDF8F3;
    padding: 100px 0;
}
.bulk-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.bulk-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}
.badge-orange { background: rgba(232,98,26,0.1); color: #E8621A; }
.badge-blue { background: rgba(0,102,204,0.1); color: #0066CC; }
.badge-green { background: rgba(34,139,34,0.1); color: #228B22; }

.bulk-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
.bulk-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(232,98,26,0.12);
}
.bulk-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.bulk-card-body {
  padding: 28px;
}
.bulk-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #2D1B0E;
  margin-bottom: 12px;
}
.bulk-card-desc {
  font-size: 14px;
  color: #8B6355;
  line-height: 1.7;
  margin-bottom: 20px;
}
.bulk-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.bulk-features li {
  font-size: 14px;
  color: #5C3D2E;
  padding: 6px 0;
  border-bottom: 1px solid #F5EDE0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bulk-features li::before {
  content: "✓";
  color: #E8621A;
  font-weight: 700;
}
.bulk-min-order {
  font-size: 13px;
  color: #E8621A;
  font-weight: 700;
  margin-bottom: 16px;
  background: rgba(232,98,26,0.08);
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-block;
}
.btn-quote {
  width: 100%;
  padding: 13px;
  background: #E8621A;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-quote:hover {
  background: #C44E0F;
}

.pricing-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  text-align: left;
}
.pricing-table thead {
  background: #E8621A;
  color: white;
}
.pricing-table thead th {
  padding: 20px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #F5EDE0;
  transition: background 0.2s ease;
}
.pricing-table tbody tr:hover {
  background: #FDF8F3;
}
.pricing-table tbody td {
  padding: 18px 24px;
  font-size: 15px;
  color: #2D1B0E;
}
.pricing-table .featured-row {
  background: rgba(232,98,26,0.06);
  font-weight: 600;
}
.pricing-table .price-highlight {
  color: #E8621A;
  font-weight: 700;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.use-case-card {
    background: white;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(232,98,26,0.08);
}
.use-case-icon {
    font-size: 56px;
    margin-bottom: 20px;
    line-height: 1;
}
.use-case-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #2D1B0E;
    margin-bottom: 12px;
}
.use-case-desc {
    font-size: 14px;
    color: #8B6355;
    line-height: 1.6;
}

.bulk-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .bulk-intro-grid {
        grid-template-columns: 1fr;
    }
    .bulk-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .bulk-cards-grid {
        grid-template-columns: 1fr;
    }
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    .pricing-table thead {
        display: none;
    }
    .pricing-table tbody tr {
        display: block;
        padding: 16px;
    }
    .pricing-table tbody td {
        display: block;
        padding: 8px 0;
        text-align: right;
    }
    .pricing-table tbody td::before {
        content: attr(data-label);
        float: left;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 12px;
    }
}

/* --- 3D PRODUCTS PAGE --- */
.product-feature-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 450px;
}
.product-feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #2D1B0E;
  margin-bottom: 16px;
}
.product-feature-card.reverse {
  direction: rtl;
}
.product-feature-card.reverse > * {
  direction: ltr;
}
.product-feature-img {
  overflow: hidden;
}
.product-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-feature-card:hover .product-feature-img img {
  transform: scale(1.04);
}
.product-feature-body {
  padding: 50px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.color-options-wrap {
  display: flex;
  align-items: center;
  margin: 16px 0;
}
.color-options {
  display: flex;
  gap: 10px;
  align-items: center;
}
.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.color-dot:hover {
  transform: scale(1.2);
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gallery-strip-item {
    border-radius: 16px;
    overflow: hidden;
}
.gallery-strip-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}
.gallery-strip-item:hover img {
    transform: scale(1.06);
}

.order-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.order-steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed #F0E4D7;
    z-index: 0;
}
.order-step {
    position: relative;
    z-index: 1;
    background: white;
}
.order-step-num {
    width: 48px;
    height: 48px;
    background: #E8621A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 8px white;
}
.order-step-icon {
    font-size: 40px;
    margin-bottom: 16px;
}
.order-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #2D1B0E;
    margin-bottom: 12px;
}
.order-step-desc {
    font-size: 14px;
    color: #8B6355;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }
    .order-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
    .order-steps-grid::before {
        display: none;
    }
}
@media (max-width: 768px) {
  .product-feature-card {
    grid-template-columns: 1fr;
  }
  .product-feature-card.reverse {
    direction: ltr;
  }
  .product-feature-body {
    padding: 30px 24px;
  }
  .gallery-strip {
      grid-template-columns: 1fr;
  }
  .order-steps-grid {
      grid-template-columns: 1fr;
  }
}

/* --- FAQ PAGE --- */
.faq-search {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}
.faq-search input {
  width: 100%;
  padding: 18px 20px 18px 52px;
  border: 2px solid #F0E4D7;
  border-radius: 50px;
  font-size: 16px;
  color: #2D1B0E;
  background: #FDF8F3;
  outline: none;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}
.faq-search input:focus {
  border-color: #E8621A;
}
.faq-search .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
}

.faq-category {
  margin-bottom: 48px;
}
.faq-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #2D1B0E;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #F0E4D7;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-category-title span {
  font-size: 28px;
}

/* These override existing accordion styles to match FAQ specific requirements */
.accordion-item {
  border: 1px solid #F0E4D7;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.accordion-item:hover {
  box-shadow: 0 4px 20px rgba(232,98,26,0.08);
}
.accordion-header {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background 0.3s ease;
  font-size: 16px;
  font-weight: 600;
  color: #2D1B0E;
  font-family: 'Inter', sans-serif;
}
.accordion-header:hover {
  background: #FDF8F3;
}
.accordion-item.open .accordion-header {
  background: rgba(232,98,26,0.05);
  color: #E8621A;
}
.accordion-arrow {
  font-size: 18px;
  color: #E8621A;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-item.open .accordion-arrow {
  transform: rotate(180deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  background: white;
}
.accordion-item.open .accordion-body {
  max-height: 300px;
  padding: 0 24px 20px;
}
.accordion-body p {
  font-size: 15px;
  color: #5C3D2E;
  line-height: 1.8;
  padding-top: 12px;
  border-top: 1px solid #F5EDE0;
}

@media (max-width: 768px) {
  .still-questions-section > .container > div {
    grid-template-columns: 1fr !important;
  }
}

/* --- BLOG PAGE --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(232,98,26,0.12);
}
.blog-card-img {
  overflow: hidden;
  height: 220px;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}
.blog-card-body {
  padding: 28px;
}
.blog-category {
  font-size: 12px;
  font-weight: 700;
  color: #E8621A;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #2D1B0E;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-excerpt {
  font-size: 14px;
  color: #8B6355;
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-meta {
  font-size: 13px;
  color: #B8A99A;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-read-more {
  display: inline-block;
  padding: 10px 24px;
  background: transparent;
  color: #E8621A;
  border: 2px solid #E8621A;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.btn-read-more:hover {
  background: #E8621A;
  color: white;
}

.blog-newsletter-form {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}
.blog-newsletter-form input {
  background: white;
  border: none;
  border-radius: 50px 0 0 50px;
  padding: 16px 24px;
  width: 400px;
  font-size: 16px;
  outline: none;
  font-family: 'Inter', sans-serif;
}
.blog-newsletter-form button {
  background: #E8621A;
  color: white;
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.3s ease;
}
.blog-newsletter-form button:hover {
  background: #c95517;
}

@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .blog-newsletter-form input {
    width: 100%;
    border-radius: 50px;
    margin-bottom: 16px;
    box-sizing: border-box;
  }
  .blog-newsletter-form button {
    width: 100%;
    border-radius: 50px;
    box-sizing: border-box;
  }
}

/* --- POLICY PAGES --- */
.policy-content {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #5C3D2E;
}
.policy-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #2D1B0E;
  margin-top: 40px;
  margin-bottom: 16px;
}
.policy-content p {
  margin-bottom: 20px;
}
.policy-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}
.policy-content ul li {
  margin-bottom: 8px;
}

.shipping-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.shipping-card {
  background: white;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.shipping-card:hover {
  transform: translateY(-5px);
}
.shipping-icon {
  font-size: 52px;
  margin-bottom: 16px;
}
.shipping-stat {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #E8621A;
  margin-bottom: 8px;
}
.shipping-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #8B6355;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .shipping-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .shipping-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* --- GLOBAL UTILITIES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}
.btn-primary {
    background-color: #E8621A;
    color: #fff;
    border: 2px solid #E8621A;
}
.btn-primary:hover {
    background-color: #C44E0F;
    border-color: #C44E0F;
}
.btn-secondary {
    background-color: transparent;
    color: #E8621A;
    border: 2px solid #E8621A;
}
.btn-secondary:hover {
    background-color: rgba(232, 98, 26, 0.05);
}
.btn-outline {
    background-color: transparent;
    color: #E8621A;
    border: 1px solid #E8621A;
    padding: 12px 24px;
}
.btn-outline:hover {
    background-color: rgba(232, 98, 26, 0.05);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Typography */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #2D1B0E;
    text-align: center;
    margin-bottom: 15px;
}
.section-subtitle {
    font-size: 18px;
    color: #5C3D2E;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* --- SECTION 1: HERO --- */
.hero-section {
    min-height: 90vh;
    background: linear-gradient(135deg, #FDF8F3 0%, #F5EDE0 50%, #FFF3E8 100%);
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    overflow: hidden;
}
.hero-container {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    gap: 40px;
}
.hero-badge {
    display: inline-block;
    background: rgba(232,98,26,0.1);
    color: #E8621A;
    border-radius: 50px;
    padding: 6px 16px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}
.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 62px;
    color: #2D1B0E;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 20px;
    color: #5C3D2E;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 550px;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}
.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero-trust span {
    font-size: 14px;
    color: #5C3D2E;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-images {
    position: relative;
    width: 100%;
    height: 500px;
}
.hero-img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    animation: float 3s infinite ease-in-out alternate;
}
.hero-img-main {
    width: 320px;
    height: 400px;
    object-fit: cover;
    top: 50px;
    left: 20px;
    z-index: 2;
}
.hero-img-tr {
    width: 180px;
    height: 180px;
    object-fit: cover;
    top: 0;
    right: 0;
    z-index: 1;
    animation-delay: 0.5s;
}
.hero-img-bl {
    width: 200px;
    height: 200px;
    object-fit: cover;
    bottom: 0;
    left: -30px;
    z-index: 3;
    animation-delay: 1s;
}
@keyframes float {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-8px); }
}

/* --- SECTION 2: FEATURES --- */

/* --- SECTION 3: WHY CHOOSE US --- */
.features-section {
    background-color: white;
    padding: 100px 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.feature-icon {
    width: 72px;
    height: 72px;
    background: rgba(232,98,26,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}
.feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2D1B0E;
    margin-bottom: 12px;
}
.feature-desc {
    font-size: 14px;
    color: #5C3D2E;
    line-height: 1.5;
}

/* --- SECTION 4: FEATURED PRODUCTS --- */
.products-section {
    background-color: #FDF8F3;
    padding: 100px 0;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.product-card:hover .product-img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}
.badge-orange { background: #E8621A; color: white; }
.badge-neutral { background: white; color: #2D1B0E; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.badge-purple { background: #E8621A; color: white; }
.product-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2D1B0E;
    margin-bottom: 10px;
}
.product-desc {
    font-size: 14px;
    color: #5C3D2E;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

/* --- SECTION 5: HOW IT WORKS --- */
.how-it-works-section {
    background-color: #F5EDE0;
    padding: 100px 0;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    text-align: center;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    height: 2px;
    border-top: 2px dashed rgba(232,98,26,0.3);
    z-index: 0;
}
.step-card {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #E8621A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(232,98,26,0.3);
    position: relative;
    z-index: 10;
}

/* Large background step numbers - now visible */
.step-card::before {
    content: attr(data-step);
    position: absolute;
    font-size: 120px;
    font-weight: 700;
    color: #1C1C1C;
    opacity: 0.2;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    font-family: 'Playfair Display', serif;
}
.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
}
.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #2D1B0E;
    margin-bottom: 12px;
}
.step-desc {
    font-size: 15px;
    color: #5C3D2E;
    line-height: 1.5;
    max-width: 280px;
    margin: 0 auto;
}

/* --- SECTION 6: GALLERY STRIP --- */
.gallery-section {
    background-color: white;
    padding: 100px 0;
    overflow: hidden;
}
.gallery-strip {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.gallery-strip::-webkit-scrollbar {
    display: none;
}
.gallery-img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}
.gallery-img:hover {
    transform: scale(1.03);
}

/* --- SECTION 7: TESTIMONIALS --- */
.testimonials-section {
    background-color: #FDF8F3;
    padding: 100px 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.stars {
    color: #E8621A;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.quote {
    font-size: 16px;
    font-style: italic;
    color: #5C3D2E;
    line-height: 1.6;
    margin-bottom: 24px;
}
.author {
    font-weight: 700;
    color: #2D1B0E;
    margin-bottom: 4px;
}
.author-role {
    font-size: 13px;
    color: #E8621A;
}

/* --- SECTION 8: CTA BANNER --- */
.cta-section {
    background: linear-gradient(135deg, #E8621A, #F5A623);
    padding: 100px 0;
    color: white;
}
.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}
.cta-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}
.btn-cta {
    background: white;
    color: #E8621A;
    padding: 16px 40px;
}
.btn-cta:hover {
    background: #f8f8f8;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .hero-trust { align-items: center; }
    .hero-images { height: 400px; max-width: 500px; margin: 0 auto; }
    .hero-img-main { width: 280px; height: 350px; left: 10%; }
    .hero-img-tr { width: 140px; height: 140px; right: 5%; }
    .hero-img-bl { width: 160px; height: 160px; left: 0; bottom: 20px; }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; gap: 60px; }
    .steps-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 42px; }
    .hero-buttons { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .cta-title { font-size: 36px; }
}


/* Dropdown */
.nav-more { position: relative; }
.more-btn { background: none; border: none; cursor: pointer; font: inherit; color: inherit; padding: 4px 8px; font-weight: 600; font-size: 15px; color: #2D1B0E; }
.more-btn:hover { color: #E8621A; }
.more-dropdown { 
  visibility: hidden;
  opacity: 0;
  position: absolute; 
  top: calc(100% + 8px); 
  right: 0; 
  background: white; 
  border-radius: 12px; 
  box-shadow: 0 8px 32px rgba(0,0,0,0.14); 
  min-width: 180px; 
  padding: 8px 0; 
  list-style: none; 
  z-index: 99999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-more:hover .more-dropdown, .nav-more:focus-within .more-dropdown { 
  visibility: visible;
  opacity: 1;
}
.more-dropdown li a { display: block; padding: 10px 20px; color: #333; text-decoration: none; }
.more-dropdown li a:hover { background: #f5f5f5; }

/* Hamburger fix */
.hamburger span { display: block; width: 22px; height: 2px; background: #2D1B0E; border-radius: 2px; margin: 0; transition: all 0.3s ease; }

/* Mobile */
@media (max-width: 900px) {
    .nav-links { display: none !important; }
    .nav-icons { display: flex !important; }
    .hamburger { display: flex !important; }
}

.currency-switcher select {
  background: rgba(232,98,26,0.08);
  border: 1px solid rgba(232,98,26,0.3);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #2D1B0E;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.3s ease;
}
.currency-switcher select:hover {
  background: rgba(232,98,26,0.15);
  border-color: #E8621A;
}
@media (max-width: 768px) {
  .currency-switcher { display: none; }
}

.happy-customers-stat {
  text-align: center;
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(232,98,26,0.06);
  border-radius: 16px;
}
.happy-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: #E8621A;
  margin-bottom: 8px;
}
.happy-stat-label {
  font-size: 16px;
  color: #5C3D2E;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
