@import url('https://fonts.googleapis.com/css2?family=Rammetto+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rammetto+One&family=Tagesschrift&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
    visibility: visible; /* Ensure body content is visible */
}

/* Alert (for flashed messages) */
.alert {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

.alert p {
    margin: 0;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #8B4513;
    color: white;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.navbar .logo {
    font-family: "Rammetto One", sans-serif;
    font-size: 1.5rem;
    color: white;
}
.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin-top: 8px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 300;
}

.nav-links li a,
.side-nav-links li a {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ff9800;
}

.account-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #8B4513;
    color: rgb(255, 255, 255);
    min-width: 150px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 20;
    flex-direction: column;
    padding: 0.5rem 0;
}

.dropdown-menu a {
    padding: 0.5rem 1rem;
    display: block;
    color: black;
    text-decoration: none;
    font-weight: 400;
    transition: background 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.3rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

/* Side Menu (hidden by default) */
.side-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background-color: #8B4513;
    color: white;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    padding: 2rem 1rem;
}

.side-menu.open {
    right: 0;
}

/* Close button inside side menu */
.close-menu {
    background: transparent;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    display: block;
    margin-left: auto;
}

/* Style for the menu links in side menu */
.side-nav-links {
    list-style: none;
    margin-top: 2rem;
    padding: 0;
}

.side-nav-links li {
    margin-bottom: 1.5rem;
}

.side-nav-links li a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
}

/* Hero Section - Fixed for Visibility */
.hero {
    background: url('/static/images/4.jpg') no-repeat center center/cover; /* Absolute path fix */
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    z-index: 1;
    overflow: visible; /* Ensure no hidden overflow */
    min-height: 500px; /* Fallback height if bg fails */
    background-color: #8B4513; /* Fallback color if image fails */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-overlay {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 12px;
    visibility: visible; /* Explicit visibility */
    opacity: 1;
    z-index: 2; /* Above overlay */
    position: relative;
    bottom: 10px;
}
.hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.hero-overlay p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}
.btn {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    background: white;
    color: #8B4513;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    border: 1px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}
.btn:hover {
    background: #e68900;
    color: white;
    transform: scale(1.05);
}
.btn.primary {
    background: #8B4513;
    color: white;
    border-color: #8B4513;
}
.btn.primary:hover {
    background: #6F370F;
    transform: translateY(-2px);
}
.btn.ghost {
    background: transparent;
    border: 1px solid rgba(139, 69, 19, 0.3);
    color: #8B4513;
}
.btn.ghost:hover {
    border-color: #8B4513;
    background: rgba(139, 69, 19, 0.08);
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
}



/* ══════════════════════════════════════════════════════════
   ABOUT SECTION - TABLET & MOBILE RESPONSIVE
   ══════════════════════════════════════════════════════════ */



/* Products Section (New Perfect Card Styles Integrated) */
.products {
    margin: 3rem auto;
    padding: 0 1rem;
    max-width: 1200px;
    visibility: visible;
}
.products-header {
    text-align: center;
    margin-bottom: 2rem;
}
.products-header h2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    color: #8B4513;
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
}
.products-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #b8860b;
    margin: 0.5rem auto 0;
}
.products-header p {
    color: #555;
    font-size: 1rem;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.7rem;
}
.product-card {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.3rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(139,69,19,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(139,69,19,0.15);
}
.product-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(135deg, #f3eee9, #fefbf6);
}
.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    visibility: visible !important;
    opacity: 1 !important;
}
.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}
.product-image-wrapper img[src=""] {
    display: none;
}
.product-image-wrapper img:not([src]) {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300"><text y="150" font-size="20" text-anchor="middle" fill="%23666">No Image</text></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
    z-index: 2;
}
.product-badge.new { background: #1e8e3e; }
.product-badge.sold-out { background: #c62828; }
.product-info h3 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #5e2a04;
    font-size: 1.25rem;
    margin: 0 0 0.2rem 0;
    line-height: 1.3;
}
.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #8B4513;
    margin: 0 0 0.75rem 0;
}
.product-snippet {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 1rem 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-snippet a {
    color: #8B4513;
    font-weight: 600;
    text-decoration: none;
}
.product-snippet a:hover {
    text-decoration: underline;
}
.product-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
}
.product-muted {
    grid-column: span 2;
    text-align: center;
    font-weight: 600;
    color: #a37b5b;
    padding: 0.6rem 0;
    background: rgba(162, 123, 91, 0.1);
    border-radius: 6px;
}
.buy-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background-color: #8B4513;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.3s;
    z-index: 3;
    white-space: nowrap;
}
.buy-button:hover {
    background-color: #6F370F;
    transform: translateY(-2px);
}
.products-empty {
    text-align: center;
    padding: 50px 1rem;
    color: #666;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.products-empty h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #8B4513;
}
.products-empty p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Gallery Section */
.gallery {
    text-align: center;
    margin: 3rem 0;
}
.gallery h2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #8B4513;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gallery h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #b8860b;
    margin: 0.5rem auto 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
}
.insta-item {
    background: #eee;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #888;
}

/* Subscribe Section */
.subscribe {
    text-align: center;
    margin: 3rem 0;
}
.subscribe h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.subscribe p {
    font-size: 1rem;
    margin-bottom: 1rem;
}
.subscribe form {
    display: inline-flex;
    gap: 0.5rem;
}
.subscribe input[type="email"] {
    padding: 0.7rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
}
.subscribe button {
    padding: 0.7rem 1.2rem;
    background: #2e7d32;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}
.subscribe button:hover {
    background: #27672d;
}

/* Stay Connected Section */
.stay-connected {
    padding: 4rem 2rem;
    background: #fafafa;
    text-align: center;
}

.stay-connected h2 {
    font-size: 2.2rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.stay-connected h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #b8860b;
    margin: 0.5rem auto 0;
}

.stay-connected p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Email form */
email-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.email-form input {
    flex: 1 1 200px;
    min-width: 0;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
}

email-form button {
    flex: 0 0 auto;
    background: #8B4513;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

email-form button:hover {
    background: #a2740a;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-block;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s, opacity 0.2s;
}

.social-links a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.social-links .whatsapp { background: #25d366; }
.social-links .instagram { background: #e1306c; }
.social-links .facebook { background: #1877f2; }
.social-links .email { background: #444; }

/* Footer */
footer {
    background: #8B4513;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}
footer .footer-content p {
    margin: 0.5rem 0;
}

/* Product Detail Styles */
.product-detail {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  margin-bottom: 2rem;
}

.product-detail .product-images {
  flex: 1 1 360px;
  max-width: 430px;
  min-width: 260px;
  display: flex;
  align-items: flex-start;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    visibility: visible;
    opacity: 1;
}

.image-gallery {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.2s;
    visibility: visible;
}

.thumbnail:hover {
    transform: scale(1.1);
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: 1rem;
}

.product-info h1 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.price {
    font-size: 2rem;
    color: #8B4513;
    font-weight: bold;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.quantity-selector label {
    font-weight: bold;
    color: #8B4513;
}

.quantity-selector input {
    width: 60px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.buy-button {
    padding: 1rem 2rem;
    background-color: #8B4513;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    width: auto;
    align-self: flex-start;
}

.buy-button:hover {
    background-color: #6F370F;
    transform: translateY(-2px);
}

.out-of-stock {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Reviews Section */
.reviews-section {
    margin-top: 3rem;
    width: 100%;
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    visibility: visible;
}

.reviews-section h2 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
    text-align: center;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.review-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #8B4513;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: #333;
}

.review-author {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: 0;
    text-align: right;
}

/* Wide Screen/Desktop Fix (for PC screens >1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px; /* Slightly wider for large PCs */
    }
    .hero {
        background-size: cover; /* Ensure bg covers large screens */
    }
    .product-grid {
        grid-template-columns: repeat(4, 1fr); /* More columns on wide screens */
    }
    .product-image-wrapper {
        height: 240px; /* Taller images on desktop */
    }
}

/* Mobile/Tablet Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    .logo {
        font-size: 1.3rem;
    }
    .nav-links {
        display: none !important;
    }
    .menu-toggle {
        display: block !important;
    }
    .side-menu {
        width: 80%;
        right: -100%;
    }
    .side-menu.open {
        right: 0;
    }

    .products {
        padding: 0 0.5rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr)); /* 2 columns side-by-side on mobile */
        gap: 1rem;
    }
    .product-image-wrapper {
        height: 200px;
    }
    .product-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    .product-info h3 {
        font-size: 1.1rem;
    }
    .product-snippet {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    .product-actions {
        gap: 0.5rem;
    }
    .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    .buy-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        top: 0.75rem;
        right: 0.75rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .email-form {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .email-form input {
        width: 100%;
    }

    .product-detail {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    .product-image {
        max-width: 100%;
    }
    .main-image {
        height: 300px;
    }
    .image-gallery {
        justify-content: center;
    }
    .product-info {
        padding-left: 0;
    }
    .product-info h1 {
        font-size: 2rem;
    }
    .price {
        font-size: 1.5rem;
    }
    .description {
        font-size: 1rem;
    }
    .quantity-selector {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .buy-button {
        width: 100%;
        padding: 0.8rem;
    }

    .reviews-section {
        padding: 1rem;
        margin-top: 2rem;
    }
    .reviews-section h2 {
        font-size: 1.5rem;
    }
    .reviews-list {
        gap: 1rem;
    }
    .review-item {
        padding: 1rem;
    }
    .review-text {
        font-size: 0.95rem;
    }
    .review-author {
        text-align: left;
    }
    .product-detail-wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 2rem;
    }
    .main-image-container {
        height: 400px;
    }
    .product-info h1 {
        font-size: 2rem;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .reviews-container {
        padding: 1.5rem;
    }
    .reviews-header h2 {
        font-size: 1.5rem;
    }
    .review-card {
        padding: 1rem;
    }
    .review-meta {
        flex-direction: column;
        gap: 0.25rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0.5rem;
    }
    .product-grid {
        grid-template-columns: 1fr; /* Single column on tiny screens */
        gap: 1rem;
    }
    .product-card {
        padding: 1rem;
    }
    .product-info h3 {
        font-size: 1.1rem;
    }
    .product-snippet {
        font-size: 0.85rem;
    }
    .product-image-wrapper {
        height: 180px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .hero-overlay h1 {
        font-size: 2rem;
    }
    .hero-overlay p {
        font-size: 1rem;
    }
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .main-image {
        height: 250px;
    }
    .product-info h1 {
        font-size: 1.8rem;
    }
    .price {
        font-size: 1.3rem;
    }
    .reviews-section h2 {
        font-size: 1.3rem;
    }
    .review-text {
        font-size: 0.95rem;
    }
    .main-image-container {
        height: 250px;
    }
    .product-info h1 {
        font-size: 1.8rem;
    }
    .price-wrapper {
        font-size: 1.5rem;
    }
    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .review-card {
        flex-direction: column;
        gap: 0.75rem;
    }
    .review-avatar {
        align-self: flex-start;
    }
}

/* productdetail.css - Dedicated styles for product detail page */

/* Assume these variables are in main style.css; duplicate here if needed */
:root {
  --primary: #8B4513;
  --primary-dark: #6F370F;
  --accent: #b8860b;
  --bg-light: #f9f9f9;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --success: #e6f4ea;
  --error: #fce8e6;
  --error-text: #d93025;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 24px rgba(139, 69, 19, 0.15);
  --transition: all 0.3s ease;
}

/* Page-specific container (extends main .container if needed) */
.product-page-container {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  padding: 0 1rem;
}

.breadcrumbs a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  text-decoration: underline;
  outline: 2px solid var(--primary);
}

.breadcrumbs span {
  color: var(--text-dark);
  font-weight: 600;
}

/* Product Detail Wrapper */
.product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50/50 split on desktop */
  gap: 3rem;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

/* Gallery (Left Column) */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image-container {
  width: 100%;
  height: 500px;
  background-color: #f4f4f4;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the container attractively */
  transition: var(--transition);
  cursor: pointer;
  filter: sepia(0.05) brightness(1.02); /* Subtle warm tone */
}

.main-image:hover,
.main-image:focus {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
  outline: none;
}

/* Fallback for no image */
.main-image[src="/static/images/placeholder.jpg"] {
  object-fit: contain;
  background: linear-gradient(45deg, #f0f0f0, #e8e8e8);
}

.thumbnail-list {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin; /* Slim scrollbar for Firefox */
  scrollbar-color: var(--primary) #f0f0f0;
}

.thumbnail-list::-webkit-scrollbar {
  height: 4px;
}

.thumbnail-list::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 2px;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.7;
  border: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0; /* Prevent squishing on scroll */
  filter: sepia(0.05);
}

.thumbnail:hover,
.thumbnail:focus,
.thumbnail.active {
  opacity: 1;
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
  outline: none;
}

/* Product Info (Right Column) */
.product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-header {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.8rem;
}

.in-stock {
  background: var(--success);
  color: #1e8e3e;
}

.out-stock {
  background: var(--error);
  color: var(--error-text);
}

.product-info h1 {
  font-family: "Rammetto One", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 1rem;
}

.price-wrapper {
  font-size: 2rem;
  color: var(--text-dark);
  font-weight: bold;
  margin-bottom: 1rem;
}

.price-wrapper .currency {
  font-size: 1.2rem;
  vertical-align: top;
  color: var(--primary);
  margin-right: 0.25rem;
}



.product-description {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.product-description p {
  margin: 0;
}

/* Purchase Actions */
.purchase-actions {
  background: #fcfcfc;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid #eee;
  margin-top: auto; /* Pushes to bottom on desktop */
}

.quantity-wrapper {
  margin-bottom: 1.5rem;
}

.quantity-wrapper label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  max-width: 200px; /* Prevent over-expansion */
}

.qty-selector button {
  background: #f0f0f0;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-selector button:hover,
.qty-selector button:focus {
  background: #ddd;
  outline: 2px solid var(--primary);
}

.qty-selector input {
  width: 60px;
  height: 40px;
  text-align: center;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;

}

.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-selector input:focus {
  outline: 2px solid var(--primary);
  border-radius: 4px;
}

.btn-add-to-cart {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-add-to-cart:hover,
.btn-add-to-cart:focus {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  outline: none;
}

.out-of-stock-message {
  color: var(--error-text);
  font-weight: 600;
  padding: 1rem;
  background: #fff0f0;
  border-radius: var(--radius);
  text-align: center;
  margin-top: auto;
}

.out-of-stock-message p {
  margin: 0;
}

/* Reviews Section */
.reviews-container {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 3rem 0;
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent);
}

.reviews-header h2 {
  color: var(--primary);
  font-family: "Rammetto One", sans-serif;
  font-size: 2rem;
  margin: 0;
}

.review-count {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

.review-card:hover {
  background: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.review-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.review-content {
  flex: 1;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.review-meta .author {
  font-weight: 600;
  color: var(--text-dark);
}

.review-card .text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.5;
  margin: 0;
}

.no-reviews {
  text-align: center;
  padding: 2rem;
  color: var(--text-light);
  font-style: italic;
}

.no-reviews p {
  margin: 0;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 900px) {
  .product-detail-wrapper {
      grid-template-columns: 1fr; /* Stack vertically */
      padding: 1.5rem;
      gap: 2rem;
  }

  .main-image-container {
      height: 400px;
  }

  .product-info h1 {
      font-size: 2rem;
  }

  .reviews-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-page-container {
      padding: 1rem;
  }

  .product-detail-wrapper {
      padding: 1rem;
      gap: 1.5rem;
  }

  .main-image-container {
      height: 300px;
  }

  .thumbnail {
      width: 60px;
      height: 60px;
  }

  .purchase-actions {
      position: sticky;
      bottom: 0;
      background: var(--white);
      box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
      margin: 0 -1rem -1rem -1rem; /* Bleed to edges on mobile */
      border-radius: var(--radius) var(--radius) 0 0;
      z-index: 50;
  }

  .reviews-container {
      padding: 1.5rem;
  }

  .reviews-header h2 {
      font-size: 1.5rem;
  }

  .review-card {
      padding: 1rem;
  }

  .review-meta {
      flex-direction: column;
      gap: 0.25rem;
      align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .main-image-container {
      height: 250px;
  }

  .product-info h1 {
      font-size: 1.8rem;
  }

  .price-wrapper {
      font-size: 1.5rem;
  }

  .reviews-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
  }

  .review-card {
      flex-direction: column;
      gap: 0.75rem;
  }

  .review-avatar {
      align-self: flex-start;
  }
}


@media (max-width: 768px) {
    .side-nav-links .account-dropdown {
      position: relative; /* Relative for vertical stacking */
    }
  
    .side-nav-links .dropdown-menu {
      position: static; /* Static to stack below in vertical menu */
      top: auto;
      right: auto;
      margin-top: 0.5rem; /* Small gap below toggle */
      background-color: #A0522D; /* Slightly lighter for nested feel */
      border-radius: 4px;
      box-shadow: inset 0 2px 4px rgba(0,0,0,0.1); /* Subtle inset shadow for nesting */
      min-width: auto; /* Full width in side menu */
      display: none; /* Hidden by default */
      flex-direction: column;
      padding: 0.5rem 0;
    }
  
    .side-nav-links .dropdown-menu.show { /* Use 'show' class or toggle display: block */
      display: block;
    }
  
    .side-nav-links .dropdown-menu a {
      color: white; /* White text for mobile dropdown */
      padding: 0.75rem 1.5rem; /* More padding for touch targets */
      font-size: 1.1rem; /* Match side menu font size */
      border-bottom: 1px solid rgba(255,255,255,0.1); /* Subtle separators */
    }
  
    .side-nav-links .dropdown-menu a:last-child {
      border-bottom: none;
    }
  
    .side-nav-links .dropdown-menu a:hover {
      background-color: #8B4513; /* Darker on hover */
      color: #ff9800;
    }
  
    .side-nav-links .dropdown-menu a.active {
      background-color: #654321;
      color: white;
    }
  
    /* Mobile Toggle Link Styling */
    .side-nav-links .account-dropdown > a {
      position: relative; /* For icon positioning */
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.5rem; /* Match other side menu links */
      color: white;
      text-decoration: none;
      font-size: 1.2rem;
      background-color: #8B4513; /* Match side menu bg */
      border-radius: 4px;
      transition: background 0.3s;
    }
  
    .side-nav-links .account-dropdown > a:hover {
      background-color: #A0522D;
      color: #ff9800;
    }
  
    .side-nav-links .account-dropdown > a.active {
      background-color: #654321;
      color: white;
    }
  
    .side-nav-links .account-dropdown > a i.bx-chevron-down {
      margin-left: 0; /* No need for auto in mobile */
    }
  }
  


  /* Contact Details Section */
.contact-details {
    padding: 4rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    margin: 3rem auto;
    text-align: center;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent);
    margin: 0.5rem auto 0;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    font-weight: bold;
}

.contact-value {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-value a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.contact-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
}

/* Enhanced Social Links (for circular icons) */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px; /* Pill shape for modern look */
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    min-width: 120px;
    justify-content: center;
}

.social-links a:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-hover);
    opacity: 0.95;
}

.social-links a i {
    font-size: 1.2rem;
}

/* Footer Enhancements */
footer .footer-content p:first-child {
    font-size: 1.1rem;
    font-weight: bold;
}

footer .footer-content p:first-child i {
    margin-right: 0.5rem;
    color: #25d366; /* WhatsApp green */
}


/* ══════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════════════════════════════════════ */

   .newsletter {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #8B4513 0%, #6F370F 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Section Tag */
.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ff9800;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: #ff9800;
}

/* Newsletter Text */
.newsletter-text h2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.25rem;
    pointer-events: none;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem 1rem 1rem 48px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    background: #ffffff;
    color: #333;
    transition: all 0.25s ease;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #ff9800;
    box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.2);
}

/* Subscribe Button */
.btn-subscribe {
    padding: 1rem 1.75rem;
    white-space: nowrap;
    min-width: 140px;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-subscribe:hover {
    background: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.btn-subscribe:active {
    transform: translateY(0);
}

.btn-subscribe:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-subscribe .btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Newsletter Note */
.newsletter-note {
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.newsletter-note i {
    font-size: 1rem;
}

/* Decorative Elements */
.newsletter-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.deco-circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.deco-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -60px;
    animation: float 8s ease-in-out infinite reverse;
}

.deco-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: 30px;
    left: 10%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 16px 16px;
}

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

/* ══════════════════════════════════════════════════════════
   NEWSLETTER RESPONSIVE
   ══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .newsletter {
        padding: 3rem 1.5rem;
    }
    
    .newsletter-text h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-form input {
        padding: 0.9rem 0.9rem 0.9rem 45px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    .btn-subscribe {
        width: 100%;
        padding: 0.9rem 1.5rem;
    }
    
    .deco-circle-1 {
        width: 200px;
        height: 200px;
        top: -60px;
        right: -60px;
    }
    
    .deco-circle-2 {
        width: 150px;
        height: 150px;
        bottom: -50px;
        left: -40px;
    }
    
    .deco-dots {
        width: 80px;
        height: 80px;
        left: 5%;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .newsletter {
        padding: 2.5rem 1rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .newsletter-text h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-text p {
        font-size: 0.95rem;
    }
    
    .newsletter-note {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .deco-circle-1,
    .deco-circle-2 {
        animation: none;
    }
    
    .btn-subscribe:hover {
        transform: none;
    }
}


/* ══════════════════════════════════════════════════════════
   SECTION LABELS & COMMON STYLES
   ══════════════════════════════════════════════════════════ */

   .section-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8B4513;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 24px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background: #b8860b;
}

/* ══════════════════════════════════════════════════════════
   USP SECTION (Why Choose Us)
   ══════════════════════════════════════════════════════════ */

.usp-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #fff 0%, #faf8f5 100%);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.usp-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.usp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B4513, #b8860b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(139, 69, 19, 0.15);
}

.usp-card:hover::before {
    transform: scaleX(1);
}

.usp-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8B4513, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: transform 0.3s ease;
}

.usp-card:hover .usp-icon {
    transform: scale(1.1) rotate(5deg);
}

.usp-icon i {
    font-size: 2rem;
    color: #fff;
}

.usp-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.usp-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ══════════════════════════════════════════════════════════
   ENHANCED PRODUCTS SECTION
   ══════════════════════════════════════════════════════════ */

.products-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-lg i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-lg:hover i {
    transform: translateX(5px);
}

/* Product Card Overlay */
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 69, 19, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #8B4513;
    font-size: 1.4rem;
    text-decoration: none;
}

.overlay-btn:hover {
    background: #ff9800;
    color: #fff;
    transform: scale(1.1);
}

/* Empty State Enhancement */
.products-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #faf8f5 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION - SIDE BY SIDE IMAGES
   ══════════════════════════════════════════════════════════ */

   .about {
    padding: 5rem 2rem;
    text-align: center;
    background: #fff;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about h2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.about h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #b8860b;
    margin: 0.5rem auto 0;
}

.about-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Images Container */
.about-images {
    flex: 0 1 480px;
    position: relative;
    margin-bottom: 2rem;
}

.image-stack {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    background: linear-gradient(135deg, #f3eee9, #fefbf6);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Images - Side by Side */
.about-img {
    flex: 1;
    height: 320px;
    width: 50%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    bottom: -25px;
    right: 15px;
    background: linear-gradient(135deg, #8B4513, #b8860b);
    color: #fff;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
    z-index: 10;
}

.experience-badge .years {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
    line-height: 1.2;
}

/* Text Content */
.about-text {
    flex: 0 1 480px;
    text-align: left;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-text h3 i {
    color: #e74c3c;
}

.about-text p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-text p strong {
    color: #8B4513;
}

/* Stats */
.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #8B4513;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
    display: block;
}

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION - RESPONSIVE (ONLY COPY)
   ══════════════════════════════════════════════════════════ */

@media (max-width: 992px) {
    .about-container {
        gap: 2.5rem;
    }
    
    .about-images {
        flex: 0 1 100%;
        max-width: 550px;
    }
    
    .about-text {
        flex: 0 1 100%;
        max-width: 550px;
    }
    
    .about-img {
        height: 280px;
    }
    
    .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -20px;
    }
    
    .experience-badge .years {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 1.5rem;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .about-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .about-images {
        width: 100%;
        max-width: 100%;
    }
    
    /* KEEP SIDE BY SIDE on mobile */
    .image-stack {
        flex-direction: row;
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .about-img {
        height: 180px;
        width: 50%;
    }
    
    .experience-badge {
        width: 70px;
        height: 70px;
        bottom: -15px;
        right: 10px;
        padding: 0.5rem;
    }
    
    .experience-badge .years {
        font-size: 1.2rem;
    }
    
    .experience-badge .text {
        font-size: 0.45rem;
    }
    
    .about-text {
        text-align: center;
        padding: 0.5rem 0 0 0;
        max-width: 100%;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
        justify-content: center;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .about-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about h2 {
        font-size: 1.75rem;
    }
    
    .image-stack {
        padding: 0.5rem;
        gap: 0.5rem;
        border-radius: 12px;
    }
    
    .about-img {
        height: 140px;
        border-radius: 8px;
    }
    
    .experience-badge {
        width: 60px;
        height: 60px;
        bottom: -12px;
        right: 8px;
    }
    
    .experience-badge .years {
        font-size: 1rem;
    }
    
    .experience-badge .text {
        font-size: 0.4rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 0.9rem;
    }
    
    .about-stats {
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1 1 30%;
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   ══════════════════════════════════════════════════════════ */

.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.testimonials-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #b8860b;
    margin: 0.5rem auto 0;
}

.testimonials-header p {
    color: #666;
    font-size: 1.1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.12);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.quote-icon {
    color: #b8860b;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513, #b8860b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1rem;
    color: #333;
    margin: 0 0 0.15rem 0;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

.rating {
    margin-left: auto;
    color: #f5a623;
}

.rating i {
    font-size: 0.9rem;
}

/* ══════════════════════════════════════════════════════════
   INSTAGRAM SECTION (Enhanced)
   ══════════════════════════════════════════════════════════ */

.instagram-section {
    padding: 4rem 2rem;
    text-align: center;
}

.instagram-header {
    margin-bottom: 2.5rem;
}

.instagram-header h2 {
    font-size: 2rem;
    color: #8B4513;
    margin-bottom: 0.5rem;
}

.instagram-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #b8860b;
    margin: 0.5rem auto 0;
}

.instagram-header p {
    color: #666;
    font-size: 1rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.insta-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay i {
    font-size: 2.5rem;
    color: #fff;
}

/* Placeholder for missing images */
.insta-item.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3eee9, #fefbf6);
}

.insta-item.placeholder::after {
    content: 'Coming Soon';
    color: #888;
    font-size: 0.8rem;
}

.insta-item.placeholder img {
    display: none;
}

.insta-item.placeholder .insta-overlay {
    display: none;
}

/* Instagram CTA Button */
.insta-cta {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 100%;
}

.cta-content i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.cta-content span {
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ══════════════════════════════════════════════════════════
   BACK TO TOP BUTTON
   ══════════════════════════════════════════════════════════ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513, #b8860b);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.4);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ══════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .usp-card {
        padding: 1.5rem 1rem;
    }
    
    .usp-icon {
        width: 60px;
        height: 60px;
    }
    
    .usp-icon i {
        font-size: 1.5rem;
    }
    
    .usp-card h3 {
        font-size: 1.1rem;
    }
    
    .usp-card p {
        font-size: 0.85rem;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .usp-grid {
        grid-template-columns: 1fr;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insta-item:last-child {
        grid-column: span 2;
    }
    
    .testimonial-author {
        flex-wrap: wrap;
    }
    
    .rating {
        width: 100%;
        margin-left: 0;
        margin-top: 0.75rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .back-to-top {
        transition: opacity 0.2s;
    }
}


/* ══════════════════════════════════════════════════════════
   MOBILE 2-COLUMN LAYOUT FIXES
   ══════════════════════════════════════════════════════════ */

/* Products - Force 2 columns on mobile */
@media (max-width: 768px) {
    .product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important; /* Force 2 columns */
        gap: 0.75rem;
    }
    
    .product-card {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .product-image-wrapper {
        height: 140px;
    }
    
    .product-info h3 {
        font-size: 0.95rem;
        line-height: 1.2;
        margin-bottom: 0.25rem;
    }
    
    .product-price {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .product-snippet {
        display: none; /* Hide description on mobile to save space */
    }
    
    .product-actions {
        grid-template-columns: 1fr; /* Stack buttons vertically */
        gap: 0.4rem;
    }
    
    .product-actions .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .product-actions .btn.ghost {
        display: none; /* Hide "View Details" on mobile, keep only Add to Cart */
    }
    
    .product-muted {
        grid-column: 1;
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    /* Product overlay - smaller buttons on mobile */
    .product-overlay {
        gap: 0.5rem;
    }
    
    .overlay-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* USP Section - Force 2 columns on mobile */
@media (max-width: 768px) {
    .usp-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important; /* Force 2 columns */
        gap: 1rem;
    }
    
    .usp-card {
        padding: 1.25rem 1rem;
    }
    
    .usp-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }
    
    .usp-icon i {
        font-size: 1.3rem;
    }
    
    .usp-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .usp-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* Testimonials - Force 2 columns on mobile (for 3 cards, last one centered or full-width) */
@media (max-width: 768px) {
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important; /* Force 2 columns */
        gap: 1rem;
    }
    
    /* If you have 3 testimonials, make the 3rd one full width and centered */
    .testimonial-card:last-child:nth-child(odd) {
        grid-column: 1 / -1; /* Span full width */
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .quote-icon {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding-top: 1rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .author-info h4 {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.75rem;
    }
    
    .rating {
        margin-left: 0;
    }
    
    .rating i {
        font-size: 0.8rem;
    }
}

/* Extra small screens - still keep 2 columns but tighter */
@media (max-width: 400px) {
    .product-grid {
        gap: 0.5rem;
    }
    
    .product-card {
        padding: 0.5rem;
    }
    
    .product-image-wrapper {
        height: 120px;
    }
    
    .product-info h3 {
        font-size: 0.85rem;
    }
    
    .product-price {
        font-size: 0.9rem;
    }
    
    .usp-grid {
        gap: 0.75rem;
    }
    
    .usp-card {
        padding: 1rem 0.75rem;
    }
    
    .usp-icon {
        width: 45px;
        height: 45px;
    }
    
    .usp-card h3 {
        font-size: 0.85rem;
    }
    
    .usp-card p {
        font-size: 0.75rem;
    }
    
    .testimonials-grid {
        gap: 0.75rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .testimonial-content p {
        font-size: 0.85rem;
    }
}