/* ========== BASE STYLES & VARIABLES ========== */

@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Montserrat:wght@500&family=Open+Sans:wght@500&display=swap");
@import url("https://use.typekit.net/snq0ybm.css");
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Space+Grotesk:wght@300..700&display=swap');

:root {
  --main-color: #c6965c;
  --black: #141a13;
  --bg: #010103;
  --bg2: #191714;
  --bg3: #1d1a16;
  --bg-lighter: #242018;
  --secondary: #252320;
  --border: 0.1rem solid;
  --border-2: 0.1rem transparent;
  --primary: #f5f5f5;
  --accent-color: #a17137;
  --light-accent: #e0bb8e;
  --text-color: #333;
  --light-text: #f5f5f5;
  --dark-text: #1a1a1a;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --card-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  --hover-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);





/* 
  --primary-gold: #d3ad7f;
  --primary-gold-hover: #c19b6c;
  --bg-dark: #0a0a0a;
  --bg-card: #1f1f1f;
  --text-primary: #ffffff;
  --text-secondary: #e6e6e6;
  --text-muted: #cccccc;
  --border: 1px solid #333;
  --border-2: 2px solid #444;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
  --gradient-overlay: linear-gradient(135deg, rgba(211, 173, 127, 0.1) 0%, rgba(211, 173, 127, 0.05) 100%); */
}

* {
  font-family: "Manrope", "Lato", "Roboto", sans-serif;
  font-weight: 500;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-padding-top: 3rem;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.8rem;
}

html::-webkit-scrollbar-track {
  background-color: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 5rem;
}

body {
  background: #0f0e09;
}

p {
  color:#acacac !important;
}

section {
  padding: 2rem 7%;
}

h1, h2, h3, h4, h5 {
  font-family: "industry", lato, sans-serif;
}

h6 {
  color: transparent;
  font-family: "industry", lato, sans-serif;
}

/* ========== UTILITY CLASSES ========== */
.heading {
  text-align: center;
  color: #fff;
  padding-bottom: 7rem;
  font-size: 4rem;
  margin-top: 10rem;
}

.with-subtitle {
  padding-bottom: 12px !important;
}

.sub-heading {
  text-align: center;
  color: #fff;
  padding: 3.5rem 0;
  font-size: 3rem;
  margin-left: 4rem;
}

.heading span, 
.sub-heading span {
  color: var(--main-color);
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 0.9rem 3rem;
  font-size: 16px;
  color: #fff;
  background-image: linear-gradient(to right, var(--main-color) 0%, var(--light-accent) 51%, var(--accent-color) 100%);
  background-size: 300% auto;
  cursor: pointer;
  border-radius: 12px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

.header-btn {
  margin-top: 0;
  margin-left: 1.5rem;
}

.header-btn:hover {
  background-position: right center;
  transition: var(--transition)
}

/* ========== LAYOUT COMPONENTS ========== */

/* Header & Navigation */
.header {
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 7%;
  border-bottom: var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.header .navbar {
  margin-left: auto;
}

.header .logo img {
  height: 7rem;
  margin: 1rem 0;
}

.header .navbar a {
  margin: 0 1.5rem;
  font-size: 1.6rem;
  color: #fff;
  padding: 0.4rem;
  text-transform: capitalize;
  font-family: "industry", lato, sans-serif;
  font-weight: lighter !important;
  position: relative; /* Make sure this is here for proper positioning context */
}

.header .navbar a:hover {
  color: var(--main-color);
  position: relative;
}

.header .navbar a::after {
  content: '';
  position: absolute;
  bottom: 0; /* Changed from -5px to 0 */
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--main-color);
  transition: width 0.3s ease-in-out;
}

.header .navbar a:hover::after {
  width: 100%;
}

.header .icons div {
  color: #fff;
  cursor: pointer;
  font-size: 2.5rem;
  margin-left: 2rem;
}

.header .icons div:hover {
  color: var(--main-color);
}

#menu-btn {
  display: none;
  /* height: 32px;
  width: 32px; */
  font-size: 32px;
}

/* Search Form */
.header .search-form {
  position: absolute;
  top: 115%;
  right: 7%;
  background: #fff;
  width: 50rem;
  height: 5rem;
  display: flex;
  align-items: center;
  transform: scaleY(0);
  transform-origin: top;
}

.header .search-form.active {
  transform: scaleY(1);
  border-radius: 10px;
}

.header .search-form input {
  height: 100%;
  width: 100%;
  font-size: 1.6rem;
  color: var(--secondary);
  padding: 1rem;
  text-transform: none;
  border-radius: 10px;
}

.header .search-form label {
  cursor: pointer;
  font-size: 2.2rem;
  margin-right: 1.5rem;
  color: var(--secomdary);
}

.header .search-form label:hover {
  color: var(--main-color);
}


/* Add this to your CSS file - Mobile Navbar Styles */
@media (max-width: 768px) {
  #menu-btn {
    display: inline-block !important;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    z-index: 1001;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 7%;
  }

  .header .navbar {
    position: absolute;
    top: 100%;
    right: -100%;
    background: var(--bg2);
    width: 30rem;
    height: calc(100vh - 9.5rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
  }

  .header .navbar.active {
    right: 0;
  }

  .header .navbar a {
    color: #fff;
    display: block;
    margin: 0;
    padding: 1.5rem 2rem;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
  }

  .header .navbar a:hover {
    background: rgba(198, 150, 92, 0.1);
  }

  .header .icons {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  /* Ensure search form doesn't interfere */
  .header .search-form {
    width: 90%;
    right: 5%;
  }
}

/* ========== PAGE SECTIONS ========== */

/* Home Section */
.home {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url(../images/printing.gif) no-repeat;
  background-size: cover;
  background-position: center;
}

.home .content,
.home .owner {
  max-width: 60rem;
}

.home .content h3,
.home .owner h3 {
  font-size: 6rem;
  text-transform: uppercase;
  color: #fff;
}

.home .content p,
.home .owner p {
  font-size: 18px;
  line-height: 1.8;
  padding: 1rem 0;
  color: #eee;
}

.home .owner p {
  font-weight: lighter;
}

.content-owner-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 60rem;
  margin: 0 auto;
}

        /* Enhanced About Section */
        .about {
          padding: 8rem 2rem;
          background: linear-gradient(135deg, var(--bg) 0%, var(--bg3) 100%);
          position: relative;
          overflow: hidden;
        }

        .about::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: radial-gradient(circle at 20% 80%, rgba(198, 150, 92, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(198, 150, 92, 0.03) 0%, transparent 50%);
          pointer-events: none;
        }

        .heading {
          text-align: center;
          font-size: clamp(3rem, 5vw, 4.5rem);
          font-weight: 700;
          margin-bottom: 1rem;
          position: relative;
          z-index: 2;
        }

        .heading span {
          color: var(--main-color);
          position: relative;
          font-weight: bold;
        }

        .heading span::after {
          content: '';
          position: absolute;
          bottom: -5px;
          left: 0;
          width: 100%;
          height: 3px;
          background: linear-gradient(90deg, var(--main-color), transparent);
          border-radius: 2px;
        }

        /* Section subtitle */
        .section-subtitle {
          text-align: center;
          font-size: 12px;
          color: var(--light-text);
          margin-bottom: 5rem;
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
          opacity: 0.8;
        }

        .container {
          max-width: 1400px;
          margin: 0 auto;
          position: relative;
          z-index: 2;
        }

        /* Hero Card - Enhanced */
        .hero-card {
          background: var(--bg2);
          border-radius: 24px;
          padding: 4rem;
          margin-bottom: 4rem;
          box-shadow: var(--hover-shadow);
          border: 1px solid rgba(198, 150, 92, 0.2);
          backdrop-filter: blur(10px);
          position: relative;
          overflow: hidden;
        }

        .hero-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 1px;
          background: linear-gradient(90deg, transparent, var(--main-color), transparent);
        }

        .hero-content {
          display: grid;
          grid-template-columns: 1fr 1.2fr;
          gap: 4rem;
          align-items: center;
        }

          /* Featured Products Section Styling */
          .featured-products {
            padding: 8rem 9% 6rem;
            background: linear-gradient(135deg, var(--bg) 0%, var(--bg3) 100%);
            position: relative;
              }

              .featured-products::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(198, 150, 92, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(198, 150, 92, 0.03) 0%, transparent 50%);
            pointer-events: none;
              }

              .featured-products .heading {
            text-align: center;
            margin-bottom: 1rem;
            color: #fff;
            font-size: 3.5rem;
            font-weight: 700;
              }

              .featured-products .heading span {
            color: var(--main-color);
              }

              .section-subtitle {
            text-align: center;
            margin-bottom: 4rem;
            color: var(--light-text);
            font-size: 12px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            opacity: 0.8;
              }

              /* Featured Product Grid */
              .featured-product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
              }

              /* Product Card Styling */
              .featured-product-card {
            background: var(--bg2);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            transform: translateY(0);
            border: 1px solid rgba(198, 150, 92, 0.2);
              }

              .featured-product-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--hover-shadow);
            border-color: var(--main-color);
              }

              /* Image Container */
              .featured-product-image-container {
            position: relative;
            overflow: hidden;
            height: 250px;
            background: var(--bg3);
              }

              .featured-product-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
              }

              .featured-product-card:hover .featured-product-img {
            transform: scale(1.05);
              }

              /* Product Badges */
              .featured-product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 1.2rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
              }

              .featured-product-badge.new {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: #fff;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
              }

              .featured-product-badge.sale {
            background: linear-gradient(135deg, #dc3545, #e83e8c);
            color: #fff;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
              }

              /* Product Info Section */
              .featured-product-info {
            padding: 2rem;
              }

              /* Create a flex container for product name and stock status */
              .featured-product-name {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--light-text);
            margin-bottom: 1rem;
            line-height: 1.3;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
              }

              /* Position stock status as sibling of product name */
              .featured-stock-status {
            padding: 6px 10px;
            border-radius: 15px;
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            width: fit-content;
            flex-shrink: 0;
            margin-bottom: 1rem;
            margin-left: auto;
              }

              .featured-stock-status.in-stock {
            background-color: rgba(46, 204, 113, 0.1);
            color: white;
            border: 1px solid rgba(46, 204, 113, 0.9);
            box-shadow: 0 2px 4px rgba(46, 204, 113, 0.2);
              }

              .featured-stock-status.low-stock {
            background-color: rgba(241, 196, 15, 0.2);
            border: 1px solid rgba(241, 196, 15, 0.9);
            box-shadow: 0 2px 4px rgba(241, 196, 15, 0.2);
            color: white;
              }

              .featured-stock-status.out-of-stock {
            background-color: rgba(231, 76, 60, 0.2);
            border: 1px solid rgba(231, 76, 60, 0.9);
            box-shadow: 0 2px 4px rgba(231, 76, 60, 0.2);
            color: white;
              }

              .featured-stock-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: currentColor;
            flex-shrink: 0;
              }

              /* Use CSS to position stock status next to product name */
              .featured-product-name + .featured-stock-status {
            position: absolute;
            top: 2rem;
            right: 2rem;
            margin: 0;
              }

              /* Adjust product info container to be relative for absolute positioning */
              .featured-product-info {
            position: relative;
              }


            /* Attribution */
            .featured-attribution {
          color: #acacac;
          font-size: 1.4rem;
          margin-bottom: 2rem;
          line-height: 1.4;
            }

            .featured-attribution a {
          color: var(--main-color);
          text-decoration: none;
          font-weight: 500;
          transition: color 0.3s ease;
            }

            .featured-attribution a:hover {
          color: var(--accent-color);
          text-decoration: underline;
            }

            /* View Button */
            .featured-view-btn {
          display: inline-block;
          width: 100%;
          padding: 1.2rem 2rem;
          background: linear-gradient(to right, var(--main-color) 0%, var(--light-accent) 51%, var(--accent-color) 100%);
          background-size: 200% auto;
          color: var(--light-text);
          text-decoration: none;
          border-radius: 8px;
          font-size: 1.4rem;
          font-weight: 600;
          text-align: center;
          text-transform: uppercase;
          letter-spacing: 0.5px;
          transition: all 0.3s ease;
          border: none;
          cursor: pointer;
          position: relative;
          overflow: hidden;
            }

            .featured-view-btn::before {
          content: '';
          position: absolute;
          top: 0;
          left: -100%;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
          transition: left 0.5s ease;
            }

            .featured-view-btn:hover::before {
          left: 100%;
            }

            .featured-view-btn:hover {
          background-position: right center;
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(198, 150, 92, 0.3);
            }

            /* Responsive Design */
            @media (max-width: 768px) {
          .featured-products {
              padding: 6rem 5% 4rem;
          }

          .featured-product-grid {
              grid-template-columns: 1fr;
              gap: 2rem;
          }

          .featured-products .heading {
              font-size: 3.2rem;
          }

          .section-subtitle {
              font-size: 1.4rem;
              margin-bottom: 5rem;
          }

          .featured-product-image-container {
              height: 200px;
          }

          .featured-product-info {
              padding: 1.5rem;
          }

          .featured-product-name {
              font-size: 24px;
          }

          /* Responsive adjustments for stock status positioning */
          .featured-product-name + .featured-stock-status {
              position: static;
              margin-left: auto;
              margin-top: 0.5rem;
          }

          .featured-product-name {
              flex-direction: column;
              align-items: flex-start;
          }
            }

            @media (max-width: 480px) {
          .featured-products {
              padding: 4rem 3% 3rem;
          }

          .featured-product-grid {
              gap: 1.5rem;
          }

          .featured-products .heading {
              font-size: 3.2rem;
          }

          .featured-product-badge {
              top: 10px;
              right: 10px;
              padding: 0.4rem 0.8rem;
              font-size: 1rem;
          }
            }

            /* Animation for cards appearing */
            @keyframes fadeInUp {
          from {
              opacity: 0;
              transform: translateY(30px);
          }
          to {
              opacity: 1;
              transform: translateY(0);
          }
            }

            .featured-product-card {
          animation: fadeInUp 0.6s ease forwards;
            }

            .featured-product-card:nth-child(1) { animation-delay: 0.1s; }
            .featured-product-card:nth-child(2) { animation-delay: 0.2s; }
            .featured-product-card:nth-child(3) { animation-delay: 0.3s; }
            .featured-product-card:nth-child(4) { animation-delay: 0.4s; }

        /* Enhanced image gallery */
        .image-gallery {
          position: relative;
          height: 400px;
          border-radius: 16px;
          overflow: hidden;
          background: var(--bg3);
          box-shadow: var(--card-shadow);
        }

        .image-gallery::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(45deg, rgba(198, 150, 92, 0.1) 0%, transparent 50%);
          z-index: 1;
        }

        .gallery-grid {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 1rem;
          height: 100%;
          padding: 1.5rem;
        }

        .gallery-item {
          position: relative;
          border-radius: 12px;
          overflow: hidden;
          background: var(--bg3);
          transition: var(--transition);
        }

        .gallery-item img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: transform 0.4s ease;
        }

        .gallery-item:hover {
          transform: translateY(-8px) scale(1.02);
          box-shadow: var(--hover-shadow);
        }

        .gallery-item:hover img {
          transform: scale(1.1);
        }

        /* MVP Content Enhanced */
        .mvp-content {
          display: flex;
          flex-direction: column;
          justify-content: center;
        }

        .mvp-title {
          font-size: clamp(2.5rem, 4vw, 3.5rem);
          font-weight: 800;
          margin-bottom: 1.5rem;
          background: linear-gradient(135deg, var(--light-text) 0%, var(--main-color) 100%);
          background-clip: text;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          line-height: 1.2;
        }

        .mvp-description {
          font-size: 1.25rem;
          color: var(--light-text);
          line-height: 1.8;
          margin-bottom: 2.5rem;
          opacity: 0.9;
        }

        .cta-button {
          display: inline-flex;
          align-items: center;
          gap: 0.75rem;
          padding: 1.2rem 2.2rem;
          background-image: linear-gradient(to right, var(--main-color) 0%, var(--light-accent) 51%, var(--accent-color) 100%);
          background-size: 200% auto;
          color: var(--light-text);
          text-decoration: none;
          border-radius: 12px;
          font-weight: 700;
          font-size: 1.15rem;
          transition: var(--transition);
          box-shadow: 0 4px 15px rgba(198, 150, 92, 0.3);
          text-transform: uppercase;
          letter-spacing: 0.5px;
          align-self: flex-start;
        }

        .cta-button:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(198, 150, 92, 0.4);
          background-position: right center;
        }

        /* Owner Section - Completely Redesigned */
        .owner-showcase {
          display: grid;
          grid-template-columns: 1fr 1fr;
          gap: 3rem;
          margin-top: 5rem;
        }

        .owner-story {
          background: var(--bg2);
          border-radius: 20px;
          padding: 3rem;
          border: 1px solid rgba(198, 150, 92, 0.2);
          box-shadow: var(--card-shadow);
          backdrop-filter: blur(10px);
        }

        .story-title {
          font-size: 3rem;
          font-weight: 700;
          margin-bottom: 1.5rem;
          color: var(--light-text);
        }

        .story-title span {
          color: var(--main-color);
          font-weight: bold;
        }

        .story-text {
          font-size: 1.25rem;
          color: var(--light-text);
          line-height: 1.8;
          margin-bottom: 1.5rem;
          opacity: 0.9;
        }

        .story-highlight {
          color: var(--main-color);
          font-weight: 600;
        }

        .reasons-list {
          margin: 2rem 0;
        }

        .reason-item {
          display: flex;
          align-items: flex-start;
          gap: 1rem;
          margin-bottom: 1.5rem;
          padding: 1rem;
          background: rgba(198, 150, 92, 0.05);
          border-radius: 12px;
          border-left: 3px solid var(--main-color);
        }

        .reason-number {
          background: var(--main-color);
          color: var(--light-text);
          width: 2rem;
          height: 2rem;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          font-weight: 700;
          font-size: 1rem;
          flex-shrink: 0;
        }

        .reason-text {
          color: #d3ad7f;
          font-size: 1.1rem;
          line-height: 1.6;
          opacity: 0.9;
        }

        /* Owner Profile Card */
        .owner-profile {
          background: var(--bg2);
          border-radius: 20px;
          padding: 3rem;
          text-align: center;
          border: 1px solid rgba(198, 150, 92, 0.2);
          box-shadow: var(--card-shadow);
          backdrop-filter: blur(10px);
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          position: relative;
        }

        .profile-image-container {
          position: relative;
          margin-bottom: 2rem;
        }

        .profile-image {
          width: 190px;
          height: 190px;
          border-radius: 50%;
          object-fit: cover;
          border: 4px solid var(--main-color);
          box-shadow: 0 12px 30px rgba(198, 150, 92, 0.3);
          transition: var(--transition);
        }

        .profile-image:hover {
          transform: scale(1.05);
          box-shadow: 0 16px 40px rgba(198, 150, 92, 0.4);
        }

        .profile-ring {
          position: absolute;
          top: -10px;
          left: -10px;
          right: -10px;
          bottom: -10px;
          border: 2px solid transparent;
          border-radius: 50%;
          background: linear-gradient(45deg, var(--main-color), transparent, var(--main-color));
          background-clip: border-box;
          animation: rotate 8s linear infinite;
        }

        @keyframes rotate {
          from { transform: rotate(0deg); }
          to { transform: rotate(360deg); }
        }

        .profile-name {
          font-size: 2rem;
          font-weight: 700;
          color: var(--light-text);
          margin-bottom: 0.5rem;
        }

        .profile-title {
          font-size: 1.25rem;
          color: var(--main-color);
          font-weight: 500;
          margin-bottom: 1.5rem;
        }

        .profile-bio {
          font-size: 1.1rem;
          color: var(--light-text);
          line-height: 1.6;
          max-width: 270px;
          opacity: 0.9;
        }

        /* Social proof elements */
        .impact-stats {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 2rem;
          margin-top: 4rem;
          text-align: center;
        }

        .stat-item {
          background: var(--bg2);
          padding: 2.2rem 1.2rem;
          border-radius: 16px;
          border: 1px solid rgba(198, 150, 92, 0.2);
          backdrop-filter: blur(10px);
        }

        .stat-number {
          font-size: 2.7rem;
          font-weight: 800;
          color: var(--main-color);
          margin-bottom: 0.5rem;
        }

        .stat-label {
          font-size: 1rem;
          color: var(--light-text);
          text-transform: uppercase;
          letter-spacing: 1px;
          opacity: 0.8;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
          .hero-content {
            grid-template-columns: 1fr;
            gap: 3rem;
          }
          
          .owner-showcase {
            grid-template-columns: 1fr;
            gap: 2rem;
          }
          
          .impact-stats {
            grid-template-columns: 1fr;
            gap: 1.5rem;
          }
          .hero-card, .owner-story, .owner-profile {
            padding: 2.5rem;
          }
          .mvp-title {
            font-size: 3rem;
          }
          .story-title {
            font-size: 2.5rem;
          }
        }

        @media (max-width: 768px) {
          .about {
            padding: 4rem 1rem;
          }
          
          .hero-card, .owner-story, .owner-profile {
            padding: 2rem;
          }
          
          .gallery-grid {
            gap: 1rem;
          }
          
          .image-gallery {
            display: flex;
            height: 32vh;
            flex-direction: row;
            margin: auto;
          }

          .image-gallery img {
            display: flex;
            flex-direction: row;
          }

          .heading {
            font-size: 2.5rem;
            /* padding-bottom: 3.2vw; */
          }
          .mvp-title {
            font-size: 3rem;
          }
          .story-title {
            font-size: 2.5rem;
          }
          .mvp-description,
          .story-text,
          .reason-text,
          .profile-bio,
          .stat-label,
          .section-subtitle {
            font-size: 1.1rem;
          }
          .cta-button {
            font-size: 1rem;
            padding: 1.1rem 1.7rem;
          }
          .stat-number {
            font-size: 2.5rem;
          }
          .profile-name {
            font-size: 1.3rem;
          }
          .profile-title {
            font-size: 2rem;
          }
        }

        @media (max-width: 600px) {
          .about {
            padding: 2.5rem 0.5rem;
          }
          .hero-card, .owner-story, .owner-profile {
            padding: 1.2rem;
          }
          .heading {
            font-size: 2rem;
          }
          .mvp-title {
            font-size: 3rem;
          }
          .story-title {
            font-size: 2.5rem;
          }
          .mvp-description,
          .story-text,
          .reason-text,
          .profile-bio,
          .stat-label,
          .section-subtitle {
            font-size: 1.4rem;
          }
          .cta-button {
            font-size: 0.95rem;
            padding: 1rem 1.2rem;
          }
          .stat-number {
            font-size: 2.1rem;
          }
          .profile-name {
            font-size: 1.1rem;
          }
          .profile-title {
            font-size: 2rem;
          }

          .about p {
            font-size: 1.5rem;
          }
        }

        /* Additional polish */
        .floating-elements {
          position: absolute;
          width: 100%;
          height: 100%;
          pointer-events: none;
          overflow: hidden;
        }

        .floating-elements::before,
        .floating-elements::after {
          content: '';
          position: absolute;
          width: 200px;
          height: 200px;
          background: radial-gradient(circle, rgba(198, 150, 92, 0.05) 0%, transparent 70%);
          border-radius: 50%;
          animation: float 20s ease-in-out infinite;
        }

        .floating-elements::before {
          top: 10%;
          left: 5%;
          animation-delay: 0s;
        }

        .floating-elements::after {
          bottom: 10%;
          right: 5%;
          animation-delay: 10s;
        }

        @keyframes float {
          0%, 100% { transform: translateY(0px) rotate(0deg); }
          50% { transform: translateY(-20px) rotate(180deg); }
        }

/* Adding a slightly lighter background for better text contrast */
/* .about .row .owner-section {
  background: #212121; /* Slightly lighter than #1a1a1a */
/* } */
/* Menu/Services Section */
.menu .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 1.5rem;
}

.menu .box-container .box,
.menu .box-container .box-type {
  padding: 5rem;
  text-align: center;
  background-color: var(--bg2);
  border-radius: 20px;
  border: 1px solid rgba(198, 150, 92, 0.2);
}

.menu .box-container .box {
  border: 1px solid rgba(198, 150, 92, 0.2);
}

.menu .box-container .box:hover {
  border: 0.1rem solid var(--main-color);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}

.menu .box-container .box-type:hover {
  border: 0.1rem solid var(--main-color);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}

.menu .box-container .box h3:hover {
  color: var(--main-color);
}

.menu .box-container .box img {
  height: 13rem;
}

.menu .box-container .box-type img {
  height: 10rem;
}

.menu .box-container .box h3,
.menu .box-container .box-type h3 {
  color: #fff;
  font-size: 2rem;
  padding: 1rem 0;
}

.menu .box-container .box .price,
.menu .box-container .box .price span {
  color: #fff;
  font-size: 2.5rem;
  padding: 0.5rem 0;
}

.menu .box-container .box .price span {
  text-decoration: line-through;
}

.menu .box-container .file-type {
  background: var(--main-color);
  border-radius: 20px;
  padding: 15px;
  border: none;
}

.menu .box-container .file-type:hover {
  transform: scale(1.1);
}

/* Services Section */
.services {
  padding: 8rem 0;
  background: var(--bg);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.heading {
  font-size: 4rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.heading span {
  color: var(--main-color);
  text-transform: uppercase;
  font-weight: bold;
}

.orange-underline {
  width: 150px;
  height: 4px;
  background-color: var(--main-color);
  margin: 0 auto 2rem;
}

.services-description {
  font-size: 12px;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 5%;
}

.service-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.service-content {
  flex: 1;
  color: #fff;
}

.service-content h3 {
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.service-content p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #ddd;
  line-height: 1.6;
}

.service-content ul {
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.service-content ul li {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.service-checks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-check {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-check i {
  color: var(--main-color);
  font-size: 2rem;
}

.service-check span {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-image-container {
  flex: 1;
  max-width: 400px;
  height: 100%;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.6rem;
  color: #fff;
  background-image: linear-gradient(to right, var(--main-color) 0%, var(--light-accent) 51%, var(--accent-color) 100%);
  cursor: pointer;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn:hover {
  background-position: right center;
  /* letter-spacing: 1.3px; */
}

/* Media Queries */
@media (max-width: 991px) {
  .services-container {
    flex-direction: column;
  }
  
  .service-column {
    flex-direction: column-reverse;
  }
  
  .service-image-container {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  
  .service-content {
    text-align: center;
  }
  
  .service-checks {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .heading {
    font-size: 3rem;
  }
  
  .service-check span {
    font-size: 1.6rem;
  }
}

@media (max-width: 450px) {
  .service-checks {
    flex-direction: column;
  }
}


@media only screen and (min-width: 577px) and (max-width: 991px) {
  .menu .box-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .menu .box-container .box {
    flex: 0 0 auto;
    margin: 0;
  }
}

/* Products Section - Dark Theme */
.products {
  padding: 120px 20px 60px;
  color: #e0e0e0;
  background-color: #121212;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.title {
  text-align: center;
  font-size: 3.2rem;
  background: linear-gradient( 135deg, var(--main-color) 0%, var(--accent-color) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-bottom: 10px;
  text-transform: capitalize;
  position: relative;
}

.title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--main-color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #aaa; /* Lighter gray for subtitles */
  margin-bottom: 40px;
}

/* Filter System */
.filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: auto;
}

.filter-group .heading {
  margin-right: 6rem;
  margin-top: 8rem;
  margin-left: 0;
}
.filter-label {
  font-weight: 600;
  color: var(--main-color);
  font-size: 14px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  padding: 12px 12px;
  background-color: var(--bg3);
  border: 1px solid #333;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-size: 12px;
  color: #e0e0e0;
  user-select: none;
  min-height: 38px;
}

.filter-btn:hover {
  background-color: #2a2620;
  border-color: var(--accent-color);
}

.filter-btn.active {
  background-color: var(--main-color);
  color: white;
  border-color: var(--main-color);
}

.sort-select {
  padding: 12px 12px;
  border: 1px solid #333;
  border-radius: var(--border-radius);
  background-color: var(--bg2);
  color: #e0e0e0;
  cursor: pointer;
  appearance: none;
  font-size: 1.4rem;
  min-height: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23e0e0e0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

/* Toast notification styles */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(30, 30, 30, 0.95);
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  z-index: 1000;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: 1px solid #444;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  font-weight: 500;
  font-size: 1.4rem;
}

.toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: rgba(40, 40, 40, 0.9);
  color: white;
  padding: 12px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  font-size: 1.4rem;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Loading overlay styles */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #333;
  border-top: 4px solid var(--main-color, #c8a97e);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Quick view modal styles */
.quick-view-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.quick-view-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.modal-content {
  background-color: #1e1e1e;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  padding: 20px;
  position: relative;
  max-height: 90vh;
  overflow: auto;
  border: 1px solid #333;
  color: #e0e0e0;
  font-size: 1.6rem;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: transparent;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  color: #e0e0e0;
  min-width: 44px;
  min-height: 44px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin: auto;
}

/* Product Cards - Dark Theme */
.product-card {
  background-color: var(--bg2);
  border-radius: var(--border-radius);
  overflow: hidden; /* This ensures ripples stay within card boundaries */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #333;
  position: relative; /* Ensure positioning context for ripples */
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Ripple effect styles */
.product-card .ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0; /* Stay behind images */
  opacity: 0;
  /* Ensure the ripple doesn't extend outside its container */
  max-width: 100%;
  max-height: 100%;
}

.product-card .ripple-1 {
  border: 1px solid var(--main-color);
  box-shadow: 0 0 20px rgba(198, 150, 92, 0.15), /* Reduced opacity even more */
              inset 0 0 20px rgba(198, 150, 92, 0.08); /* Reduced opacity even more */
  animation: ripple-expand 1.5s ease-out; /* Shortened duration from 1.8s to 1.5s */
}

@keyframes ripple-expand {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
    border-width: 2px; /* Start with thicker border */
  }
  30% {
    opacity: 0.25; /* Fade much faster */
    border-width: 1px; /* Reduce border thickness as it grows */
  }
  60% {
    opacity: 0.1; /* Almost invisible by 60% */
    border-width: 0.5px; /* Very thin border */
  }
  100% {
    width: 600px;
    height: 600px;
    opacity: 0;
    border-width: 0px; /* No border at the end */
  }
}

/* Alternative glow ripple effect */
.product-card .glow-ripple {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, 
    rgba(198, 150, 92, 0.15) 0%, /* Reduced opacity from 0.3 to 0.15 */
    rgba(198, 150, 92, 0.05) 50%, /* Reduced opacity from 0.1 to 0.05 */
    transparent 70%);
  pointer-events: none;
  z-index: 0; /* Changed from 1 to 0 */
  animation: glow-ripple-expand 1.5s ease-out; /* Increased duration */
}

@keyframes glow-ripple-expand {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
  }
  100% {
    width: 500px; /* Increased from 300px to 500px */
    height: 500px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

.product-image-container {
  position: relative;
  overflow: hidden;
  height: 250px;
  min-height: 250px;
  background: #1e1e1e;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.product-image-container::before {
  content: "\f03e"; /* Font Awesome image icon */
  font-family: "Font Awesome 5 Free";
  font-size: 3rem;
  color: #333;
  position: absolute;
  z-index: 0;
}

.product-img {
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  object-fit: cover;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 3;
}

/* Share Button */
.share-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.7);
  border: none;
  border-radius: 50%;
  color: #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 4;
  font-size: 14px;
}

.share-btn:hover {
  background-color: var(--main-color);
  color: white;
  transform: scale(1.1);
}

/* Product Badges */
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 8px 12px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  z-index: 2;
}

.new {
  background-color: #2ecc71;
}

.sale {
  background-color: #e74c3c;
}

/* Stock Status */
.stock-status {
  padding: 6px 10px;
  border-radius: 15px;
  font-size: 1.2rem; /* Increased from 12px */
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
}


.stock-status.in-stock {
  background-color: rgba(46, 204, 113, 0.1);
  color: white;
  border: 1px solid rgba(46, 204, 113, 0.9);
  box-shadow: 0 2px 4px rgba(46, 204, 113, 0.2);
}

.stock-status.low-stock {
  background-color: rgba(241, 196, 15, 0.2);
  border: 1px solid rgba(241, 196, 15, 0.9);
  box-shadow: 0 2px 4px rgba(241, 196, 15, 0.2);
  color: white;
}

.stock-status.out-of-stock {
  background-color: rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(231, 76, 60, 0.9);
  box-shadow: 0 2px 4px rgba(231, 76, 60, 0.2);
  color: white;
}

.stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}

.price-stock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 15px;
}

/* Update price margin since it's now in the row */
.price {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color);
  margin: 0; /* Remove bottom margin */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .price-stock-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .stock-status {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .stock-status {
    font-size: 1rem;
  }
}

.debug-border {
  border: 2px solid red !important;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.product-name {
  font-size: 24px;
  font-weight: 600;
  color: #f0f0f0;
  margin: 0 0 10px;
}

.price {
  font-size: 16px;
  font-weight: 700;
  color: var(--main-color);
  margin: 0 0 10px;
}

.ea {
  font-size: 12px;
  font-weight: normal;
  color: #aaa;
}

.shipping {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #2ecc71 !important;
  font-size: 1.2rem;
  margin: 0 0 10px;
}

.attribution {
  font-size: 1.3rem;
  color: #888;
  margin: 0 0 15px;
}

.attribution a {
  color: var(--main-color);
  text-decoration: none;
  transition: var(--transition);
}

.attribution a:hover {
  text-decoration: underline;
}

/* Product Content Layout */
.product-content {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

/* Quantity Counter */
.quantity-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--bg3);
  border-radius: var(--border-radius);
  padding: 8px;
  border: 1px solid #444;
  min-width: 50px;
  flex-shrink: 0;
}

.quantity-btn {
  width: 32px;
  height: 32px;
  border: none;
  background-color: var(--bg3) !important;
  color: #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  transition: var(--transition);
  border-radius: 4px;
}

.quantity-btn:hover {
  background-color: var(--main-color) !important;
  color: white;
}

.quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quantity-btn:disabled:hover {
  background-color: transparent;
  color: #e0e0e0;
}

.quantity-display {
  font-size: 16px;
  font-weight: 600;
  color: var(--main-color);
  padding: 8px 0;
  min-width: 24px;
  text-align: center;
}

.description {
  font-size: 12px;
  line-height: 1.5;
  color: #bbb;
  margin: 0 0 20px;
  flex-grow: 1;
}

.button-group {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.cart-btn, .order-btn {
  padding: 12px 18px;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
  min-height: 48px;
}

.order-btn {
  font-weight: 600;
}

.cart-btn {
  background-color: var(--bg3);
  color: #f0f0f0;
  border: 1px solid #444;
  flex-grow: 1;
}

.cart-btn:hover {
  background-color: #2a2620;
  border-color: var(--accent-color);
}

.order-btn {
  background-image: linear-gradient(to right, var(--main-color) 0%, var(--light-accent) 51%, var(--accent-color) 100%);
  color: white;
  background-size: 200% auto;
  flex-grow: 2;
}

.order-btn:hover {
  background-position: right center;
}

/* Pagination - Dark Theme */
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination {
  display: flex;
  gap: 8px;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background-color: var(--bg2);
  color: #f0f0f0;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border: 1px solid #333;
  font-size: 1.4rem;
}

.page-link.next {
  width: auto;
  border-radius: 20px;
  padding: 0 15px;
  min-width: 60px;
}

.page-link.active {
  background-color: var(--main-color);
  color: white;
  border-color: var(--main-color);
}

.page-link:hover:not(.active) {
  background-color: #2a2620;
  border-color: var(--accent-color);
}

/* Media Queries for Products Section */
@media (max-width: 991px) {
  .title {
    font-size: 28px;
  }
  
  .subtitle {
    font-size: 14px;
  }
  
  .filter-label {
    font-size: 14px;
  }

  .filter-group .heading {
    margin-right: 55rem;

  }
  
  .filter-btn {
    font-size: 14px;
    padding: 12px 12px;
    min-height: 40px;
  }
  
  .sort-select {
    font-size: 14px;
    padding: 12px 12px;
    min-height: 40px;
  }
  
  .product-name {
    font-size: 24px;
  }
  
  .price {
    font-size: 18px;
  }
  
  .ea {
    font-size: 12px;
  }
  
  .shipping {
    font-size: 14px;
  }
  
  .attribution {
    font-size: 13px;
  }
  
  .description {
    font-size: 12px;
  }
  
  .cart-btn, .order-btn {
    font-size: 16px;
    padding: 12px 16px;
    min-height: 48px;
  }
  
  .page-link {
    font-size: 14px;
    min-width: 44px;
    min-height: 44px;
  }
  
  .toast, .toast-notification {
    font-size: 14px;
  }
  
  .modal-content {
    font-size: 16px;
  }
  
  .close-btn {
    font-size: 24px;
    min-width: 44px;
    min-height: 44px;
  }
  
  .product-badge {
    font-size: 12px;
    padding: 6px 10px;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 100px 15px 40px;
  }
  
  .title {
    font-size: 26px;
  }
  
  .subtitle {
    font-size: 14px;
  }
  
  .filter-label {
    font-size: 14px;
  }
  
  .filter-btn {
    font-size: 13px;
    padding: 11px 15px;
    min-height: 44px;
  }
  
  .sort-select {
    font-size: 13px;
    padding: 11px 15px;
    min-height: 44px;
  }
  
  .filter-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .filter-group {
    width: 100%;
  }

  .filter-group .heading {
    margin-right: 18rem;

  }
  
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .product-content {
    flex-direction: column;
    gap: 10px;
  }

  .quantity-control {
    flex-direction: row;
    align-self: flex-start;
    min-width: auto;
  }

  .quantity-display {
    padding: 0 12px;
  }
  
  .product-name {
    font-size: 24px;
  }
  
  .price {
    font-size: 17px;
  }
  
  .ea {
    font-size: 12px;
  }
  
  .shipping {
    font-size: 13px;
  }
  
  .attribution {
    font-size: 13px;
  }
  
  .description {
    font-size: 12px;
  }
  
  .cart-btn, .order-btn {
    font-size: 15px;
    padding: 11px 15px;
    min-height: 44px;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .cart-btn, .order-btn {
    width: 100%;
  }
  
  .page-link {
    font-size: 12px;
    min-width: 40px;
    min-height: 40px;
  }
  
  .toast, .toast-notification {
    font-size: 13px;
  }
  
  .modal-content {
    font-size: 15px;
  }
  
  .close-btn {
    font-size: 22px;
    min-width: 40px;
    min-height: 40px;
  }
  
  .product-badge {
    font-size: 12px;
    padding: 6px 8px;
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 24px;
  }
  
  .subtitle {
    font-size: 13px;
  }
  
  .filter-label {
    font-size: 13px;
  }
  
  .filter-btn {
    font-size: 12px;
    padding: 10px 14px;
    min-height: 40px;
  }
  
  .sort-select {
    font-size: 12px;
    padding: 10px 14px;
    min-height: 40px;
  }
  
  .product-name {
    font-size: 24px;
  }
  
  .price {
    font-size: 16px;
  }
  
  .ea {
    font-size: 12px;
  }
  
  .shipping {
    font-size: 12px;
  }
  
  .attribution {
    font-size: 12px;
  }
  
  .description {
    font-size: 12px;
  }
  
  .cart-btn, .order-btn {
    font-size: 14px;
    padding: 10px 14px;
    min-height: 40px;
  }
  
  .page-link {
    font-size: 12px;
    min-width: 38px;
    min-height: 38px;
  }
  
  .toast, .toast-notification {
    font-size: 12px;
  }
  
  .modal-content {
    font-size: 14px;
  }
  
  .close-btn {
    font-size: 20px;
    min-width: 38px;
    min-height: 38px;
  }
  
  .product-badge {
    font-size: 12px;
    padding: 5px 7px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 22px;
  }
  
  .subtitle {
    font-size: 13px;
  }
  
  .filter-label {
    font-size: 12px;
  }
  
  .filter-btn {
    font-size: 12px;
    padding: 9px 12px;
    min-height: 38px;
  }
  
  .sort-select {
    font-size: 12px;
    padding: 9px 12px;
    min-height: 38px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .filter-buttons {
    width: 100%;
    justify-content: space-between;
  }
  
  .filter-btn {
    flex: 1;
    text-align: center;
    font-size: 12px;
    padding: 9px 10px;
    min-height: 38px;
  }
  
  .sort-select {
    width: 100%;
    font-size: 12px;
    min-height: 38px;
  }
  
  .product-name {
    font-size: 24px;
  }
  
  .price {
    font-size: 15px;
  }
  
  .ea {
    font-size: 12px;
  }
  
  .shipping {
    font-size: 12px;
  }
  
  .attribution {
    font-size: 12px;
  }
  
  .description {
    font-size: 12px;
  }
  
  .cart-btn, .order-btn {
    font-size: 13px;
    padding: 9px 12px;
    min-height: 38px;
  }
  
  .page-link {
    font-size: 12px;
    min-width: 36px;
    min-height: 36px;
  }
  
  .toast, .toast-notification {
    font-size: 12px;
  }
  
  .modal-content {
    font-size: 13px;
  }
  
  .close-btn {
    font-size: 18px;
    min-width: 36px;
    min-height: 36px;
  }
  
  .product-badge {
    font-size: 12px;
    padding: 4px 6px;
  }
}

@media (max-width: 450px) {
  .title {
    font-size: 20px;
  }
  
  .subtitle {
    font-size: 12px;
  }
  
  .filter-label {
    font-size: 12px;
  }
  
  .filter-btn {
    font-size: 12px;
    padding: 8px 10px;
    min-height: 36px;
  }
  
  .sort-select {
    font-size: 12px;
    padding: 8px 10px;
    min-height: 36px;
  }
  
  .product-name {
    font-size: 24px;
  }
  
  .price {
    font-size: 14px;
  }
  
  .ea {
    font-size: 12px;
  }
  
  .shipping {
    font-size: 12px;
  }
  
  .attribution {
    font-size: 12px;
  }
  
  .description {
    font-size: 12px;
  }
  
  .cart-btn, .order-btn {
    font-size: 12px;
    padding: 8px 10px;
    min-height: 36px;
  }
  
  .page-link {
    font-size: 12px;
    min-width: 34px;
    min-height: 34px;
  }
  
  .toast, .toast-notification {
    font-size: 12px;
  }
  
  .modal-content {
    font-size: 12px;
  }
  
  .close-btn {
    font-size: 16px;
    min-width: 34px;
    min-height: 34px;
  }
  
  .product-badge {
    font-size: 12px;
    padding: 4px 5px;
  }
}

/* Lazy loading effect */
.lazy-load {
  opacity: 0;
  transition: opacity 0.5s ease;
  min-height: 100px; /* Provide minimum height before image loads */
  background-color: #2a2a2a; /* Placeholder color while loading */
}

.lazy-load:not(.loaded) {
  opacity: 0;
}

.lazy-load.loaded {
  opacity: 1;
}

/* FAQ Section */
.faq .heading {
  padding-bottom: 1rem;
  margin-top: 15rem;
}

#faq-item1 {
  margin-top: 18px;
}

.faq-section {
  width: 80%;
  margin: auto;
  padding: 2rem 0;
}

.faq-item {
  background: transparent;
  margin-bottom: 2rem;
  border-radius: 5px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 2rem;
  font-size: 1.7rem;
  background-image: linear-gradient(to left, #c7a172 0%, #c6965c 51%, #a17137 100%);
  color: #eee;
  transition: 0.4s;
  border-radius: 20px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 1rem;
  color: #eee;
  font-size: 16px;
  line-height: 2;
}

.faq-item.active .faq-answer {
  max-height: 10rem;
}

.arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border: solid whitesmoke;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 4px;
  transition: transform 0.3s;
}

.faq-item.active .arrow {
  transform: translateY(-50%) rotate(45deg);
}

@media only screen and (max-width: 768px) {
  .faq-section {
    width: 90%;
    height: 100%;
  }
  
  .faq-answer {
    font-size: 1.4rem;
  }

  .faq-item.active .faq-answer {
    max-height: 20rem;
  }
  
  .arrow {
    padding: 3px;
  }
}

/* Terms Section */
.terms {
  color: var(--main-color);
}

.terms .heading {
  margin-top: 16rem;
}

.terms p {
  color: white;
  font-size: 1.5rem;
  margin: 1rem 0 0 3rem;
  text-transform: none;
}

.terms p span {
  /* color: #CD1C18; */
  color: var(--accent-color);
}

.terms p a {
  color: var(--main-color);
  text-transform: none;
}

.terms h3 {
  font-size: 3rem;
  background: linear-gradient(to right, var(--main-color) 0%, var(--light-accent) 51%, var(--accent-color) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0f0e09 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
  color: white;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 20" fill="none"><g stroke="rgba(255,255,255,0.12)" stroke-width="0.4" stroke-linecap="round"><path d="M0,1 Q50,0.9 100,1.1 T200,1"/><path d="M0,3 Q50,2.8 100,3.2 T200,3"/><path d="M0,5 Q50,4.7 100,5.3 T200,5"/><path d="M0,7 Q50,6.6 100,7.4 T200,7"/><path d="M0,9 Q50,8.5 100,9.5 T200,9"/><path d="M0,11 Q50,10.4 100,11.6 T200,11"/><path d="M0,13 Q50,12.3 100,13.7 T200,13"/><path d="M0,15 Q50,14.2 100,15.8 T200,15"/><path d="M0,17 Q50,16.1 100,17.9 T200,17"/><path d="M0,19 Q50,18.0 100,19.0 T200,19"/></g></svg>') repeat;
  background-size: 30px 30px;
  pointer-events: none;
  opacity: 0.7;
}
.heading {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
  letter-spacing: -0.02em;
}


.contact-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  color: white;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  /* background: rgba(255, 255, 255, 0.1); */
  background: var(--bg2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198, 150, 92, 0.2);
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(to right, var(--main-color) 0%, var(--light-accent) 51%, var(--accent-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.contact-method-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-method-info p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

.form-container {
  background: var(--bg2);
  border: 1px solid rgba(198, 150, 92, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  position: relative;
}

.form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
}

.form-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-subtitle {
  color: #fff;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color:  #fff;
  font-weight: 500;
  font-size: 12px;
}

.form-input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid var(--text-color);
  border-radius: 12px;
  font-size: 12px;
  transition: all 0.3s ease;
  background: var(--bg-primary);
  color: var(--text-primary);
}

.form-input:focus {
  outline: none;
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  transform: translateY(-1px);
}

.form-input::placeholder {
  color: #7d7d7d;
  opacity: 0.7;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.form-submit {
  background: linear-gradient(to right, var(--main-color) 0%, var(--light-accent) 51%, var(--accent-color) 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 205, 53, 0.3);
}

.form-submit:active {
  transform: translateY(0);
}

.success-message {
  display: none;
  background: #2ecc71;
  color: white;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .contact {
      padding: 3rem 1rem;
  }

  .contact p {
      font-size: 12px;
  }

  .contact-container {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .heading {
      font-size: 2.5rem;
  }

  .form-container {
      padding: 2rem;
  }

  .contact-methods {
      order: 2;
  }

  .form-container {
      order: 1;
  }
}


/* Splide Carousel */
.review {
  padding: 4rem 0;

}



.gallery-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask: linear-gradient(
      to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
  );
  -webkit-mask: linear-gradient(
      to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%
  );
}

.carousel-track {
  display: flex;
  animation: scroll 20s linear infinite;
  gap: 2rem;
}

.carousel-slide {
  flex: 0 0 auto;
  width: 280px;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  background: white;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.carousel-slide:hover img {
  transform: scale(1.05);
}

.carousel-slide:hover {
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}

@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(calc(-280px * 7 - 2rem * 7));
  }
}

/* Pause on hover */
.gallery-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Responsive design */
@media (max-width: 768px) {
  .carousel-slide {
      width: 300px;
      height: 400px;
  }
  
  @keyframes scroll {
      0% {
          transform: translateX(0);
      }
      100% {
          transform: translateX(calc(-300px * 7 - 2rem * 7));
      }
  }
}

@media (max-width: 480px) {
  .carousel-slide {
      width: 250px;
      height: 350px;
  }
  
  @keyframes scroll {
      0% {
          transform: translateX(0);
      }
      100% {
          transform: translateX(calc(-250px * 7 - 2rem * 7));
      }
  }
}

        /* Enhanced Footer Styles */
        .footer {
          background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
          padding: 4rem 2rem 2rem;
          border-top: 1px solid rgba(198, 150, 92, 0.2);
          position: relative;
          overflow: hidden;
            }

        .footer::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 2px;
          background: linear-gradient(90deg, transparent, var(--main-color), transparent);
            }

            .footer-container {
          max-width: 1200px;
          margin: 0 auto;
            }

            /* Header Section */
            .footer-header {
          text-align: center;
          margin-bottom: 3rem;
            }

            .footer-logo {
          font-size: 40px;
          font-weight: bold;
          color: var(--main-color);
          margin-bottom: 0.5rem;
          letter-spacing: 2px;
          font-family: "industry", sans-serif;
            }

            .footer-tagline {
          color: var(--light-text);
          font-size: 1.4rem;
          font-style: italic;
          opacity: 0.8;
            }

            /* Main Footer Content */
            .footer-content {
          display: grid;
          grid-template-columns: 2fr 1fr 1fr;
          gap: 3rem;
          margin-bottom: 3rem;
            }

            .footer-section h3 {
          color: var(--main-color);
          font-size: 1.6rem;
          margin-bottom: 1.5rem;
          position: relative;
          padding-bottom: 0.5rem;
          font-weight: 600;
            }

            .footer-section h3::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 30px;
          height: 2px;
          background: var(--main-color);
            }

            /* Navigation Links */
            .nav-links {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          gap: 0.8rem;
            }

            .nav-links a {
          color: var(--light-text);
          text-decoration: none;
          padding: 0.5rem 0;
          transition: all 0.3s ease;
          border-radius: 4px;
          position: relative;
          overflow: hidden;
          font-size: 1.4rem;
          opacity: 0.9;
            }

            .nav-links a::before {
          content: '';
          position: absolute;
          left: -100%;
          top: 0;
          width: 100%;
          height: 100%;
          background: linear-gradient(90deg, transparent, rgba(198, 150, 92, 0.1), transparent);
          transition: left 0.5s ease;
            }

            .nav-links a:hover::before {
          left: 100%;
            }

            .nav-links a:hover {
          color: var(--main-color);
          transform: translateX(5px);
          opacity: 1;
            }

            /* Contact Info */
            .contact-info {
          display: flex;
          flex-direction: column;
          gap: 1rem;
            }

            .contact-item {
          display: flex;
          align-items: center;
          gap: 0.8rem;
          color: var(--light-text);
          font-size: 1.3rem;
          opacity: 0.9;
            }

            .contact-item i {
          color: var(--main-color);
          font-size: 1.4rem;
          width: 20px;
          text-align: center;
            }

            /* Social Media */
            .social-links {
          display: flex;
          gap: 1rem;
          justify-content: flex-start;
            }

            .social-links a {
          width: 45px;
          height: 45px;
          background: transparent;
          border: 1px solid rgba(255, 255, 255, 0.3);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--light-text);
          text-decoration: none;
          transition: all 0.3s ease;
          position: relative;
          overflow: hidden;
          font-size: 1.4rem;
            }

            .social-links a::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 0;
          height: 0;
          background: var(--main-color);
          border-radius: 50%;
          transition: all 0.3s ease;
          transform: translate(-50%, -50%);
          z-index: -1;
            }

            .social-links a:hover::before {
          width: 100%;
          height: 100%;
            }

            .social-links a:hover {
          color: #000;
          border-color: var(--main-color);
          transform: translateY(-3px);
            }

            /* Footer Bottom */
            .footer-bottom {
          border-top: 1px solid rgba(198, 150, 92, 0.2);
          padding-top: 2rem;
          display: flex;
          flex-direction: column;
          gap: 1.5rem;
            }

            .footer-legal {
          display: flex;
          justify-content: center;
          flex-wrap: wrap;
          gap: 1.5rem;
          margin-bottom: 1rem;
            }

            .footer-legal a {
          color: var(--light-text);
          text-decoration: none;
          font-size: 1.2rem;
          padding: 0.3rem 0.8rem;
          border-radius: 4px;
          transition: all 0.3s ease;
          opacity: 0.8;
            }

            .footer-legal a:hover {
          color: var(--main-color);
          background: rgba(198, 150, 92, 0.1);
          opacity: 1;
            }

            .privacy-choices {
          display: flex;
          justify-content: center;
          margin-bottom: 1rem;
            }

            .privacy-link {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          color: var(--light-text);
          text-decoration: none;
          font-size: 1.2rem;
          padding: 0.5rem 1rem;
          border: 1px solid rgba(198, 150, 92, 0.2);
          border-radius: 25px;
          background: rgba(255, 255, 255, 0.03);
          transition: all 0.3s ease;
          opacity: 0.9;
            }

            .privacy-link:hover {
          color: var(--main-color);
          border-color: var(--main-color);
          background: rgba(198, 150, 92, 0.1);
          transform: translateY(-2px);
          opacity: 1;
            }

            .privacy-icon {
          width: 28px;
          height: auto;
          opacity: 0.8;
            }

            .helcim-logo{
              height: 22px;
              color: #fff;
              background-color: #8667E9;
              padding: 4px;
              border-radius: 4px;
            }

            .footer-copyright {
          text-align: center;
          display: flex;
          flex-direction: column;
          gap: 0.5rem;
          color: var(--light-text);
          font-size: 1.2rem;
          opacity: 0.8;
            }

            .copyright-main {
          display: flex;
          align-items: center;
          justify-content: center;
          flex-wrap: wrap;
          gap: 0.5rem;
            }

            .square-logo {
          height: 20px;
          width: auto;
          margin: 0 0.3rem;
          filter: brightness(0.8);
            }

            .made-by {
          font-size: 1.2rem;
          opacity: 0.7;
            }

            .made-by span {
          color: var(--main-color);
          font-weight: 500;
            }

/* Responsive Design - Improved Mobile Footer with Dropdowns */
@media (max-width: 968px) {
  .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
      text-align: center;
  }
  
  .nav-links {
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
  }
  
  .social-links {
      justify-content: center;
      gap: 1.2rem;
  }
  
  .footer-logo {
      font-size: 4.5rem;
      margin-bottom: 0.5rem;
  }
  
  .footer-tagline {
      font-size: 1.4rem;
      margin-bottom: 1.5rem;
  }
  
  .footer-section h3 {
      font-size: 1.8rem;
      margin-bottom: 1.2rem;
  }
  
  .nav-links a {
      font-size: 1.3rem;
      padding: 0.6rem 0.4rem;
  }
  
  .contact-item {
      font-size: 1.3rem;
      margin-bottom: 0.8rem;
  }
  
  .footer-legal a {
      font-size: 12px;
  }
  
  .privacy-link {
      font-size: 1.2rem;
  }
  
  .footer-copyright {
      font-size: 1.2rem;
  }
  
  .made-by {
      font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .footer {
      padding: 3rem 1.5rem 1.5rem;
  }
  
  .footer-header {
      margin-bottom: 2.5rem;
  }
  
  .footer-content {
      gap: 2.5rem;
  }
  
  /* Mobile Dropdown Styles - Only for nav and contact sections */
  .footer-section:not(.social-section) {
      position: relative;
  }
  
  .footer-section:not(.social-section) h3 {
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem;
      border-bottom: 1px solid rgba(198, 150, 92, 0.2);
      border-radius: 8px;
      transition: all 0.3s ease;
      margin-bottom: 0;
      font-size: 1.4rem;
  }
  
  .footer-section:not(.social-section) h3:hover {
      background: rgba(198, 150, 92, 0.2);
  }
  
  .footer-section:not(.social-section) h3::before {
      content: '\f107';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      font-size: 1.2rem;
      transition: transform 0.3s ease;
  }
  
  .footer-section:not(.social-section).active h3::before {
      transform: rotate(180deg);
  }
  
  .footer-section:not(.social-section) h3::after {
      display: none;
  }
  
  /* Keep social section header styled differently - not like a dropdown */
  .social-section h3 {
      cursor: default !important;
      display: block !important;
      padding: 0.5rem 0 !important;
      background: transparent !important;
      border-radius: 0 !important;
      margin-bottom: 1.5rem !important;
      font-size: 1.4rem !important;
      color: var(--main-color) !important;
      text-align: center !important;
      font-weight: 600 !important;
      letter-spacing: 1px !important;
      text-transform: uppercase !important;
      position: relative !important;
      gap: 0 !important;
      align-items: flex-start !important;
      justify-content: flex-start !important;
      flex-direction: column !important;
  }
  
  .social-section h3:hover {
      background: transparent !important;
  }
  
  .social-section h3::before {
      display: none !important;
      content: none !important;
  }
  
  .social-section h3::after {
      content: '' !important;
      position: absolute !important;
      bottom: -5px !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      width: 40px !important;
      height: 2px !important;
      background: var(--main-color) !important;
  }
  
  /* Dropdown Content - Only for nav and contact */
  .nav-links,
  .contact-info {
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease;
      margin-top: 0;
      opacity: 0;
  }
  
  .footer-section.active .nav-links,
  .footer-section.active .contact-info {
      max-height: 500px;
      margin-top: 1rem;
      opacity: 1;
      padding: 1rem;
      background: rgba(0, 0, 0, 0.2);
      border-radius: 8px;
  }
  
  /* Social links stay visible */
  .social-links {
      max-height: none !important;
      overflow: visible !important;
      margin-top: 0 !important;
      opacity: 1 !important;
      gap: 1rem !important;
      justify-content: center !important;
      padding: 0 !important;
      background: transparent !important;
      border-radius: 0 !important;
  }
  .nav-links {
      grid-template-columns: 1fr;
      gap: 0.8rem;
  }
  
  .nav-links a {
      font-size: 1.3rem;
      padding: 0.8rem;
      background: rgba(198, 150, 92, 0.05);
      border-radius: 6px;
      display: block;
      transition: all 0.3s ease;
  }
  
  .nav-links a:hover {
      background: rgba(198, 150, 92, 0.15);
      transform: translateX(0);
  }
  
  .social-links a {
      width: 44px;
      height: 44px;
      font-size: 1.4rem;
  }
  
  .contact-info {
      gap: 1rem;
  }
  
  .contact-item {
      font-size: 1.3rem;
      margin-bottom: 0;
      justify-content: center;
      padding: 0.5rem;
  }
  
  .contact-item i {
      font-size: 1.4rem;
      margin-right: 0.8rem;
  }
  
  .footer-bottom {
      margin-top: 2rem;
      gap: 1.5rem;
  }
  
  .footer-legal {
      flex-direction: row;
      justify-content: center;
      flex-wrap: wrap;
      align-items: center;
      gap: 1rem;
  }
  
  .footer-legal a {
      font-size: 11px;
      padding: 0.8rem 1.2rem;
      background: rgba(198, 150, 92, 0.1);
      border-radius: 8px;
      text-align: center;
      flex: 0 1 auto;
  }
  
  .privacy-choices {
      margin: 1.2rem 0;
  }
  
  .privacy-link {
      font-size: 1.3rem;
      padding: 1rem 1.5rem;
  }
  
  .copyright-main {
      flex-direction: row;
      gap: 0.8rem;
      align-items: center;
  }
  
  .copyright-main span,
  .copyright-main a {
      font-size: 1.2rem;
  }
  
  .footer-logo {
      font-size: 4.5rem;
  }
  
  .footer-tagline {
      font-size: 1.3rem;
  }
  
  .made-by {
      font-size: 1.2rem;
      margin-top: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer {
      padding: 2rem 1rem 1rem;
  }
  
  .footer-header {
      margin-bottom: 2rem;
  }
  
  .footer-content {
      gap: 2rem;
  }
  
  .footer-logo {
      font-size: 4.5rem;
  }
  
  .footer-tagline {
      font-size: 1.2rem;
      line-height: 1.4;
  }
  
  .footer-section:not(.social-section) h3 {
      font-size: 1.3rem;
      padding: 0.8rem;
  }
  
  .footer-section:not(.social-section) h3::before {
      font-size: 1.2rem;
  }
  
  .social-section h3 {
      font-size: 12px !important;
      margin: 0 0 22px 0 !important;
  }
  
  .nav-links a {
      font-size: 1.2rem;
      padding: 0.7rem;
  }
  
  .social-links {
      gap: 0.8rem !important;
  }
  
  .social-links a {
      width: 40px;
      height: 40px;
      font-size: 1.3rem;
  }
  
  .contact-item {
      font-size: 1.2rem;
      padding: 0.4rem;
  }
  
  .contact-item i {
      font-size: 1.3rem;
      margin-right: 0.6rem;
      min-width: 20px;
  }
  
  .footer-bottom {
      margin-top: 1.5rem;
      gap: 1.2rem;
  }
  
  .footer-legal {
      gap: 0.5rem;
  }
  
  .footer-legal a {
      font-size: 10px;
      padding: 0.6rem 0.8rem;
      flex: 1 1 auto;
      min-width: 0;
  }

  .footer-section h3 {
    font-size: 12px;
  }
  
  .privacy-choices {
      margin: 1rem 0;
  }
  
  .privacy-link {
      font-size: 1.2rem;
      padding: 0.8rem 1.2rem;
      gap: 0.5rem;
  }
  
  .privacy-icon {
      width: 16px;
      height: 16px;
  }
  
  .copyright-main span,
  .copyright-main a {
      font-size: 1.2rem;
      line-height: 1.4;
  }
  
  .helcim-logo {
      height: 18px;
  }
  
  .made-by {
      font-size: 1.2rem;
      margin-top: 0.6rem;
  }
}

/* Maintain 12px minimum even on very small screens */
@media (max-width: 360px) {
  .footer {
      padding: 1.5rem 0.8rem 0.8rem;
  }
  
  .footer-logo {
      font-size: 4.5rem;
  }
  
  .footer-tagline {
      font-size: 1.2rem;
  }
  
  .footer-section:not(.social-section) h3 {
      font-size: 1.2rem;
      padding: 0.7rem;
  }
  
  .social-section h3 {
      font-size: 1.2rem !important;
  }

  .footer-section h3 {
    font-size: 12px;
  }
  
  .nav-links a {
      font-size: 1.2rem;
      padding: 0.6rem;
  }
  
  .contact-item {
      font-size: 1.2rem;
  }
  
  .contact-item i {
      font-size: 1.2rem;
  }
  
  .social-links a {
      width: 36px;
      height: 36px;
      font-size: 1.2rem;
  }
  
  .footer-legal a {
      font-size: 1rem;
      padding: 0.5rem 0.6rem;
  }
  
  .privacy-link {
      font-size: 1.2rem;
      padding: 0.6rem 0.8rem;
  }
  
  .copyright-main span,
  .copyright-main a,
  .made-by {
      font-size: 1.2rem;
  }
  
  .privacy-icon {
      width: 14px;
      height: 14px;
  }
}

/* Accessibility/UX improvements for font and button sizes in media queries */

/* 991px and below */
@media (max-width: 991px) {
  html {
    font-size: 58%; /* Slightly larger for better readability */
  }
  .heading {
    font-size: 3.2rem;
  }

  .submit-btn,
  .order-btn,
  .cart-btn,
  .form-submit {
    font-size: 1.7rem;
    padding: 1.2rem 3rem;
    min-height: 48px;
  }
  .form-control,
  .form-input,
  select.form-control {
    font-size: 1.2rem;
    min-height: 48px;
    padding: 1.2rem 1.5rem;
  }
  .filter-btn,
  .sort-select {
    font-size: 14px;
    min-height: 44px;
    padding: 10px 18px;
  }
}

/* 768px and below */
@media (max-width: 768px) {
  html {
    font-size: 56%;
  }
  .heading {
    font-size: 2.7rem;
  }

  .submit-btn,
  .order-btn,
  .cart-btn,
  .form-submit {
    font-size: 1.5rem;
    padding: 1.1rem 2.5rem;
    min-height: 44px;
  }
  .form-control,
  .form-input,
  select.form-control {
    font-size: 12px;
    min-height: 44px;
    padding: 1.1rem 1.2rem;
  }
  .filter-btn,
  .sort-select {
    font-size: 12px;
    min-height: 40px;
    padding: 9px 14px;
  }
  .faq-answer {
    font-size: 1.6rem;
  }
  .service-check span {
    font-size: 1.5rem;
  }
  .page-link {
    font-size: 12px;
    min-width: 40px;
    min-height: 40px;
  }
}

/* 600px and below */
@media (max-width: 600px) {
  html {
    font-size: 54%;
  }

  .submit-btn,
  .order-btn,
  .cart-btn,
  .form-submit {
    font-size: 1.4rem;
    padding: 1rem 2rem;
    min-height: 40px;
  }
  .form-control,
  .form-input,
  select.form-control {
    font-size: 12px;
    min-height: 40px;
    padding: 1rem 1rem;
  }
  .filter-btn,
  .sort-select {
    font-size: 12px;
    min-height: 38px;
    padding: 8px 10px;
  }
}

/* 480px and below */
@media (max-width: 480px) {
  html {
    font-size: 52%;
  }
  .heading {
    font-size: 3.2rem;
  }
  .btn,
  .submit-btn,
  .order-btn,
  .cart-btn,
  .form-submit {
    font-size: 1.5rem;
    padding: 1.2rem 1.5rem;
    min-height: 38px;
  }
  .form-control,
  .form-input,
  select.form-control {
    font-size: 12px;
    min-height: 38px;
    padding: 0.9rem 0.8rem;
  }
  .filter-btn,
  .sort-select {
    font-size: 12px;
    min-height: 36px;
    padding: 7px 7px;
  }
  .page-link {
    font-size: 12px;
    min-width: 36px;
    min-height: 36px;
  }
}

/* 450px and below */
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .btn,
  .submit-btn,
  .order-btn,
  .cart-btn,
  .form-submit {
    font-size: 1.5rem;
    padding: 1.2rem 1.5rem;
    min-height: 36px;
  }
  .form-control,
  .form-input,
  select.form-control {
    font-size: 12px;
    min-height: 36px;
    padding: 0.8rem 0.7rem;
  }
  .filter-btn,
  .sort-select {
    font-size: 12px;
    min-height: 34px;
    padding: 6px 5px;
  }
  .page-link {
    font-size: 12px;
    min-width: 34px;
    min-height: 34px;
  }
}