/* Importing Fonts */
/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=BJ+Cree:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  color: #1f2937;
}

a:hover {
  text-decoration: none;
  color: #1f2937;
}

body {
  font-family: "Playfair Display", serif;
  background-color: #f6f5ed;
}

p {
  font-size: 18px;
}


/* Top Bar Container */
.om-top-bar {
    background-color: #1f2937; /* Dark Theme */
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.om-top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Contact Links */
.om-top-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.om-top-contact a {
    color: #e5e7eb;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.om-top-contact i {
    color: #C19A5B; /* Gold Icons */
    font-size: 14px;
}

.om-top-contact a:hover {
    color: #C19A5B;
}

.om-divider {
    color: #4b5563;
    font-weight: 300;
}

/* Social Media Icons */
.om-top-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.om-top-socials span {
    color: #9ca3af;
    margin-right: 5px;
    font-weight: 500;
}

.om-top-socials a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.om-top-socials a:hover {
    background-color: #C19A5B;
    color: #1f2937;
    transform: translateY(-2px);
}

/* Responsive Hide on Mobile */
@media (max-width: 768px) {
    .om-top-bar {
        display: none; /* Usually hidden on mobile to save vertical space */
    }
}

header {
  width: 100%;
  background: #f6f5ed;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 10px;
}

.header-top .contact-info a {
  color: #1f2937;
  font-size: 20px;
  display: block;
  font-family: "Poppins", serif;
}



.header-top .logo {
  display: flex;
  align-items: center;
}

.header-top .logo img {
  width: 80px;
  /* height: 50px; */
  margin-right: 10px;
}

.header-top .logo h1 {
  color: #1f2937;
  font-size: 25px;
}

.om-nav-container {
  border-top: 1px solid #e5e7eb;
  margin-top: 5px;
  background-color: #f6f5ed;
  position: sticky;
  top: 0;
  z-index: 999;
}

.om-nav-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.om-nav-item {
  position: relative;
}

.om-nav-item > a {
  display: block;
  padding: 15px 25px;
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.om-nav-item > a:hover {
  color: #c19a5b;
}

.om-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 10px 0;
  margin: 0;
  z-index: 999;
  border-top: 3px solid #c19a5b;
}

.om-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}

.om-dropdown-menu li a:hover {
  background-color: #f6f5ed;
  color: #c19a5b;
}

.om-has-dropdown:hover .om-dropdown-menu {
  display: block;
}

.om-has-dropdown:hover .fa-caret-down {
  transform: rotate(180deg);
  transition: transform 0.3s;
}

.btn-c {
  background-color: #c19a5b;
  color: white;
  padding: 0.5rem 1.5rem;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-c-2 {
  background-color: transparent;
  color: #1f2937;
  border: 2px solid #c19a5b;
  padding: 0.5rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-c:hover {
  background-color: #b48b48;
}

.btn-c-2:hover {
  background-color: #c19a5b;
  color: white;
  border-color: #c19a5b;
}

.om-menu-toggle,
.om-mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .om-desktop-only {
    display: none;
  }
  .om-mobile-only {
    display: block;
  }

  .header-top .logo h1 {
    font-size: 20px;
  }
  .header-top .logo img {
    width: 70px;
  }

  .om-menu-toggle {
    display: block;
    z-index: 1001;
  }
  .om-hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .om-hamburger span {
    width: 30px;
    height: 3px;
    background: #1f2937;
    transition: 0.3s;
  }

  .om-nav-container {
    position: fixed;
    top: -100vh; 
    left: 0;
    width: 100%;
    height: 100vh;
    background: #f6f5ed;
    transition: top 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    z-index: 1000;
    overflow-y: auto;
  }

  #om-nav-checker:checked ~ .om-hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  #om-nav-checker:checked ~ .om-hamburger span:nth-child(2) {
    opacity: 0;
  }
  #om-nav-checker:checked ~ .om-hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  #om-nav-checker {
    display: none;
  }
  #om-nav-checker:checked ~ .om-hamburger + .logo {
    display: none;
  } 

  .om-nav-container.active {
    top: 0;
  }

  .om-nav-menu {
    flex-direction: column;
    padding-top: 80px;
    text-align: center;
  }

  .om-dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    background: #eceadd;
  }

  .om-social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 24px;
  }
}


/* Carousel Container */
.om-hero-carousel {
    position: relative;
    height: 400px; /* Adjust this to make the banner taller/shorter */
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    background-color: #1f2937;
}

/* Track and Slides */
.om-carousel-track-container {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.om-carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 100%;
    transition: transform 250ms ease-in;
}

.om-carousel-slide {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.om-carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures images fill the space without stretching */
    object-position: center;
}

.om-carousel-caption {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white box */
    padding: 40px;
    border-left: 5px solid #C19A5B;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeUp 0.8s ease forwards;
}

.om-caption-title {
    font-size: 36px;
    color: #1f2937;
    margin: 0 0 15px 0;
}

.om-caption-text {
    font-size: 18px;
    color: #4b5563;
    margin: 0 0 25px 0;
    line-height: 1.5;
}

.om-carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 20px;
    color: #1f2937;
    z-index: 10;
    transition: all 0.3s ease;
}

.om-carousel-button:hover {
    background: #C19A5B;
    color: white;
}

.om-carousel-button-left { left: 20px; }
.om-carousel-button-right { right: 20px; }

.om-carousel-nav {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    width: 100%;
    gap: 12px;
    z-index: 10;
}

.om-carousel-indicator {
    border: 0;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.om-carousel-indicator.current-indicator {
    background: #C19A5B;
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .om-hero-carousel { height: 350px; }
    .om-carousel-caption {
        left: 5%;
        right: 5%;
        padding: 25px;
        max-width: none;
    }
    .om-caption-title { font-size: 24px; }
    .om-carousel-button { display: none; } /* Hide arrows on mobile to save space */
}


/* Container Setup */
.om-about-preview {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.om-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Column Styling */
.om-about-image-wrapper {
    position: relative;
    padding-right: 30px;
    padding-bottom: 30px;
}

.om-image-offset-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background-color: #F6F5ED;
    border: 2px solid #C19A5B;
    z-index: 1;
    border-radius: 4px;
}

.om-about-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Floating Experience Badge */
.om-experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 4px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(31, 41, 55, 0.2);
    border-bottom: 3px solid #C19A5B;
}

.om-experience-badge .om-years {
    font-size: 36px;
    font-weight: 700;
    color: #C19A5B;
    line-height: 1;
}

.om-experience-badge .om-text {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
}

/* Text Column Styling */
.om-about-text-content {
    padding-left: 20px;
}

.om-section-subtitle {
    color: #C19A5B;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.om-about-text-content h2 {
    color: #1f2937;
    font-size: 38px;
    line-height: 1.2;
    margin: 0 0 25px 0;
    font-weight: 700;
}

.om-about-text-content p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Stylish Outline Button */
.om-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    background: transparent;
    border: 2px solid #8c5c03;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.om-btn-outline i {
    transition: transform 0.3s ease;
}

.om-btn-outline:hover {
    background-color: #8c5c03;
    color: #ffffff;
}

.om-btn-outline:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .om-about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .om-about-text-content {
        padding-left: 0;
        text-align: center;
    }
    
    .om-experience-badge {
        left: 10px;
        top: -20px;
    }
}

@media (max-width: 768px) {
    .om-about-preview {
        padding: 60px 0;
    }
    
    .om-about-text-content h2 {
        font-size: 28px;
    }
    
    .om-experience-badge {
        padding: 15px;
    }
    
    .om-experience-badge .om-years {
        font-size: 28px;
    }
}

/* Layout & Container */
.om-categories-section {
    padding: 80px 0;
    /* background-color: #ffffff; */
}

.om-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.om-section-title {
    text-align: center;
    margin-bottom: 50px;
}

.om-section-title h2 {
    font-size: 32px;
    color: #1f2937;
    margin: 0 0 10px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

/* The small gold underline */
.om-section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #C19A5B;
}

.om-section-title p {
    color: #6b7280;
    font-size: 16px;
}

/* The Grid */
.om-categories-grid {
    display: grid;
    /* Automatically creates columns based on available space */
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* The Card */
.om-category-card {
    display: block;
    background: #fff;
    text-decoration: none;
    border-radius: 6px;
    overflow: hidden; /* Keeps the zoomed image inside */
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.om-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.08);
    border-color: #e5e7eb;
}

/* Image Wrapper */
.om-category-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.om-category-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Zoom image on card hover */
.om-category-card:hover .om-category-img-wrapper img {
    transform: scale(1.08);
}

/* Card Content Area */
.om-category-content {
    padding: 20px;
    text-align: center;
    border-top: 3px solid transparent; /* Prepare for hover state */
    transition: border-color 0.3s;
}

.om-category-card:hover .om-category-content {
    border-top: 3px solid #C19A5B; /* Gold accent appears on hover */
}

.om-category-content h3 {
    color: #1f2937;
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

/* Explore Link & Arrow */
.om-explore-link {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.om-explore-link i {
    transition: transform 0.3s ease;
}

/* Arrow slides to the right and turns gold on hover */
.om-category-card:hover .om-explore-link {
    color: #C19A5B;
}

.om-category-card:hover .om-explore-link i {
    transform: translateX(5px);
}

.om-b2b-cta-centered {
    background-color: #1f2937;
    padding: 40px 20px;
    margin: 40px 0;
    border-top: 4px solid #C19A5B;
    border-bottom: 4px solid #C19A5B;
    text-align: center;
}

.om-b2b-content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.om-b2b-subtitle-centered {
    color: #C19A5B;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 20px;
}

.om-b2b-content-centered h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 25px 0;
    line-height: 1.2;
}

.om-highlight-gold {
    color: #C19A5B;
}

.om-b2b-content-centered p {
    color: #d1d5db; 
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.om-btn-indiamart-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #C19A5B;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px; 
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(193, 154, 91, 0.4); 
}

.om-btn-indiamart-large:hover {
    background-color: #B48B48;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(193, 154, 91, 0.6);
    color: white;
}

@media (max-width: 768px) {
    
    .om-b2b-content-centered p {
        font-size: 16px;
    }
    
    .om-btn-indiamart-large {
        width: 100%;
        padding: 10px 10px;
        font-size: 16px;
    }
}

/* Section Setup */
.om-testimonials-section {
    padding: 80px 0;
    background-color: #F6F5ED; /* Light cream background for contrast */
}

/* The Swiper Container */
.om-testimonial-swiper {
    padding-bottom: 50px; /* Space for the dots */
}

/* Individual Card */
.om-testimonial-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%; /* Ensures all cards stretch to same height */
    display: flex;
    flex-direction: column;
    border-top: 4px solid transparent;
    transition: all 0.3s ease;
}

.om-testimonial-card:hover {
    border-top-color: #C19A5B;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Quote Icon & Stars */
.om-quote-icon {
    font-size: 36px;
    color: rgba(193, 154, 91, 0.2); /* Very light gold watermark effect */
    margin-bottom: 15px;
}

.om-stars {
    color: #C19A5B;
    font-size: 14px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Review Text */
.om-review-text {
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
    flex-grow: 1; /* Pushes author info to the bottom evenly */
    font-style: italic;
    margin-bottom: 25px;
}

/* Author Info */
.om-reviewer {
    display: flex;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.om-reviewer-info h4 {
    color: #1f2937;
    font-size: 16px;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.om-reviewer-info span {
    color: #6b7280;
    font-size: 13px;
}

/* Customizing Swiper Default Dots to match Brand */
.om-testimonial-swiper .swiper-pagination-bullet {
    background-color: #1f2937;
    opacity: 0.3;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.om-testimonial-swiper .swiper-pagination-bullet-active {
    background-color: #C19A5B;
    opacity: 1;
    width: 25px;
    border-radius: 5px; /* Makes the active dot a pill shape */
}

/* Container & Breadcrumbs */
.om-container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

.om-page-header {
    background-color: #F6F5ED;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.om-breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #9ca3af;
}

.om-breadcrumbs a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
}

.om-breadcrumbs a:hover { color: #C19A5B; }
.om-active-page { color: #1f2937; font-weight: 600; }

/* Main Flexbox Layout - BULLETPROOF */
.om-product-showcase {
    padding: 60px 0 100px 0;
    background-color: #ffffff;
}

.om-showcase-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start; /* Prevents stretching */
}

/* The min-width: 0 is the magic bullet that stops 
   Swiper/Flexbox from expanding infinitely 
*/
.om-gallery-side {
    flex: 1 1 500px;
    min-width: 0; 
}

.om-details-side {
    flex: 1 1 500px;
    min-width: 0;
}

/* Sticky Gallery */
.om-gallery-sticky {
    position: sticky;
    top: 120px; /* Adjust based on your header height */
}

/* Swiper Styling & Strict Constraints */
.om-swiper-main {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #F6F5ED;
    border: 1px solid #e5e7eb;
    margin-bottom: 15px;
}

/* Forces the box to be a perfect square or specific ratio, fixing layout jumps */
.om-image-box {
    width: 100%;
    aspect-ratio: 4 / 3; /* Or 1/1 for square */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.om-image-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Shows whole image without stretching */
}

/* Arrows */
.om-nav-arrow {
    color: #C19A5B !important;
    background: #ffffff;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.om-nav-arrow::after { font-size: 18px !important; font-weight: bold; }

/* Thumbnails */
.om-swiper-thumbs {
    width: 100%;
    overflow: hidden;
    padding: 5px 0;
}

.om-thumb-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #F6F5ED;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    cursor: pointer;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.om-swiper-thumbs .swiper-slide-thumb-active .om-thumb-box {
    border-color: #C19A5B;
    background: #ffffff;
}

.om-thumb-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Product Info Styling */
.om-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.om-badge-gold {
    background: rgba(193, 154, 91, 0.1);
    color: #C19A5B;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.om-badge-dark {
    background: #f3f4f6;
    color: #4b5563;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.om-title-main {
    font-size: 40px;
    color: #1f2937;
    margin: 0 0 15px 0;
    font-weight: 700;
    line-height: 1.2;
}

.om-price-box {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.om-price-tag {
    display: block;
    font-size: 36px;
    color: #C19A5B;
    font-weight: 700;
}

.om-price-suffix {
    font-size: 14px;
    color: #6b7280;
}

.om-desc-box {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 40px;
}

/* Modern Specs List */
.om-specs-block h3 {
    font-size: 22px;
    color: #1f2937;
    margin-bottom: 20px;
}

.om-specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.om-specs-list li {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
}

.om-spec-name {
    width: 40%;
    color: #1f2937;
    font-weight: 600;
    font-size: 15px;
}

.om-spec-val {
    width: 60%;
    color: #6b7280;
    font-size: 15px;
}

/* Buttons */
.om-action-bar {
    display: flex;
    gap: 15px;
}

.om-btn-gold, .om-btn-dark {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.om-btn-gold {
    background-color: #C19A5B;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(193, 154, 91, 0.3);
}

.om-btn-gold:hover {
    background-color: #B48B48;
    color: white;
    transform: translateY(-2px);
}

.om-btn-dark {
    background-color: #1f2937;
    color: #ffffff;
}

.om-btn-dark:hover {
    background-color: #111827;
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .om-gallery-sticky {
        position: static;
    }
}

@media (max-width: 576px) {
    .om-title-main { font-size: 30px; }
    .om-specs-list li {
        flex-direction: column;
        gap: 5px;
    }
    .om-spec-name, .om-spec-val { width: 100%; }
    .om-action-bar { flex-direction: column; }
}

/* Category Hero Banner */
.om-category-hero {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.om-category-hero-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(to bottom, rgba(31, 41, 55, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.om-category-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.om-category-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.om-category-hero-content p {
    font-size: 20px;
    color: #e5e7eb;
    margin: 0;
    font-weight: 300;
}

/* Product Listing Section */
.om-listing-section {
    padding: 60px 0 100px 0;
    background-color: #ffffff;
}

.om-listing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.om-listing-header h2 {
    color: #1f2937;
    font-size: 30px;
    margin: 0;
    font-weight: 700;
}

.om-listing-meta {
    color: #6b7280;
    font-size: 15px;
    font-weight: 500;
}

/* CSS Grid - Replaces Bootstrap Columns */
.om-products-grid {
    display: grid;
    /* Automatically creates responsive columns. Min width is 260px */
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* The Product Card */
.om-prod-card {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.om-prod-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #e5e7eb;
    transform: translateY(-5px);
}

.om-prod-link-wrapper {
    text-decoration: none;
    display: block;
    color: inherit;
}

/* Image Box */
.om-prod-img-box {
    width: 100%;
    aspect-ratio: 4 / 3; /* Locks all images to the same height */
    position: relative;
    overflow: hidden;
    background-color: #F6F5ED;
}

.om-prod-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.om-prod-card:hover .om-prod-img-box img {
    transform: scale(1.08); /* Zoom effect */
}

/* Dark Overlay on Hover */
.om-prod-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(31, 41, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.om-prod-card:hover .om-prod-overlay {
    opacity: 1;
}

.om-quick-view {
    background: #ffffff;
    color: #1f2937;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.om-prod-card:hover .om-quick-view {
    transform: translateY(0);
}

/* Product Info Box */
.om-prod-info {
    padding: 20px;
    text-align: center;
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.om-prod-card:hover .om-prod-info {
    border-top-color: #C19A5B; /* Gold line appears on hover */
}

.om-prod-info h3 {
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; /* Adds '...' if title is too long */
}

.om-prod-action {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.om-prod-card:hover .om-prod-action {
    color: #C19A5B;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .om-category-hero { height: 250px; }
    .om-category-hero-content h1 { font-size: 32px; }
    
    .om-listing-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* Catalog Page Header */
.om-catalog-header {
    background-color: #F6F5ED;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.om-catalog-header .om-breadcrumbs {
    justify-content: center;
    margin-bottom: 20px;
}

.om-catalog-title {
    font-size: 36px;
    color: #1f2937;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.om-catalog-subtitle {
    color: #6b7280;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Catalog Grid Layout */
.om-catalog-section {
    padding: 60px 0 100px 0;
    background-color: #ffffff;
}

.om-catalog-grid {
    display: grid;
    /* Automatically creates columns that are at least 260px wide */
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

/* Product Card Styling */
.om-catalog-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #f3f4f6;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.om-catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: #e5e7eb;
}

.om-card-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Image Container - Locks Aspect Ratio */
.om-card-img-container {
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes every image a perfect square */
    background-color: #F6F5ED; /* Fallback color */
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.om-card-img-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.om-catalog-card:hover .om-card-img-container img {
    transform: scale(1.08); /* Slight zoom on hover */
}

/* Card Text Info */
.om-card-info {
    padding: 20px;
    flex-grow: 1; /* Pushes the button to the bottom evenly */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.om-catalog-card:hover .om-card-info {
    border-top-color: #C19A5B; /* Gold accent appears on hover */
}

.om-card-title {
    font-size: 16px;
    color: #1f2937;
    margin: 0 0 15px 0;
    font-weight: 600;
    line-height: 1.4;
}

/* Action Button */
.om-card-action {
    margin-top: auto;
}

.om-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    transition: color 0.3s ease;
}

.om-view-btn i {
    transition: transform 0.3s ease;
}

.om-catalog-card:hover .om-view-btn {
    color: #C19A5B;
}

.om-catalog-card:hover .om-view-btn i {
    transform: translateX(5px); /* Arrow slides right */
}

/* Responsive Overrides */
@media (max-width: 576px) {
    .om-catalog-grid {
        /* Makes cards full width on very small phones */
        grid-template-columns: 1fr; 
    }
    
    .om-catalog-title {
        font-size: 28px;
    }
}

/* About Hero Banner */
.om-about-hero {
    background-color: #1f2937;
    background-image: radial-gradient(circle at top right, #2d3748 0%, #1f2937 80%);
    padding: 50px 0 100px 0;
    border-bottom: 4px solid #C19A5B;
}

.om-breadcrumbs-light a, .om-breadcrumbs-light {
    color: #9ca3af !important;
}
.om-breadcrumbs-light a:hover {
    color: #ffffff !important;
}
.om-breadcrumbs-light .om-active-page {
    color: #C19A5B !important;
}

.om-hero-text {
    margin-top: 50px;
    max-width: 800px;
}

.om-hero-title {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.om-text-gold {
    color: #C19A5B;
}

.om-hero-subtitle {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
}

/* Our Story Section */
.om-story-section {
    padding: 100px 0;
    background: #ffffff;
}

.om-story-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.om-story-image-wrapper {
    flex: 1 1 450px;
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.om-story-img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.om-story-content {
    flex: 1 1 500px;
}

.om-section-label {
    color: #C19A5B;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
}

.om-story-content h2 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 25px;
    line-height: 1.2;
}

.om-story-content p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.om-story-highlights ul {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
}

.om-story-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 12px;
    font-weight: 500;
}

.om-story-highlights i {
    color: #C19A5B;
    font-size: 18px;
}

/* Mission & Vision */
.om-mission-vision {
    background: #F6F5ED;
    padding: 80px 0;
}

.om-mv-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.om-mv-card {
    flex: 1 1 400px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-top: 4px solid #C19A5B;
    transition: transform 0.3s ease;
}

.om-mv-card:hover {
    transform: translateY(-5px);
}

.om-mv-icon {
    width: 60px;
    height: 60px;
    background: rgba(193, 154, 91, 0.1);
    color: #C19A5B;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 25px;
}

.om-mv-card h3 {
    font-size: 24px;
    color: #1f2937;
    margin-bottom: 15px;
}

.om-mv-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Core Values */
.om-values-section {
    padding: 100px 0;
    background: #ffffff;
}

.om-section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.om-section-header-center h2 {
    font-size: 36px;
    color: #1f2937;
}

.om-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.om-value-box {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #f3f4f6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.om-value-box:hover {
    border-color: #C19A5B;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.om-value-box i {
    font-size: 40px;
    color: #1f2937;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.om-value-box:hover i {
    color: #C19A5B;
}

.om-value-box h4 {
    font-size: 20px;
    color: #1f2937;
    margin-bottom: 15px;
}

.om-value-box p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 15px;
}

/* Stats Section */
.om-stats-section {
    background-color: #1f2937;
    padding: 80px 0;
    color: #ffffff;
}

.om-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.om-stat-number {
    font-size: 54px;
    font-weight: 700;
    color: #C19A5B;
}

.om-stat-plus {
    font-size: 40px;
    font-weight: 700;
    color: #C19A5B;
    margin-left: 2px;
}

.om-stat-item p {
    font-size: 16px;
    color: #d1d5db;
    margin-top: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Simple CTA */
.om-about-cta {
    background: #F6F5ED;
    padding: 80px 20px;
    text-align: center;
}

.om-about-cta h2 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 30px;
}

.om-about-cta a {
    margin: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .om-hero-title { font-size: 36px; }
    .om-story-content h2 { font-size: 28px; }
    .om-stat-number { font-size: 40px; }
}

/* Contact Section Layout */
.om-contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.om-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.om-contact-info-side {
    flex: 1 1 400px;
}

.om-contact-form-side {
    flex: 1 1 600px;
}

/* Info Card Styling */
.om-info-card {
    background: #F6F5ED;
    padding: 40px;
    border-radius: 8px;
    border-top: 4px solid #C19A5B;
}

.om-info-card h3 {
    font-size: 26px;
    color: #1f2937;
    margin-bottom: 15px;
}

.om-info-desc {
    color: #6b7280;
    font-size: 15px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.om-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.om-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.om-info-icon {
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #C19A5B;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.om-info-text strong {
    display: block;
    color: #1f2937;
    font-size: 16px;
    margin-bottom: 5px;
}

.om-info-text span, .om-info-text a {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s;
}

.om-info-text a:hover {
    color: #C19A5B;
}

/* Socials inside Info Card */
.om-contact-socials {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 15px;
}

.om-contact-socials span {
    font-weight: 600;
    color: #1f2937;
}

.om-contact-socials a {
    width: 35px;
    height: 35px;
    background: #1f2937;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.om-contact-socials a:hover {
    background: #C19A5B;
    transform: translateY(-3px);
}

/* Form Card Styling */
.om-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
}

.om-form-card h3 {
    font-size: 26px;
    color: #1f2937;
    margin-bottom: 25px;
}

.om-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.om-form-row {
    display: flex;
    gap: 20px;
}

.om-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.om-form-group label {
    font-size: 14px;
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 8px;
}

.om-form-group input,
.om-form-group select,
.om-form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #f9fafb;
    font-size: 15px;
    color: #1f2937;
    transition: all 0.3s ease;
    font-family: inherit;
}

.om-form-group input:focus,
.om-form-group select:focus,
.om-form-group textarea:focus {
    outline: none;
    border-color: #C19A5B;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(193, 154, 91, 0.1);
}

.om-submit-btn {
    margin-top: 10px;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    cursor: pointer;
    border: none;
}

/* Map Section */
.om-map-section {
    width: 100%;
    display: flex;
    /* Removes the tiny gap below the iframe */
    line-height: 0; 
}

/* Responsive */
@media (max-width: 768px) {
    .om-form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .om-info-card, .om-form-card {
        padding: 25px;
    }
}

.om-footer {
    background-color: #1f2937; 
    color: #e5e7eb;
    margin-top: 60px; 
}

.om-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.om-footer-newsletter {
    background-color: #F6F5ED; 
    color: #1f2937;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.om-footer-newsletter h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
}

.om-newsletter-form {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
    flex-wrap: wrap;
}

.om-newsletter-form input {
    padding: 12px 20px;
    width: 100%;
    max-width: 350px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    font-size: 15px;
}

.om-newsletter-form input:focus {
    border-color: #C19A5B;
}

.om-footer-main {
    padding: 60px 0;
}

.om-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.om-footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.om-footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #C19A5B;
}

.om-footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #9ca3af;
}

.om-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.om-footer-col ul li {
    margin-bottom: 12px;
}

.om-footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    display: inline-block;
}

.om-footer-col ul li a:hover {
    color: #C19A5B;
    transform: translateX(5px); 
}

.om-footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.om-footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #374151;
    color: #ffffff;
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
    text-decoration: none;
}

.om-footer-social a:hover {
    background-color: #C19A5B;
    transform: translateY(-3px); 
}

.om-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #9ca3af;
    font-size: 15px;
}

.om-footer-contact-list i {
    color: #C19A5B;
    margin-top: 4px;
}

.om-footer-bottom {
    background-color: #111827;
    padding: 20px 0;
    color: #9ca3af;
    text-align: center;
}

.om-footer-bottom p {
       font-size: 15px;

}
