/*!
Theme Name: gold sun
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: gold-sun
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

gold sun is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/
body{
    overflow-x: hidden;
}

/* hero swiper slide  */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Content sits above slideshow */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Dot navigation */
.slide-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fff;
}



/* hamburger */

/* ── Menu Toggle Button ── */
.menu-toggle {
    background: #5a4a3a;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ── Hide default menu ── */
#primary-menu {
    display: none;
}

/* ── Overlay: full screen, split into two halves ── */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    visibility: hidden;
    pointer-events: none;
}

.menu-overlay.is-open {
    visibility: visible;
    pointer-events: all;
}


/* ── LEFT PANEL — dark menu side ── */
.overlay-left {
    width: 50%;
    background: var(--secondary);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);

    
}

/* ── RIGHT PANEL — image side ── */
.overlay-right {
    width: 50%;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1) 0.04s;
    position: relative;
}

.overlay-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ── Slide in when open ── */
.menu-overlay.is-open .overlay-left,
.menu-overlay.is-open .overlay-right {
    transform: translateX(0);
}

/* ── Overlay top bar (logo + close btn) ── */
.overlay-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 44px;
    border-bottom: 1px solid var(--bg-pink);
}

 .overlay-logo img {
    /* height: 45px; */
    width: auto;
    display: block;
}

/* ── Close Button ── */
.menu-close {
    background: none;
    border: 1.5px solid var(--primary);
    font-size: 14px;
    padding: 9px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, color 0.2s;
}

.menu-close:hover {
    border-color: var(--primary);
    color: var(--secondary);
    background: var(--primary);
}

/* ── Nav Links ── */
.menu-overlay #primary-menu {
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    flex: 1;
    padding: 10px 44px;
    list-style: none;
    margin: 0;
    text-align: left;
}

.menu-overlay #primary-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    list-style: none;
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity 0.4s, transform 0.4s;
}

.menu-overlay #primary-menu li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.menu-overlay.is-open #primary-menu li {
    opacity: 1;
    transform: translateX(0);
}

/* ── Stagger each link ── */
.menu-overlay.is-open #primary-menu li:nth-child(1) { transition-delay: 0.22s; }
.menu-overlay.is-open #primary-menu li:nth-child(2) { transition-delay: 0.29s; }
.menu-overlay.is-open #primary-menu li:nth-child(3) { transition-delay: 0.36s; }
.menu-overlay.is-open #primary-menu li:nth-child(4) { transition-delay: 0.43s; }
.menu-overlay.is-open #primary-menu li:nth-child(5) { transition-delay: 0.50s; }
.menu-overlay.is-open #primary-menu li:nth-child(6) { transition-delay: 0.57s; }
.menu-overlay.is-open #primary-menu li:nth-child(7) { transition-delay: 0.64s; }

.menu-overlay #primary-menu li a {
    display: block;
    padding: 18px 0;
    font-size: 25px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    text-transform: capitalize;
    transition: color 0.2s, padding-left 0.2s;
    font-family: var(--primary-font);
     letter-spacing: -1%;
     opacity: 0.8;
}

.menu-overlay #primary-menu li a:hover {
    color: var(--primary);
    padding-left: 10px;
    opacity: 1;
}


/* sample 404 page */
.not-found{
    padding: 60px 20px;
    text-align: center;
}
.page-title {
    font-size: 40px;
    margin-bottom: 20px;
    font-family: var(--secondary-font);
    color: var(--text-black);
}
.page-content {
    font-size: 16px;  
    color:var(--text-light);
    font-family: var(--primary-font);
    letter-spacing: -1%;
}


/* ── Responsive: stack on mobile ── */
@media (max-width: 768px) {
    .overlay-left {
        width: 100%;
    }
    .overlay-right {
        display: none;
    }
}


.site-header {
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: transparent;
	position: fixed; 
    transition: background 0.3s ease;
}

.site-header.header-default {
    position: static;
    background: white;
}

.site-header.scrolled {
    background: #ffffff; 
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
	padding: 10px 0;
}
.site-header.scrolled .hamburger-icon, .site-header.scrolled .main-navigation .menu-text {
	color: #333;
	/* border-color: #333; */
}
.site-header.scrolled .hamburger-icon, .site-header.scrolled .main-navigation .menu-text:hover {
    /* color: var(--secondary); */
    color: var(--text-black);
}
.site-header span .hover:hover {
    color: var(--secondary) !important;
}

.site-header.header-default .main-navigation .menu-text{
color: #EA2529;
}

.site-header.header-default .main-navigation .hamburger-icon {
    color: #EA2529;
    }


.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 5px 0; */
    /* padding-top: 20px !important; */
}


/* 3. Site Branding (Logo) */
.site-branding img {
    max-height: 90px;
    width: auto;
    display: block;
}

/* 4. Navigation & Menu Toggle (The "Fix") */
.main-navigation {
    display: block; 
}

.menu-toggle {
    display: flex !important; 
    align-items: center;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    gap: 8px;
    padding: 0;
}

.hamburger-icon {
    font-size: 20px;
}

/* Hide the actual list of links until clicked (standard for this design) */
#primary-menu {
    display: none; 
}


/* ===== SHARED HERO / BANNER HEIGHT ===== */
.about-us-section,
.products-section{
  position: relative !important;
  height: 800px !important;        /* ← change this one value to update all pages */
  overflow: hidden !important;
}

/* Make all background/cover images fill the fixed height */
.hero-banner .hero-slideshow,
.hero-banner .hero-slideshow .slide,
.about-us-section .about-us-bg-img,
.products-section img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;    /* crops nicely without stretching */
}

/* ===== RESPONSIVE HEIGHTS ===== */
@media (max-width: 1024px) {
  .hero-banner,
  .about-us-section,
  .products-section {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .hero-banner,
  .about-us-section,
  .products-section {
    height: 280px;
  }
}





















/* 5. Hero Banner Section */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: 100vh; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center !important; 
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg-img {
    position: absolute;
    inset: 0;          
    width: 100%;
    height: 100%;
    object-fit: cover;  
    object-position: center; 
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 90%;
    position: relative;
    z-index: 1; 
    
}
.menu-text,.menu-text1{
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 400;
}

/* 6. Typography with Blue Underlines */
.hero-subtitle {
    font-size: 42px;
    font-weight: 400;
    margin: 0;
    display: inline-block;
    position: relative;
    line-height: 1.2;
    font-family: var(--third-font);
    letter-spacing: -1%;
}

/* The Blue Underline on Subtitle */
.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 3px;
    /* background-color: #3498db;  */
    z-index: -1;
}


.hero-subtitle span{
    font-size: 110px;
    font-weight: 700;
    text-transform: none; 
    line-height: 1;
    display: block;
    position: relative;
    font-family: var(--secondary-font); 
}

/* Responsive Breakpoints */

@media (max-width: 1024px) {
    .menu-toggle {
        padding: 5px;
    }
}


@media (max-width: 991px) {
    .hero-title { font-size: 70px; }
    .hero-subtitle { font-size: 30px; }
}

/* Mobile Devices (Phones) */
@media (max-width: 768px) {
    .hero-banner {
        background-attachment: scroll; 
    }
    .menu-text{
        display: none;
    }
}

@media (max-width: 600px) {

    .hero-banner {
        background-size: cover;
        background-position: center top; 
        background-repeat: no-repeat;
        width: 100%;
        /* height: 100vw;  */
        min-height: 380px;
        display: flex;
        align-items: flex-end; 
        padding-bottom: 20px;
    }

    .hero-content {
        padding: 0 16px 20px;
    }

    .hero-subtitle {
        font-size: 24px;
        color: #fff;
        font-weight: 400;
        margin-bottom: 4px;
    }

    .hero-title {
        font-size: 50px;
        color: #fff;
        font-weight: 700;
        margin: 0;
    }

}


/* about-us section  */

/* Wrapper for all 3 cards */
.story-section {
    background-size: cover;
    background-position: center;
    /* padding: 145px 0; */
    min-height: 905px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* margin-top: -110px; */
}
.story-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    position: relative;
    margin-top: -120px !important;
}

/* 1. The Image Stack (Two Cards) */
.image-stack {
    position: relative;
    width: 500px; 
    height: 550px;
    flex-shrink: 0;
}

.image-stack img {
    position: absolute;
    border-radius: 20px;
    object-fit: cover;
}

/* Top-Left Image */
.img-one {
   width: 520px;
    height: 420px;
    top: 70px;
    left: 80px;
    z-index: 1;

   /* animation */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Bottom-Right Image */
.img-two {
    width: 400px;
    height: 265px;
    bottom: 0;
    right: -125px;
    z-index: 2;
    top: 24rem;

    /* animation */
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

/* 2. The Red Card (Third Card) */
.red-content-card {
    max-width: 600px;
    padding: 23px 60px;
    border-radius: 15px;
    color: #ffffff;
    z-index: 0;
   

    /* animation */
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
   
}
.card-inner{
    position: relative;
    left: 100px;
    width: 75%;
    display: flex;
    flex-direction: column;
      /* align-items: center */
}

/* Text Styling */
.story-logo {
     display: block;
    /* margin: 0 auto; */
    margin-bottom: 20px;
}
.logo-wrapper {
    text-align: center;
     display: flex;
    justify-content: center; 
    width: 100%;

    /* animation */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}


.story-title {
    width: 100%;
    max-width: 600px;   /* adjust to your preferred width */
    text-align: left;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
}

.story-title h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: var(--secondary-font);
}

.story-title p {
    font-size: 16px;  
    line-height:28px;     
    color:var(--secondary);
    margin-bottom: 30px;
    font-family: var(--primary-font);
    font-weight: 400;
    letter-spacing: -1%;

}

.txt-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    gap: 12px;
    text-transform: uppercase;
    font-size:16px;                  
    align-items: center; 
    font-family: var(--primary-font);
    letter-spacing: 0%;


    /* animation  */   
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}
       
.story-section.is-visible .img-one,
.story-section.is-visible .img-two,
.story-section.is-visible .red-content-card,
.story-section.is-visible .logo-wrapper,
.story-section.is-visible .story-title,
.story-section.is-visible .txt-btn {
    opacity: 1;
    transform: translate(0, 0);
}

/* arrow hover animation on button */
.txt-btn .arrow-icon svg {
    transition: transform 0.3s ease;
}
.txt-btn:hover .arrow-icon svg {
    transform: translateX(5px);
}

/* subtle float on img-two */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-10px); }
}
.story-section.is-visible .img-two {
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
}
.arrow-icon {
    display: inline-block;
    width: 35px;  /* Adjust the size of the circle here */
    height: 35px;
}

.arrow-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

/* Optional: Add a nice hover effect */
.txt-btn:hover .arrow-icon svg {
    transform: translateX(5px);
}
.hidden-img-mbl{
    display: none;
}
/* ============================================
   RESPONSIVE MEDIA QUERIES — STORY SECTION
   ============================================ */

/* Large Desktop — 1280px and below */
@media (max-width: 1280px) {
    .story-wrapper {
        max-width: 100%;
        padding: 0 40px;
    }
} 

/* Medium Desktop / Tablet Landscape — 1024px and below */
@media (max-width: 1024px) {
    .story-section {
        min-height: 600px;
        padding: 60px 0;
    }
    .story-wrapper {
        padding: 0 30px;
        padding-top: 80px;

    }
    .image-stack {
        width: 360px;
        height: 460px;
    }
    .img-one {
        width: 280px;
        height: 220px;
        top: 110px;
        left: 20px;
    }
    .img-two {
        width: 240px;
        height: 145px;
        top: auto;
        bottom: 0;
        right: 0;
    }
    .red-content-card {
        /* width: 400px; */
        height: auto;
        min-height: 420px;
        padding: 30px 40px;
        margin-left: -80px;
    }
    .card-inner {
        left: 60px;
        width: 82%;
    }
    /* .story-title h2 {
        font-size: 26px;
    } */
}

/* Medium Tablet — 992px and below */
@media (max-width: 992px) {
    .story-section {
        min-height: 650px;
        padding: 60px 0;
    }
    .story-wrapper {
        padding-top: 100px;
    }
    .image-stack {
        width: 380px;
        height: 480px;
    }
    .img-one {
        width: 300px;
        height: 235px;
        top: 120px;
        left: 25px;
    }
    .img-two {
        width: 255px;
        height: 155px;
        top: auto;
        bottom: 0;
        right: 0;
    }
    .red-content-card {
        /* width: 420px; */
        height: auto;
        min-height: 440px;
        padding: 30px 45px;
        margin-left: -85px;
    }
    .card-inner {
        left: 70px;
        width: 80%;
    }
    .story-title h2 {
        font-size: 32px;
    } 
}

/* Tablet Portrait — 768px and below */
@media (max-width: 768px) {
    /* Stack vertically */
    .story-wrapper {
        flex-direction: column;
        align-items: center;
        padding-top: 130px;
    }

    /* Image stack becomes centered and shrinks */
    .image-stack {
        width: 100%;
        max-width: 420px;
        height: 380px;
        flex-shrink: 0;
    }
    .img-one {
        width: 100%;
        height: 270px;
        top: 50px;
        left: -55px;
        }

    .img-two {
        width: 80%;
        height: 185px;
        top: auto;
        bottom: -10px;
        right: -55px;
    }

    /* Red card full-width, no overlap */
    .red-content-card {
        width: 100%;
        max-width: 500px;
        height: auto;
        min-height: unset;
        margin-left: 0;
        padding: 40px 40px;
        border-radius: 15px;
    }
    .card-inner {
        position: static;
        left: unset;
        width: 100%;
    }
  
    .logo-wrapper {
        text-align: center;
    }
    
        .red-content-card {
        order: 1;
    }

    .image-stack {
        order: 2;
    }
    .story-title p{
        margin-bottom: 20px;
    }

}

/* Mobile Large — 600px and below */
@media (max-width: 600px) {
    .story-section {
        padding: 50px 16px;
    }
    .image-stack {
        max-width: 340px;
        height: 310px;
    }

    .footer-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:"brand brand" "nav products" "contact contact";
    }
    .hero-subtitle span{
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .hamburger-icon {
    font-size: 30px;
  }


 .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 7px !important;
 }

    .story-wrapper {
        display: flex;
        flex-direction: column;
    }

    /* Hide image stack div entirely */
    .image-stack {
        display: none;
    }

    /* img-two hidden */
    .img-two {
        display: none;
    }

    /* Red card takes full width */
    .red-content-card {
        order: 1;
        width: 100%;

    }
    
    /* Reorder card-inner as column */
    .card-inner {
        display: flex;
        flex-direction: column;
    }

    /* Hide logo */
    .logo-wrapper {
        display: none;
    }

    /* 1st - h2 */
    .story-title {
        order: 1;
       
    }

    /* 2nd - img-one pulled OUT of image-stack and placed here */
    .img-one {
        order: 2;
        display: block;
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 8px;
        margin: 16px 0;
    }

    /* 3rd - description */
    .story-title p {
        order: 3;
    }

    /* 4th - button */
    .txt-btn {
        order: 4;
    }
    .story-section {
        background-image: none !important;
        background-color: #560103;
        /* padding: 0; */
    }

    .story-wrapper {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    /* Red content card comes FIRST (top) */
    .red-content-card {
        order: 1;
        width: 100%;
        border-radius: 0;
        padding: 0;
    }

    .card-inner {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* Hide logo on mobile */
    .logo-wrapper {
        display: none;
    }

    .story-title h2 {
        /* font-size: 30px; */
        /* font-weight: 700; */
        color: #fff;
        line-height: 1.2;
        margin: 0;
        text-align: left;
    }

    .story-title p {
        font-size: 14px;
        color: #fff;
        line-height: 1.6;
        margin: 0;
        text-align: left;
    }

    .txt-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-decoration: none;
        margin-top: 8px;
        justify-content: flex-start;
        /* margin-bottom: 60px; */
    }

}



/* Small Mobile — 375px and below */
@media (max-width: 375px) {
    .image-stack {
        max-width: 270px;
        height: 240px;
    }
    .hero-subtitle span{
        font-size: 60px;
    }
    
    .img-two {
        width: 50%;
        height: 105px;
    }
    .txt-btn {
        font-size: 12px;
        gap: 8px;
        /* margin-bottom: 30px; */
    }
    .arrow-icon {
        width: 28px;
        height: 28px;
    }
    .testimonial-title{
        font-size: 24px !important;
    }
}



/* Header */
.products-header {
    text-align: center;
    margin-bottom: 40px;
}
.products-header h2 {
    color: var(--tertiary);
    text-transform: uppercase;
    /* margin-bottom: 10px; */
    font-family: var(--secondary-font);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -2%;
    line-height: 49.3px;
}


.products-header p {
     font-size: 16px;  
    line-height:28px;     
    color:var(--text-light);
    margin-bottom: 30px;
    font-family: var(--primary-font);
    font-weight: 400;
    letter-spacing: -1%;
    line-height: 37px;
}

/* Filter Bar */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    

    position: sticky;
    top: 110px;
    z-index: 99;
   padding: 12px 0;
    /* margin-bottom: 20px; */
    transition: box-shadow 0.3s ease;
        background: var(--bg-pink)

}


.filter-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    background-color: #560103;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: 500;
    font-family: var(--primary-font);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;

}
.filter-btn:hover {
    background-color: #3d0102;
    transform: scale(1.03);
}

.filter-btn.active {
    background-color: transparent;
    border: 1px solid #560103;
    color: #560103;
    transform: scale(1.03);
    font-family: var(--primary-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -1%;
}

.filter-btn.active:hover {
    background-color: rgba(86, 1, 3, 0.05);
}

.product-swiper-prev,
.product-swiper-next {
    width: 45px;
    height: 45px;
    border: 1px solid #d1d1d1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #333;
    background-color: transparent;
    transition: all 0.3s ease;
}

.product-swiper-prev:hover,
.product-swiper-next:hover {
    background-color: #560103;
    color: #fff;
    border-color: #560103;
}


.product-swiper .swiper-slide {
    height: auto;
    flex-shrink: 0;
}



.bg-pink {
    /* background-color: var(--bg-pink); */
    padding-bottom: 80px;
}


.story-section:before {
    content: "";
    position: absolute;
    /* inset: 0; */
    z-index: 9;
    background: linear-gradient(to bottom, rgb(255 255 255 / 0%) 0%, #ffffff 80%);
    height: 10%;
    width: 100%;
    bottom: -20px;
}
.story-section {
	position: relative;
	z-index: 1;
}

.bg-pink .btn-center {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.btn-center{
    margin-top: 40px;
    text-align: center;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--secondary);
    border-radius: 20px;
    padding: 0;
    max-height: 280px;
    transition: opacity 0.3s ease, transform 0.3s ease; 
}
.product-card.hidden {
    display: none;
}

.product-card img {
    border-radius: 12px; 
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

    

.product-overlay {
    inset: 0;
    display: flex;
    justify-content: center;
    transition: opacity 0.4s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
    padding: 40px 16px 14px;
    opacity: 1;
}

.product-overlay a {
    text-decoration: none;
    color: inherit;
}

.product-overlay p {
    color: #ffffff;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
    display: block;
    font-size: 17px;
    font-weight: 600;
    font-family: var(--primary-font);
    line-height: 24px;
}
.product-overlay span {

    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    font-size: 17px;
    font-weight: 600;
    font-family: var(--primary-font);
    line-height: 24px;
    margin: 0;
    transform: translateY(0);
    transition: transform 0.4s ease;
}


.main-btn {
    background-color: #000;
    color: var(--secondary);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s ease;
    font-weight: 500;
    letter-spacing: -1%;
    text-transform: uppercase;
    font-family: var(--primary-font);
    display: inline-block;
    text-align: center;
    
}
.main-btn:hover {
    background-color: #560103;
    transform: scale(1.05);

}
/* Navigation Wrapper */
.slider-controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

/* The Circular Arrows */
.swiper-nav-prev, 
.swiper-nav-next {
    width: 45px;
    height: 45px;
    border: 1px solid #d1d1d1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #333;
    background-color: transparent;
    transition: all 0.3s ease;

    
cursor: pointer !important;
    pointer-events: auto !important; 
}

.swiper-nav-prev:hover, 
.swiper-nav-next:hover {
    background-color: #560103;
    color: #fff;
    border-color: #560103;
}

/* Remove default Swiper arrow styles if using their CDN */
.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Footer Buttons */
.products-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.view-more {
    background: black;
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
   
}


   /* RESPONSIVE MEDIA QUERIES — PRODUCTS SECTION */

/* Large Desktop — 1280px and below */
@media (max-width: 1280px) {
    /* .filter-container {
        padding: 0 20px;
    } */
}

/* Medium Desktop — 1024px and below */
@media (max-width: 1024px) {
    
    .filter-container {
        gap: 8px;
    }
    .filter-btn {
        padding: 9px 16px;
        font-size: 16px;
    }
    .slider-controls-wrapper {
        gap: 15px;
    }

	.story-wrapper{
		/* padding-top: 110px !important; */
        margin: 0 !important;

	}
}

/* 992px and below */
@media (max-width: 992px) {
    .products-header {
        margin-bottom: 30px;
    }
    .products-header h2 {
        font-size: 32px;
    }
    .filter-container {
        margin-bottom: 30px;
    }
    .filter-btn {
        padding: 8px 14px;
        font-size: 16px;
    }
    .slider-controls-wrapper {
        margin-top: 30px;
        margin-bottom: 30px;
    }
   .product-overlay span {
        font-size: 14px;
    }
    
}

/* Tablet Portrait — 768px and below */
@media (max-width: 768px) {
    .products-header {
        margin-bottom: 24px;
    }

    .filter-container {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 8px;
        margin-bottom: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    .filter-container::-webkit-scrollbar {
        display: none; 
    }
    
    .filter-btn {
        flex: 0 0 auto;
        padding: 8px 14px;
        font-size: 14px;
    }

    .slider-controls-wrapper {
        margin-top: 24px;
        margin-bottom: 24px;
        gap: 14px;
    }
   
    .bed-section{
        padding-bottom: 50px !important;
    }
}

/* Mobile Large — 600px and below */
@media (max-width: 600px) {
    
    .filter-btn {
        padding: 7px 12px;
        font-size: 16px;
        border-radius: 6px;
    }
    .slider-controls-wrapper {
        gap: 12px;
    }
    
    .swiper-nav-prev svg,
    .swiper-nav-next svg {
        width: 16px;
        height: 16px;
    }
    /* .main-btn {
        padding: 9px 22px;
        font-size: 12px;
    } */
}

/* Mobile — 480px and below */
@media (max-width: 480px) {
   
    .products-header {
        margin-bottom: 20px;
    }
    .products-header h2 {
        font-size: 30px;
        /* padding-top: 40px; */
    }
    .filter-container {
        gap: 7px;
        margin-bottom: 20px;
    }
    .filter-btn {
        padding: 6px 11px;
        font-size: 14px;
    }
    .filter-btn.active{
        padding: 6px 11px;
        font-size: 14px;
    }
    .slider-controls-wrapper {
        margin-top: 20px;
        margin-bottom: 20px;
        gap: 10px;
    }
    
    .products-header p{
        font-size: 14px;
    }
    .footer-flex{
        display:flex;        
        gap: 20px;
    }
    .brand-info p{
        margin-top: 25px;
    }
    .story-section:before{
        display: none;
    }
}

/* Small Mobile — 375px and below */
@media (max-width: 375px) {
    .products-header h2 {
        font-size: 25px;
    }
    
     .slider-controls-wrapper {
        margin-top: 16px;
        margin-bottom: 16px;
        gap: 8px;
    }
    .filter-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .swiper-nav-prev svg,
    .swiper-nav-next svg {
        width: 14px;
        height: 14px;
    }
    .bed-section{
        padding-bottom: 0 !important;
    }
}

/* founder card */
.founder-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(30, 60, 120, 0.09);
  /* border: 1px solid #dde2ec; */
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 4rem 2.25rem;
  /* max-width: 760px; */
  width: 100%;
  transition: box-shadow 0.3s ease;
  margin-bottom: 80px;
}

.founder-card:hover {
  box-shadow: 0 8px 40px rgba(30, 60, 120, 0.14);
}

.founder-card__photo-wrap {
  flex-shrink: 0;
  max-width: 310px;
  max-height: 310px;
  border-radius: 20px;
  overflow: hidden;
  /* border: 2px solid #dde2ec; */
}

.founder-card__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-card__content {
  flex: 1;
  min-width: 0;
}
.founder-card__content .read-more-text{
    color: var(--primary);
}

.founder-card__name {
  font-family: var(--secondary-font);
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 0.3rem;
  color: var(--text-black);
  /* padding-top: 35px; */
}

.founder-card__role {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 0.85rem;
}

.founder-card__bio {
  line-height: 1.8;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 90%;

  transition: all 0.3s ease;
}

.founder-card__bio.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}



@media (max-width: 1200px) {
  .founder-card {
    gap: 40px;
    padding: 40px;
  }

  .founder-card__photo-wrap {
    width: 280px;
    height: 340px;
  }
}

/* Tablet landscape — ≤ 1024px */
@media (max-width: 1024px) {
  .founder-card {
    gap: 32px;
    padding: 36px;
  }

  .founder-card__photo-wrap {
    width: 240px;
    height: 300px;
  }
}

/* Tablet portrait — ≤ 768px */
@media (max-width: 768px) {
  .section {
    /* padding: 60px 0; */
  }

  .founder-card {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 36px 28px;
    gap: 28px;
  }

  .founder-card__photo-wrap {
    width: 100%;
    height: 100%;
  }

  .founder-card__role {
    justify-content: center;
  }

  .read-more-text {
    margin: 8px auto 0;
  }
}

/* Mobile — ≤ 480px */
@media (max-width: 480px) {
  

  .founder-card {
    padding: 28px 20px;
    border-radius: 12px;
    gap: 22px;
    margin: 0;
  }

  .founder-card__photo-wrap {
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  .founder-card__bio {
    font-size: 13.5px;
    line-height: 1.8;
  }
}

/* Small mobile — ≤ 360px */
@media (max-width: 360px) {
  .founder-card {
    padding: 22px 16px;
  }

  .founder-card__photo-wrap {
    width: 100%;
    height: 100%;
  }

  .founder-card__bio {
    font-size: 13px;
  }
}
/* 
@media (max-width: 580px) {
  .founder-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    gap: 1.25rem;
  }

  .founder-card__photo-wrap {
    width: 100%;
    height: 100%;
  }

  .founder-card__name {
    font-size: 1.35rem;
  }
} */

/* @media (max-width: 380px) {
  .founder-card__photo-wrap {
    height: 180px;
  }
} */

/* why choose us  */
.why-choose-us {
    position: relative;
    /* padding: 60px 0; */
    color: #ffffff;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding-bottom: 50px;
   
}

.section-header {
    margin-bottom: 40px;
    position: relative;
}

.section-header h2 {
    /* margin-bottom: 10px; */
    font-family: var(--secondary-font);
     font-size: 40px;
    font-weight: 700;
    letter-spacing: -2%;
    line-height: 49.3px;
    color: var(--secondary);

}

.section-header p {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--primary-font);
    letter-spacing: -1%;
    line-height: 37.76px;
    color: var(--secondary);
}

/* Features Grid */
.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

/* DASHED LINE CONNECTOR */
.features-grid::before {
    content: '';
    position: absolute;
    top: 35px; 
    left: 10%;
    right: 10%;
    height: 1px;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.feature-item {
    flex: 1;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}
.icon-wrapper img{
    width: 35px;
    height: 35px;
    stroke: #000000; 
}

.icon-wrapper img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.feature-body h3 {
     font-size: 17px;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: var(--primary-font);
    line-height: 24px;
    letter-spacing: -1%;
    
}

.feature-body p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-family: var(--primary-font);
    letter-spacing: -1%;
    color: #C9C9C9;

}

/* RESPONSIVE DESIGN */
@media (max-width: 1280px) {
    .feature-body h3 {
        font-size: 15px;
    }
    .feature-body p {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .features-grid {
        /* flex-wrap: wrap;
        gap: 0; */

        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .feature-item {
        flex: 0 0 33.33%;
        margin-bottom: 40px;
    }
    .features-grid::before {
        display: none; /* Hide line on tablet/mobile */
    }
}

@media (max-width: 992px) {
    .why-choose-us {
        padding: 50px 0;
    }
    .section-header {
        margin-bottom: 30px;
    }
    .section-header h2 {
        font-size: 32px;
        letter-spacing: 1.5px;
    }
    .section-header p {
        font-size: 14px;
    }
    .feature-item {
        flex: 0 0 33.33%;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    .icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }
    .feature-body h3 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    .feature-body p {
        font-size: 12px;
    }
}

/* Tablet Portrait — 768px and below */
@media (max-width: 768px) {
    .why-choose-us {
        padding: 45px 0;
    }
    .section-header h2 {
        /* font-size: 22px; */
        letter-spacing: 1px;
    }
    

    /* 2 columns layout */
    .feature-item {
        flex: 0 0 50%;
        margin-bottom: 35px;
        padding: 0 20px;
    }
    .icon-wrapper {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
    }
    .icon-wrapper svg {
        width: 28px;
        height: 28px;
    }

    .feature-body p {
        font-size: 12px;
    }
    .bg-pink{
    padding-bottom: 50px;
    }
}

@media (max-width: 600px) {
    .feature-item {
        flex: 0 0 100%;
    }
    .why-choose-us {
        padding: 50px 0;
    }
}

/* Mobile — 480px and below */
@media (max-width: 480px) {
    .feature-body {
        display: flex;
        flex-direction: column; 
        gap: 6px;
        text-align: start;
    }
    .why-choose-us {
        background-size: cover;
        background-position: center;
        padding: 40px 0;
    }

    .section-header {
        text-align: left;
        padding: 0 20px;
        margin-bottom: 30px;
    }

    .section-header h2 {
        font-size: 32px;
        color: #fff;
        font-weight: 800;
        text-align: center;
    }

    .section-header p{
        font-size: 14px;
        color: #ccc;
        text-align: center;
        margin-bottom: -15px;
        margin-top: -15px;
    }

    /* Stack all items vertically */
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        /* padding: 0 20px; */
        position: relative;
    }

    .feature-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
        padding: 16px 0;
        position: relative;
        margin-bottom: 4px;
    }

    /* Dotted vertical line connecting items */
    .feature-item:not(:last-child)::after {
        content: '';
        position: absolute;
        left: 20px; /* center of icon */
        top: 60px;
        bottom: -20px;
        width: 1px;
        border-left: 2px dashed rgba(255, 255, 255, 0.3);
    }

    /* Icon circle */
    .icon-wrapper {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 50%;
        background-color: beige;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .icon-wrapper svg {
        width: 22px;
        height: 22px;
        /* stroke: #fff; */
    }

    /* Text block */
    .feature-item > div:not(.icon-wrapper) {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .feature-body h3 {
      font-size: 16px;
        font-weight: 550;
        margin: 0;
    }

    .feature-body p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.5;
        margin: 0;
        /* width: 80%; */
    }
    

}

/* Small Mobile — 375px and below */
@media (max-width: 375px) {
    .why-choose-us {
        padding: 32px 0;
    }

    .icon-wrapper {
        width: 46px;
        height: 46px;
        margin-bottom: 14px;
    }
    .icon-wrapper svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-body p {
        /* font-size: 12px; */
        width: 100%;

    }
}


/* our collection section */
.collection-section{
    padding-bottom: 80px;
    padding-top: 80px !important;
}
.collection-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    max-height: 350px;
}
.collection-card.hidden {
    display: none;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.55); */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    /* padding: 24px; */
    opacity: 0;
    transition: opacity 0.4s ease;

    /* position: absolute; */
    bottom: 0; left: 0; right: 0;
    padding: 20px;                 
    background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, transparent 100%);


    /* position: absolute; */
        bottom: 0; 
        left: 0; 
        right: 0;
        top: auto;
        background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0) 100%);
        padding: 20px 24px;
        opacity: 1;
}
 .collection-overlay span {
    color: #ffffff;
    /* margin: 0 0 8px; */
    text-transform: uppercase;
    letter-spacing: 1px;
    /* transform: translateY(10px); */
    /* transition: transform 0.4s ease; */
    display: block;
    font-size: 17px;
    font-weight: 600;
    font-family: var(--primary-font);
    line-height: 24px;
     margin:0;

       transform: translateY(0);             
    transition: transform 0.4s ease;  
    
}

.collection-overlay a {
    text-decoration: none;
    color: inherit;
}


.collection-overlay p {
     margin-top: 10px;
    margin-bottom: 10px;
    opacity: 0;                        
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    font-family: var(--primary-font);
    letter-spacing: -0.01em;
    color: #C9C9C9;
    pointer-events: none;  

    transition: transform 0.4s ease 0.08s, opacity 0.4s ease 0.08s;
    margin: 0;
    max-height: 0;                 
    transform: translateY(10px);      
}
.collection-card:hover .collection-overlay span {
    transform: translateY(-20px);     
    
}

/* Hover triggers */
.collection-card:hover img {
    transform: scale(1.05);
}

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

.collection-card:hover .collection-overlay h3
 {
    transform: translateY(0);
}

   .collection-card:hover .collection-overlay p {
    transform: translateY(-10px);         
    opacity: 1;
    max-height: 100px;             
}

@media (max-width: 1280px) {
    .column-3 {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .column-3 {
        grid-column: span 4; 
    }
    .collection-card {
        border-radius: 10px;
    }
}

@media (max-width: 992px) {
    .column-3 {
        grid-column: span 6;
    }
    .collection-section{
        padding-bottom: 20px;
        padding-top: 50px !important;
    }
}

/* Tablet Portrait — 768px and below */
@media (max-width: 768px) {
    .column-3 {
        grid-column: span 6; 
    }
    .collection-card {
        border-radius: 10px;
    }
}

/* Mobile Large — 600px and below */
@media (max-width: 600px) {
    .column-3 {
        grid-column: span 12; 
    }
    .collection-card {
        border-radius: 8px;
    }
}

/* Mobile — 480px and below */
@media (max-width: 480px) {
    .column-3 {
        grid-column: span 12;
    }
    .collection-card {
        border-radius: 8px;
    }
}

/* Small Mobile — 375px and below */
@media (max-width: 375px) {
    .column-3 {
        grid-column: span 12;
    }
    .collection-card {
        border-radius: 6px;
    }
}


/* testimonial section  */
.testimonial-section{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding-bottom: 80px;

  overflow: hidden;
  width: 100%;
  
}

.testimonial-wrapper {   /* your cards container */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    align-items: stretch;  
}

.testimonial-card {
  background: var(--secondary);
  border-radius: 20px;
  padding: 60px 50px 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  text-align: center;
      /* padding: 35px 68px 25px; */
      /* max-height: 349.71px;
      max-width: 378.64px; */


       width: 100%;
    height: 350px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    
}


.profile-img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--card-bg);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-icon {
  font-size: 80px;
  font-family: serif;
  color: var(--quote-color);
  position: absolute;
  line-height: 1;
  user-select: none;
}

.quote-icon.open {
  top: 0px;
    left: 24px;
}

.quote-icon.close {
  bottom: 15px;
  right: 24px;
}

.testimonial-card p {
  color: #6C6C6C !important;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    margin-top: 50px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -2%;
    font-family: var(--primary-font);
  
}
.testimonial .slider-controls-wrapper{
    margin-bottom: 0 !important;
}

.name {
    font-size: 18px;
    color: #1B1B1B;
    margin: 0;
    /* font-weight: bold; */
    letter-spacing: -1%;
    font-family: var(--fourth-font);
}

.role {
  /* color: var(--text-muted) !important; */
      font-size: 16px !important;
    margin-top: 5px !important;
    font-weight: 400 !important;
    font-family: var(--primary-font) !important;
}


/* testimonial swiper */
.testimonial-swiper {
    padding-top: 40px; 
}


.slider-controls-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}


/* responsive design for testimonial section */

/* 992px and below */
@media (max-width: 992px) {
    .testimonial-section {
        gap: 50px 20px;
        padding: 40px 16px;
        margin-top: 30px;
    }
    .products-header .primary {
        margin-bottom: 50px !important;
    }
    .testimonial-card{
        width: 100%;
         min-height: 350px;
    }
}

/* Tablet Portrait — 768px and below */
@media (max-width: 768px) {
    .testimonial-section {
        gap: 55px 20px;
        padding: 36px 16px;
        margin-top: 24px;
    }
    .products-header .primary {
        margin-bottom: 40px !important;
    }

    /* 2 cards per row */
    .column-4 {
        grid-column: span 6;
    }

    .profile-img {
        width: 72px;
        height: 72px;
        top: -36px;
    }
    .quote-icon.open {
        left: 16px;
    }
    .quote-icon.close {
        right: 16px;
        bottom: 12px;
    }
    .name {
        font-size: 16px;
    }
    .testimonial-card{
        width: 100%;
         min-height: 350px;
    }
    
}

/* Mobile Large — 600px and below */
@media (max-width: 600px) {
    .testimonial-section {
        gap: 55px 0;
        padding: 30px 12px;
    }
    .products-header .primary {
        margin-bottom: 30px !important;
    }

    /* 1 card per row */
    .column-4 {
        grid-column: span 12;
    }

    .profile-img {
        width: 68px;
        height: 68px;
        top: -34px;
    }
}

/* Mobile — 480px and below */
@media (max-width: 480px) {
    .testimonial-section {
        padding: 24px 12px;
        margin-top: 20px;
        gap: 50px 0;
    }
    .products-header .primary {
        margin-bottom: 24px !important;
    }
    .testimonial-card {
        padding: 50px 20px 26px;
        border-radius: 12px;
    }
    .profile-img {
        width: 64px;
        height: 64px;
        top: -32px;
        border-width: 4px;
    }
    .quote-icon.open {
        left: 12px;
    }
    .quote-icon.close {
        right: 12px;
        bottom: 10px;
    }
   

    .role {
        font-size: 12px !important;
    }
}

/* Small Mobile — 375px and below */
@media (max-width: 375px) {
    .testimonial-section {
        padding: 20px 10px;
        gap: 48px 0;
    }
    .testimonial-card {
        padding: 46px 16px 24px;
    }
    .profile-img {
        width: 60px;
        height: 60px;
        top: -30px;
    }
    
   
}



/* Inspired by Elegant Living section */
.inspired-section {
    position: relative;
    display: flex;
    align-items: center;
     padding-bottom: 80px;
     overflow: hidden;
}
.sec-bubbles{
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    
}

.hero-content-last {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Text Styles */
.text-side {
    flex: 1;
    text-align: left;
}

.text-side h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-black);
    font-weight: 700;
    letter-spacing: -2%;
}

.text-side p {
    font-size: 16px;
    line-height: 25PX;
    margin-bottom: 30px;
    max-width: 450px;
    font-weight: 400;
    color: #272727;
    letter-spacing: -1%;
}

.image-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;  
    align-items: center;
    overflow: visible;     
    position: relative;
}

.image-side img {
    width: 110%;               
    max-width: 680px;
    object-fit: contain;
    margin-top: -110px;       
    margin-bottom: -40px;       
    position: relative;
    /* right: -20px;                */
     z-index: 3;
}



/* Decorative Pink Bubbles */
.bubble {
    position: absolute;
    background-color: var(--pink-bubble);
    border-radius: 50%;
    z-index: 1;
}

/* Positions based on your image */
.bubble-1 { width: 150px; height: 150px; top: -50px; left: -60px; }
.bubble-2 { width: 200px; height: 200px; bottom: -128px; left: 5%; }
.bubble-3 { width: 180px; height: 180px; top: -83px; left: 50%; }
.bubble-4 { width: 220px; height: 220px; bottom: 10%; right: -110px; }


/* anmation */
/* text side — slide in from left */
.inspired-section .text-side {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* image side — slide in from right */
.inspired-section .image-side {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

/* h2 stagger inside text */
.inspired-section .text-side h2 {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.inspired-section .text-side p {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s;
}

.inspired-section .text-side .main-btn {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease 0.6s, transform 0.6s ease 0.6s;
}

/* bubbles float animation */
@keyframes bubbleFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50%       { transform: translateY(-20px) scale(1.05); }
}

@keyframes bubbleFloat2 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50%       { transform: translateY(-15px) scale(1.03); }
}

.bubble {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.bubble-1 { animation: bubbleFloat  5s ease-in-out infinite; animation-play-state: paused; }
.bubble-2 { animation: bubbleFloat2 6s ease-in-out infinite; animation-play-state: paused; animation-delay: 0.5s; }
.bubble-3 { animation: bubbleFloat  7s ease-in-out infinite; animation-play-state: paused; animation-delay: 1s; }
.bubble-4 { animation: bubbleFloat2 5.5s ease-in-out infinite; animation-play-state: paused; animation-delay: 1.5s; }

/* when visible */
.inspired-section.is-visible .text-side {
    opacity: 1;
    transform: translateX(0);
}

.inspired-section.is-visible .image-side {
    opacity: 1;
    transform: translateX(0);
}

.inspired-section.is-visible .text-side h2,
.inspired-section.is-visible .text-side p,
.inspired-section.is-visible .text-side .main-btn {
    opacity: 1;
    transform: translateY(0);
}

/* start bubble float when visible */
.inspired-section.is-visible .bubble {
    opacity: 1;
    animation-play-state: running;
}

/* image hover */
.inspired-section .image-side img {
    transition: transform 0.4s ease;
}
.inspired-section .image-side:hover img {
    transform: scale(1.03);
}


/* RESPONSIVE MEDIA QUERIES — HERO BOTTOM SECTION */
   
/* Large Desktop — 1280px and below */


/* Medium Desktop — 1024px and below */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 420px;
    }
    .text-side p {
        font-size: 14px;
        max-width: 380px;
    }
    .hero-content-last {
        gap: 28px;
    }
    .bubble-1 { width: 120px; height: 120px; left: -50px; }
    .bubble-2 { width: 160px; height: 160px; bottom: -80px; }
    .bubble-4 { width: 180px; height: 180px; right: -90px; }
}

/* 992px already handled above */
@media (max-width: 992px) {
    .hero-content-last {
        /* flex-direction: column; */
        text-align: center;
        display: flex;
    }

    .bed-img {
        max-width: 100%;
    }
    .bubble-3 { 
        display: none; 
    } 
    .image-side img{
        margin-top: -70px;
    }
    
}

/* Tablet Portrait — 768px and below */
@media (max-width: 768px) {
    .hero-section {
        min-height: unset;
        padding: 50px 0;
    }
    .hero-content-last {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .text-side {
        text-align: center;
    }
    
    .text-side p {
        font-size: 14px;
        max-width: 480px;
        margin: 0 auto 24px;
    }
 
    .image-side img {
        display: none;
    }
    .bubble-1 { width: 100px; height: 100px; left: -40px; top: 20px; }
    .bubble-2 { width: 130px; height: 130px; bottom: -60px; }
    .bubble-3 { display: none; }
    .bubble-4 { width: 150px; height: 150px; right: -70px; }
}

/* Mobile Large — 600px and below */
@media (max-width: 600px) {
    .hero-section {
        padding: 40px 0;
    }
    
    .text-side p {
        max-width: 100%;
    }
    .image-side img {
        max-width: 90%;
    }
    .bubble-1 { width: 90px; height: 90px; left: -35px; }
    .bubble-2 { width: 110px; height: 110px; bottom: -50px; }
    .bubble-4 { width: 130px; height: 130px; right: -60px; }
}

/* Mobile — 480px and below */
@media (max-width: 480px) {
    .hero-section {
        padding: 32px 0;
    }
    .hero-content-last {
        gap: 24px;
        position: relative;
        z-index: 2;
    }
    .image-side img {
        display: none;
    }
    .bubble-1 { width: 80px; height: 80px; left: -30px; top: -38px;}
    .bubble-2 { width: 100px; height: 100px; bottom: -45px; }
    .bubble-4 { width: 120px; height: 120px; right: -55px; }
}

/* Small Mobile — 375px and below */
@media (max-width: 375px) {
    .hero-section {
        padding: 28px 0;
    }
    .text-side h2 {
        font-size: 25px;
    }
    .image-side img {
        max-width: 100%;
    }
    .bubble-1 { width: 70px; height: 70px; left: -28px; }
    .bubble-2 { width: 90px; height: 90px; bottom: -40px; }
    .bubble-4 { width: 100px; height: 100px; right: -45px; }
}



/* footer */
.main-footer {
  background-color: var(--bg-pink);
  /* padding: 60px 0 20px 0; */
  color: var(--text-dark);
  padding-bottom: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}

/* Brand Section */

.brand-info .logo img {
  margin-bottom: 10px;
}

.brand-info p {
    font-size: 15px;
    line-height: 22px;
    color: var(--text-light);
    font-family: var(--primary-font);
    font-weight: 400;
    letter-spacing: -1%;
    /* text-align:start; */
    width: 55%;
}

/* Column General Styling */
.footer-col h3 {
font-size: 17px;
    margin-bottom: 20px;
    color: #272727;
    font-family: var(--fourth-font);
    letter-spacing: -1%;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--text-light);
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--text-dark);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

/* Contact Icons */
.contact-info li i {
  color: var(--primary);
  margin-right: 10px;
  width: 15px;
}

.contact-info ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info ul li i {
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}
/* Bottom Bar */
.footer-bottom {
border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: #404040;
    flex-wrap: wrap;
    /* gap: 20px; */
    font-weight: 400;
    line-height: 23px;
    letter-spacing: -1%;
    font-family: var(--primary-font);
 
}
.footer-bottom a {
  color: var(--text-light);
  text-decoration: none;
}

.social-links-top{
    display: none !important;
}




.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  background: var(--primary);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.8rem;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: translateY(-3px);
}



/* RESPONSIVE MEDIA QUERIES — HERO BOTTOM SECTION */
   
/* Large Desktop — 1280px and below */
@media (max-width: 1280px) {
    .text-side p {
        font-size: 16px;
    }
}

/* Medium Desktop — 1024px and below */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 420px;
    }
    .hero-content-last {
        gap: 28px;
    }
    .bubble-1 { width: 120px; height: 120px; left: -50px; }
    .bubble-2 { width: 160px; height: 160px; bottom: -80px; }
    .bubble-4 { width: 180px; height: 180px; right: -90px; }
}

/* 992px already handled above — stacks vertically */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    /* text-align: center; */
  }
  .footer-bottom{
    gap: 10px;
  }
  

}

@media (max-width: 600px) {
  .footer-grid {
    /* grid-template-columns: 1fr; */
    /* text-align: center; */
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info li i {
    margin-right: 5px;
  }
  .inspired-section {
    padding-bottom: 0;
  }
}

/* Tablet Portrait — 768px and below */
@media (max-width: 768px) {
    .hero-section {
        min-height: unset;
        padding: 50px 0;
    }
    .hero-content-last {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .text-side {
        text-align: center;
    }
    .text-side p {
        max-width: 480px;
    }
     .inspired-section{
    padding-bottom: 30px;
     }
    .image-side img {
        max-width: 80%;
    }
    .bubble-1 { width: 100px; height: 100px; left: -40px; top: 20px; }
    .bubble-2 { width: 130px; height: 130px; bottom: -60px; }
    .bubble-3 { display: none; }
    .bubble-4 { width: 150px; height: 150px; right: -70px; }
}

/* Mobile Large — 600px and below */
@media (max-width: 600px) {
    .hero-section {
        padding: 40px 0;
    }
    .text-side p {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 100%;  
    }
    .image-side img {
        max-width: 90%;
    }
    .bubble-1 { width: 90px; height: 90px; left: -35px; }
    .bubble-2 { width: 110px; height: 110px; bottom: -50px; }
    .bubble-4 { width: 130px; height: 130px; right: -60px; }
}

/* Mobile — 480px and below */

@media (max-width: 480px) {
    .hero-section {
        padding: 32px 0;
    }
    .hero-content-last {
        gap: 24px;
    }
    .text-side h2 {
        font-size: 30px;
        line-height: 1.3;
    }
    .text-side p {
        font-size: 14px;  
        text-align: left;
    }
    .text-side {
        display: flex;
        flex-direction: column;
        align-items: flex-start; 
    }
    
    .image-side img {
        max-width: 95%;
    }
    .bubble-1 { width: 80px; height: 80px; left: -30px; top: 15px; }
    .bubble-2 { width: 100px; height: 100px; bottom: -45px; }
    .bubble-4 { width: 120px; height: 120px; right: -55px; }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "brand brand"
            "nav products"
            "contact contact";
    }

    .brand-info {
        grid-area: brand;
    }

    .footer-col:nth-child(2) {
        grid-area: nav;
        text-align: start;
    }

    .footer-col:nth-child(3) {
        grid-area: products;
        text-align: start;
    }

    .contact-info {
        grid-area: contact;
        text-align: start;
    }

     .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    /* Social icons first */
     .social-links-top {
        order: 1;
        display: flex !important;
        margin-top: 20px;
    }

    /* Copyright second */
    .footer-bottom > *:first-child {
        order: 2;
    }

    /* Developer third */
    .developer {
        order: 3;
    }
    .brand-info p{
        width: 250px;
        text-align:left;
    }
    .products-header-responsive{
        padding-top: 40px;
    }

}

/* Small Mobile — 375px and below */
@media (max-width: 375px) {
    .hero-section {
        padding: 28px 0;
    }
    .text-side h2 {
        font-size: 25px;
    }
    .footer-bottom{
        font-size: 13.5px;
    }
   
    .image-side img {
        max-width: 100%;
    }
    .bubble-1 { width: 70px; height: 70px; left: -28px; }
    .bubble-2 { width: 90px; height: 90px; bottom: -40px; }
    .bubble-4 { width: 100px; height: 100px; right: -45px; }
}



/* about-us page  */
.about-us-section {
    position: relative;
    width: 100%;
    height: 450px; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
}

/* Make the image act as a background cover */
.about-us-bg-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7); 
}

.about-us-title h1 {
    font-size: 60px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb span {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.breadcrumb .active {
    color: #ffffff;
    pointer-events: none;
}

.breadcrumb a:hover {
    color: #f1f1f1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-us-section {
        height: 300px;
    }
    .about-us-title h1 {
        font-size: 40px;
    }
}


/* about us fabric section  */


.fabrics-section {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 0;
  overflow: hidden;
  background-attachment: fixed;
  padding-bottom: 80px;
}

/* ═══════════════════════════════════════════════
   ROW 1 · FABRICS CONTENT (image + text side by side)
═══════════════════════════════════════════════ */
.fabrics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 40px;
}


/* Left: image */
.about-page-image {
  overflow: hidden;
  position: relative;
}


.about-page-image img,
.about-page-img-responsive img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Right: text */
.about-page-content {
  /* padding: 52px 56px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  
}

.read-more-clip-content{
  display: -webkit-box;
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
  overflow: hidden;
  width: 100%;
  word-break: break-word;
}

.read-more-clip-content.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.about-page-content .read-more-text {
  display: inline-block !important;
  width: fit-content !important;
  margin-top: 20px !important;
  color: var(--primary) !important;
}
.read-more-text:hover {
    text-decoration: underline;
    color: var(--primary);
    cursor: pointer;
}

.about-page-content h1 {
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 20px !important;
  font-size: 40px;
  font-family: var(--secondary-font);
  width: 87%;
}



.about-page-content p {
  line-height: 1.8;
  color: var(--text-black);
  /* width: 112%; */
  /* margin-bottom: 20px; */
 
}




/* ═══════════════════════════════════════════════
   ROW 2 · ABOUT US INTRO (maroon background)
═══════════════════════════════════════════════ */
.about-us-intro {
  color: var(--text-light);
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  align-items: start;
  border-radius: 20px;
  /* margin-top: 40px; */

  /* align-items: stretch;  */


}

/* Left column: heading + text + button */
.about-intro h2 {
  font-size: 40px;
  margin-bottom: 20px;
  font-family: var(--secondary-font);
  width: 103%;
}

.about-intro h2 span {
  color: var(--gold);
}

.about-intro p {

      font-size: 16px;
    line-height: 25PX;
    margin-bottom: 30px;
    max-width: 450px;
    font-weight: 400;
    color: #C9C9C9;
    letter-spacing: -1%;
}

.about-intro .main-btn.white {
    background-color: #fff;
    color: var(--text-black);
    border-color: #fff;
}
.main-btn.white:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}



/* Mission / Vision boxes */
.about-box {
   background-color: var(--secondary);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    flex: 1;
    width: 100%;
    /* max-height: 38vh; */
    height: 400px;
    overflow-y: auto; 
}
.about-box::before {
    content: '';
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    /* opacity: 0.15; */
}

.about-box:nth-child(2)::before {
    background-image: url("./assets/img/mission-icon.svg");
}

.about-box:nth-child(3)::before {
    background-image: url("./assets/img/vision-icon.svg");
}

.about-box p {
  font-size: 15px; 
  line-height: 1.6;
  color: var(--text-black);
  padding: 0;
  margin: 30px 0 0;

}

.about-box p:first-child {
  margin-bottom: 10px;
}

.about-box h3 {

  font-size: 24px;
    color: var(--text-black);
    /* margin-bottom: 12px; */
    padding-top: 10px;
    font-family: var(--secondary-font);
}
.about-box h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin-top: 30px;
}

.about-box ul {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 
}

.about-box ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--text-black);
    list-style: none;
}

.about-box ul li::before {
     content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background-image: url("./assets/img/icon-arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
}

/* ═══════════════════════════════════════════════
   ROW 3 · MACHINERY BANNER
═══════════════════════════════════════════════ */
.about-machinery {
    border-radius: 20px;
    overflow: hidden;        
    padding: 60px;
    padding-top: 20px;  
}

.about-us-intro-background-image{
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}


.about-machinery img {

   width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: brightness(0.72) saturate(0.8);
    border-radius: 20px; 
}

.about-machinery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(90, 18, 28, 0.6) 0%,
    rgba(90, 18, 28, 0.18) 50%,
    rgba(30, 30, 30, 0.45) 100%
  );
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-us-intro {
    grid-template-columns: 1fr 1fr;
  }

  .about-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .fabrics-content {
    grid-template-columns: 1fr;
  }

  .about-page-image {
    min-height: 260px;
  }

  .about-page-content {
    padding: 36px 28px;
  }

  .about-us-intro {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 24px;
  }
  .our-team-section{
    padding-bottom: 50px !important;
  }
 
}

/* about-us page our team section */
.our-team-section{
    background: var(--bg-pink);
    padding-bottom: 120px;
}
/* ── Section Blend ── */

.fabrics-section {
    position: relative;
}

.fabrics-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(to bottom, transparent, var(--bg-pink));
    z-index: 10;
    pointer-events: none;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-card a {
    text-decoration: none;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    z-index: 2;
}

.team-overlay span {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.team-overlay p {
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    margin: 4px 0 0 0;
}
.about-page-img-responsive{
    display: none;
}
.about-machinery-responsive-img{
    display: none;
}


/* Main image */
.team-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Image zooms forward on hover */
.team-card:hover > img {
    transform: scale(1.06);
}

/* ── Social Icons ── */
.team-social {
    position: absolute;
    top: 22%;
    right: 16px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

/* Show on hover */
.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.team-social a i {
    font-size: 16px;
    color: #621315;
    transition: color 0.2s ease;
}

.team-social a:hover {
    background: #621315;
    transform: scale(1.1);
}

.team-social a:hover i {
    color: #fff;
}

/* ── Bottom Overlay — always visible ── */
.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    z-index: 2;
}

.team-overlay span {
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.team-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 4px 0 0 0;
}


/* responsive */

/* ── max-width 1024px ── */
@media (max-width: 1024px) {
    
    .about-us-intro {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .about-intro {
        grid-column: 1 / -1;
        margin-bottom: 20px;
    }

    .about-intro p{
    max-width: 100%;
    }

}

/* ── max-width 992px: h1 → responsive image → p ── */
@media (max-width: 992px) {

    /* hide the original left image */
    .fabrics-content > .about-page-image {
        display: none;
    }

    /* show the responsive image inside content */
    .about-page-img-responsive {
        display: block;
        margin: 20px 0;   /* space between h1 and p */
    }

    /* single column, content fills full width */
    .fabrics-content {
        grid-template-columns: 1fr;
    }

    .about-page-content {
        width: 100%;
        padding: 0;
    }


    .about-machinery {
        height: 100%;
        padding-left: 20px;
         padding-right: 20px;
    }
    .about-intro p{
    max-width: 100%;
    }


    .about-us-intro-background-image > .about-machinery {
        display: none;
    }

    /* Show the responsive one inside about-intro (under h2) */
    .about-machinery-responsive-img {
        display: block;
        width: 100%;
        margin: 16px 0;   
        padding: 0;
    }

    .about-machinery-responsive-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        filter: brightness(0.72) saturate(0.8);
    }
}

/* ── max-width 768px ── */
@media (max-width: 768px) {
    .fabrics-section {
        padding: 50px 0;
    }
    .about-us-intro {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-intro {
        grid-column: 1 / -1;
    }
    .fabrics-section::after{
        display: none;
    }
}

/* ── max-width 480px ── */
@media (max-width: 480px) {
    .fabrics-section {
        padding: 40px 0;
    }


    .about-us-intro {
        grid-template-columns: 1fr;  /* stack boxes */
        padding: 20px 16px;
    }

    .about-intro {
        grid-column: unset;
    }

    .main-btn.white {
        width: fit-content;
        text-align: center;
        display: block;
    }
    .about-page-content h1{
        font-size: 32px;
        width: 100%;
    }
     .about-intro h2 {
        font-size: 32px;
        width: 100%;
    }
}

 /* products page  */
 .product-filter-section{
    background: var(--bg-pink);
 }
 .products-section {
    position: relative;
}
.products-section img {
    width: 100%;
    display: block;
    z-index: -1;
    filter: brightness(0.7); 

}
.products-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.products-title h2{
     font-size: 60px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 5px;
}
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.3s ease;
    font-size: 18px;
    font-family: var(--third-font);
}

.breadcrumb a:hover {
    color: rgba(255, 255, 255, 0.85);
    
}

.breadcrumb a.active {
    color: var(--secondary);
    font-size: 18px;
    font-family: var(--third-font);
}




















/* product page responsive  */
@media (max-width: 768px) {

    .products-title h2 {
        font-size: 35px;
    }
     .breadcrumb a:first-child, 
     .breadcrumb a.active {
        font-size: 14px;

    }

}


@media (max-width: 575px) and (min-width: 425px) {
    
    .products-title h2 {
        font-size: 28px;
    }
}

/* Mobile Medium - 375px to 424px */
@media (max-width: 424px) and (min-width: 375px) {
    .products-title h2 {
        font-size: 22px;
    }
}

/* Mobile Small - 320px to 374px */
@media (max-width: 374px) {

    .products-title h2 {
        font-size: 22px;
    }

    .breadcrumb a:first-child, .breadcrumb a.active {
        font-size: 9px;

    }
    
}

/* testimonial page section */
.testimonial-page-section{
    background: var(--bg-pink);
     /* padding: 60px 0; */
}
.testimonial-title{
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--primary-font) !important;
    color: #1B1B1B !important;
    font-size: 36px;
}

.section-divider{
    padding-bottom: 50px;
}
.card-design{
    padding: 25px 0;
}

/* contact page section */
/* ─────────────────────────────────────────
   Left Panel — Image
───────────────────────────────────────── */
.left-panel {
  position: relative;
  min-height: 460px;
  background: #1a1a1a;
  overflow: hidden;
  border-radius: 20px;
}
 
.left-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.78;
}
 
/* Gradient overlay */
.left-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.04) 35%,
    var(--color-overlay-dark) 100%
  );
  pointer-events: none;
}
 
/* ─────────────────────────────────────────
   Left Panel — Info Block
───────────────────────────────────────── */
.info-item p {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 400;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.info-item p .label {
  font-size: 16px;
  color: var(--secondary);
    margin-right: 0.1rem;

}

.info-item p a,
.info-item p time {
  color: var(--secondary);
  text-decoration: none;
  font-size: 16px;
}

.info-item p a:hover {
  text-decoration: underline;
}

.left-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.6rem 1.8rem;
  /* border-top: 1px solid rgba(255, 255, 255, 0.12); */
}
 
.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
 
.info-item + .info-item {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}
 
 
/* Icon circle */
.icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.icon-wrap img{
  width: 16px;
  height: 16px;
}
 .left-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.04) 5%,
    rgba(0, 0, 0, 0.70) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Make sure info sits above the overlay */
.left-info {
  z-index: 2;
}


/* ─────────────────────────────────────────
   Right Panel — Form
───────────────────────────────────────── */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  overflow: hidden;
  gap: 30px;
  padding-bottom: 40px;
  padding-top: 40px;
}

.right-panel {
  background: var(--primary);
  padding: 2.6rem 2.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 20px;
}
 
.right-panel h2 {
  font-size: 40px;
    color: var(--secondary);
  line-height: 1.25;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
 


/* ─────────────────────────────────────────
   Inputs & Textarea
───────────────────────────────────────── */
input,
textarea {
  width: 100%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-input);
  padding: 0.7rem 1rem;
  font-family: var(--primary-font);
  font-size: 0.85rem;
  outline: none;
  border-radius: 10px;
}
 
input::placeholder,
textarea::placeholder {
  color: #393737;
}
 
input:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
}
 
textarea {
  resize: none;
  height: 110px;
}
 
/* ─────────────────────────────────────────
   Submit Button
───────────────────────────────────────── */
.submit-btn {
  margin-top: 1.2rem;
  align-self: flex-start;
  padding: 0.72rem 2.4rem;
  background: var(--color-white);
  color: var(--color-crimson);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition:
    background  var(--transition-fast),
    color       var(--transition-fast),
    transform   0.15s ease,
    box-shadow  var(--transition-fast);
}
 
.submit-btn:hover {
  background: var(--color-gold);
  color: var(--color-crimson-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
 
.submit-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
 
/* ─────────────────────────────────────────
   Responsive — Tablet (≤ 860px)
───────────────────────────────────────── */
@media (max-width: 860px) {
 
  .right-panel h2 {
    font-size: 1.6rem;
  }
 
  .right-panel {
    padding: 2rem 1.8rem;
  }
}
 
/* ─────────────────────────────────────────
   Responsive — Mobile (≤ 640px)
───────────────────────────────────────── */
@media (max-width: 640px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }
 
  .left-panel {
    min-height: 280px;
  }
 
  .left-info {
    padding: 1.2rem 1.4rem;
  }
 
  .info-item {
    font-size: 0.82rem;
  }
 
  .right-panel {
    padding: 2rem 1.4rem 1.8rem;
  }
 
  .right-panel h2 {
    font-size: 1.45rem;
    margin-bottom: 1.4rem;
  }
 
  /* Stack all inputs to single column */
  .form-row {
    grid-template-columns: 1fr;
  }
 
  .submit-btn {
    width: 100%;
    text-align: center;
  }
}
 
/* ─────────────────────────────────────────
   Responsive — Very Small (≤ 360px)
───────────────────────────────────────── */
@media (max-width: 360px) {
  .right-panel h2 {
    font-size: 1.25rem;
  }
 
  input,
  textarea {
    font-size: 0.8rem;
  }
}

/* contact page  */
.contact-title h2{
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--primary-font) !important;
    color: #1B1B1B !important;
    font-size: 36px;
}
.contact-title p{
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto 60px auto;
}
.map-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-wrap iframe {
  display: block;
  margin: 0 auto;
  /* border-radius: 20px; */
  width: 100%;
  height: 80vh;
}

/* multiple product page section */
/* ============================================================
   PRODUCT CARD
   ============================================================ */

.multiple-products-section{
    background: var(--bg-pink);
}

/* ── Outer wrapper ── */
.product-card-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
 
.gallery {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 16px;
  align-items: flex-start;
  margin-top: 60px;
}
 
/* ── Thumbnails ── */
.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.thumb {
  width: 148px;
  height: 148px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}
 
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
.thumb.active {
  border-color: var(--primary);
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
}
 
.thumb:hover:not(.active) {
  border-color: #ddd;
}
 
/* ── Main Image ── */
.main-image {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
 
/* ── Product Info ── */
.product-info {
  padding: 8px 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-left: 25px;
}
 
.product-title {
  color: var(--primary);
  margin-bottom: 14px;
  font-family: var(--primary-font);
  font-size: 32px;
}
 
.product-desc {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 22px;
  font-family: var(--primary-font);
    line-height: 25PX;
    letter-spacing: -1%;
}
 
.shop-label {
  font-size: 18px;
  color: var(--text-black);
  margin-bottom: 14px;
  font-family: var(--primary-font);
}
 
/* ── Shop Grid: icons above, name below ── */
.shop-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
}
 
.shop-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
 
.shop-item:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}
 
.shop-icon {
  width: 44px;
  height: 44px;
  border-radius: 30px;
  background: #fff;
  /* border: 1px solid #e8e0d8; */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
}
 
.shop-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
 
.shop-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-black);
  text-align: center;
  white-space: nowrap;
  font-family: var(--primary-font);
}
 
/* ============================================================
   TABS CARD  — white rounded card below gallery
   ============================================================ */
.tabs-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #B7B7B7;
}
 
.tab-buttons {
  display: flex;
  gap: 0;
  padding: 5px 8px;
  border-bottom: 1.5px solid #f0eae4;
}
 
.tab-btn {
  color: #0A0A0A;
  font-size: 16px;
  font-family: var(--fourth-font);
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 18px;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}
 
/* Underline indicator */
.tab-btn::after {
  content: '';
    position: absolute;
    bottom: 12.5px;
    left: 17px;
    right: 17px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.22s ease;
    border-radius: 2px 2px 0 0;
}
 
.tab-btn:hover { color: #333; }
 
.tab-btn.active {
  color: #0A0A0A;
    font-size: 16px;
    font-family: var(--fourth-font);
}
 
.tab-btn.active::after {
  transform: scaleX(1);
}
 
/* Tab content */
.tab-content {
  display: none;
  padding: 22px 24px 24px;
  animation: fadeUp 0.22s ease;
}
 
.tab-content.active { display: block; }
 
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
.tab-content p {
    font-size: 16px;
    line-height: 25PX;
    color: #272727;
    letter-spacing: -1%;
}
 
/* Benefits list */
.feature-list ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 25px;
}
 
  .feature-list p,
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list p::before,
.feature-list li::before {
    content: '';
    display: inline-block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    margin-top: 7px;
}
/* ============================================================
   RESPONSIVE — Tablet (≤ 900px)
   ============================================================ */

   @media (max-width: 1024px) {
    .gallery {
        grid-template-columns: 90px 1fr 1fr;
        gap: 16px;
    }

    .thumb {
        width: 90px;
        height: 90px;
    }

    .product-title {
        font-size: 24px;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

 @media (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    /* Thumbnails go horizontal on tablet */
    .thumbnails {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        order: 1;
        padding-bottom: 4px;
    }

    .thumb {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

    .main-image {
        order: 1;
        aspect-ratio: 4 / 3;
    }

    .product-info {
        order: 3;
        margin: 0;
    }

    .product-title {
        font-size: 22px;
    }

    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .tab-btn {
        font-size: 13px;
        padding: 12px 10px;
    }
    .tab-btn.active::after{
    left: 10px;
    right: 10px;
    top: 32px;
    transform: scaleX(1);
    }
}


@media (max-width: 480px) {

    .gallery {
        gap: 12px;
    }

    .thumb {
        width: 70px;
        height: 70px;
        border-radius: 8px;
    }

    .main-image {
        aspect-ratio: 1 / 1;
        border-radius: 12px;
    }

    .product-title {
        font-size: 20px;
    }

    .product-desc {
        font-size: 14px;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .shop-icon {
        width: 32px;
        height: 32px;
    }

    .shop-name {
        font-size: 11px;
    }

    .tab-btn {
        text-align: left;
    }

    .tab-content, 
    .tab-content p {
        font-size: 14px;
    }
    .social-links-bottom{
        display: none;

    }
}

/* ===== SMALL MOBILE (360px) ===== */
@media (max-width: 360px) {
    .product-title {
        font-size: 18px;
    }

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

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* contact form contact us page */
/* Form Wrapper */

/* Grid layout for name/email/phone row */
.wpcf7 form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7 form p:has(textarea) {
  grid-column: span 2;
}

/* Input & Textarea base styles */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ccc;
  border-radius: 10px;
  background-color: #fff;
  color: #333;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
  text-transform: capitalize;
}

.wpcf7 input[type="text"]::placeholder,
.wpcf7 input[type="email"]::placeholder,
.wpcf7 input[type="tel"]::placeholder,
.wpcf7 textarea::placeholder {
  color: #999;
  font-size: 13px;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  border-color: #aaa;
}

/* Labels - 2 column grid */
.wpcf7 form label {
  display: block;
  margin-bottom: 12px;
  width: 100%;
}


/* Two-column grid for first 4 fields */
.wpcf7 form {
  display: grid;
  grid-template-columns: 1fr 1fr;
      grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  align-items: start;
}

/* Message textarea spans full width */
.wpcf7 form label:nth-child(5) {
  grid-column: 1 / -1;
}

/* Textarea height */
.wpcf7 textarea {
  width: 100%;
  height: 140px;
  resize: none;
  box-sizing: border-box;
}

/* Submit button spans full width */
.wpcf7 form .wpcf7-submit,
.wpcf7 input[type="submit"] {
    grid-column: 1 / -1;
  justify-self: start;
  background-color: #fff;
  color: var(--text-black);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 12px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: fit-content;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
  background-color: var(--text-black);
  color: var(--secondary);
}

/* Response output */
.wpcf7 .wpcf7-response-output {
  grid-column: 1 / -1;
  margin-top: 10px;
  color: #fff;
  font-size: 13px;
}