/* Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

.hero-swiper-container {
    position: relative;
    width: 100vw;
    height: 925px;
    min-height: 600px;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 30px;
    animation: slideInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.slide-title {
    font-family: 'Collingar';
    font-size: 80px;
    font-weight: 700;
    /* margin: 0 auto 0px auto; */
    text-shadow: none;
    line-height: 1.2;
    width: 1058px;
    height: 176px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-subtitle {
    font-family: 'TT Norms';
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #f8f9fa;
    text-shadow: none;
    width: 1032px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 30px;
}

.slide-description {
    font-family: 'TT Norms', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #e9ecef;
    text-shadow: none;
}

.slide-cta {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'TT Norms', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: none;
    border: 1px solid #ffffff;
}

.slide-cta:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    --swiper-theme-color: #ffffff;
    color: #ffffff;
    background-color: transparent;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: none;
    padding: 0 85px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: transparent;
    transform: none;
    box-shadow: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: 30px;
    --swiper-theme-color: #ffffff;
}

.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    transition: all 0.3s ease;
    box-shadow: none;
}

.swiper-pagination-bullet-active {
    background-color: #ffffff;
    transform: scale(1.2);
    box-shadow: none;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-subtitle {
        font-size: 1.3rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-swiper-container {
        height: 80vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding: 0 20px;
        max-width: 90%;
    }
    
    .slide-title {
        font-size: 22px;
        margin-bottom: 15px;
        width: 400px;
    }
    
    .slide-subtitle {
        font-size: 1.2rem;
        margin-bottom: 20px;
        width: 400px;
    }
    
    .slide-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .slide-cta {
        padding: 12px 25px;
        font-size: 1rem;
        border: 2px solid #ffffff;
        background-color: transparent;
        position: relative;
        overflow: hidden;
        border-radius: 0;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 38px;
        height: 38px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-swiper-container {
        height: 70vh;
        min-height: 400px;
    }
    
    .slide-content {
        padding: 0 15px;
    }
    
    .slide-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .slide-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
        border: 2px solid #ffffff;
        background-color: transparent;
        position: relative;
        overflow: hidden;
        border-radius: 0;
    }
    
    .swiper-pagination {
        bottom: 20px;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 6px;
    }
}

@media (max-width: 768px) {
  .hero-swiper-container .swiper-button-next,
  .hero-swiper-container .swiper-button-prev {
    display: none !important;
  }
}

/* Innovation & Excellence Section */
.innovation-section {
    background-color: #E5E1DC;
    padding: 100px 0;
    position: relative;
}

.innovation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.innovation-title {
    text-align: center;
    margin-bottom: 20px;
    width: 911px;
    height: 158px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    z-index: 20; /* ensure title sits above gallery images */
}

.main-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 72px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0;
    background-image: url('/static/images/8f7b7481f1b7d89dcc281f6d10aa42a1a63d2d2f.jpg');
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    position: relative;
    z-index: 20;
}

/* Swiper Gallery */
.swiper-gallery-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    width: 520px;
    height: 400px;
    position: relative;
    z-index: 10;
}

.mySwiper {
    width: 400px;
    height: 520px;
    padding: 100px 0;
}

.mySwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px 50px 0px 0px;
    overflow: hidden;
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border: none !important;
}

.mySwiper .swiper-slide::before,
.mySwiper .swiper-slide::after {
    display: none !important;
}

/* Override Swiper cards effect default styling */
.mySwiper .swiper-slide-shadow {
    display: none !important;
}

.mySwiper .swiper-slide-shadow-cards {
    display: none !important;
}

.mySwiper .swiper-slide-shadow-cards::before,
.mySwiper .swiper-slide-shadow-cards::after {
    display: none !important;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 250px 250px 0px 0px;
}

.innovation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

/* Portfolio Description */
.portfolio-description {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    padding-left: 260px;
}

.portfolio-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    font-weight: 400;
    width: 400px;
    height: 63px;
    text-align: left;
    /* padding-right: 190px; */
}

.embroidered-flower {
    position: relative;
    max-width: 400px;
    align-self: flex-start;
}

.flower-image {
    width: 400px;
    height: 513px;
    object-fit: cover;
    
}
@media (max-width: 490px) {
    .flower-image {
        width: 300px;
        height: 400px;
    }
}

/* Fabric Collage */
.fabric-collage {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 150px;
    width: 610px;
}

.history-main-title {
    font-family: 'Collingar';
    font-size: 40px;
    font-weight: 500;
    width: 610px;
    margin: 0 0 20px 0;
    color: #333333;
}

.history-main-text {
    font-family: 'TT Norms', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    width: 610px;
    line-height: 32px;
}

.fabric-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.fabric-item {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.3s ease, z-index 0.3s ease;
}

.fabric-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

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

.fabric-item-1 {
    width: 200px;
    height: 150px;
    bottom: 0;
    left: 20%;
    transform: rotate(-5deg);
    z-index: 1;
}

.fabric-item-2 {
    width: 180px;
    height: 120px;
    top: 20%;
    right: 30%;
    transform: rotate(3deg);
    z-index: 2;
}

.fabric-item-3 {
    width: 160px;
    height: 100px;
    bottom: 30%;
    right: 10%;
    transform: rotate(-2deg);
    z-index: 3;
}

.fabric-item-4 {
    width: 140px;
    height: 80px;
    top: 10%;
    left: 10%;
    transform: rotate(4deg);
    z-index: 4;
}

/* History Section */
.history-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.history-title {
    font-family: 'Times New Roman', Times, serif;
    font-size: 36px;
    font-weight: 500;
    color: #8B4513;
    letter-spacing: 0.02em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.history-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 0;
}

.history-text strong {
    color: #8B4513;
    font-weight: 600;
}

/* About Container Styles (keeping existing styles) */
.about-container {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.small-paragraph {
    font-size: 14px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.title-paragraph {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 700;
}

.medium-paragraph {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.ctas {
    margin-top: 40px;
}

.cta {
    display: inline-block;
    padding: 15px 35px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #000000;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    transform: translateX(-100%);
    border-radius: 0;
    border: 2px solid #000000;
    border-right: none;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    transform: translateX(100%);
    border-radius: 0;
    border: 2px solid #000000;
    border-left: none;
}

.cta:hover::before {
    transform: translateX(0);
    border: 2px solid #000000;
    border-right: none;
}

.cta:hover::after {
    transform: translateX(0);
    border: 2px solid #000000;
    border-left: none;
}

.cta span {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease 0.4s;
}

.cta:hover span {
    color: #000000;
}

.cta:hover {
    background-color: #000000;
    transform: none;
    color: #ffffff;
    border: 2px solid #000000;
}

/* Product Navigation Container */
.product-nav-container {
    position: relative;
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.overlay-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 40px;
}

.image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.overlay-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: none;
}

.overlay-text {
    font-size: 1.2rem;
    text-shadow: none;
}


.left-image {
    flex: 1;
}

.left-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.right-content {
    flex: 1;
    text-align: left;
}

.small-image {
    margin: 30px 0;
}

.small-img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

/* Category Container */
.image-category-row {
    display: flex;
    gap: 30px;
    padding: 80px 0;
    background-color: #f8f9fa;
    justify-content: center;
    flex-wrap: wrap;
}

.image-category-item {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-category-item:hover {
    transform: translateY(-5px);
}

.image-category-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.image-category-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-category-item:hover img {
    transform: scale(1.05);
}

.image-category-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

/* Responsive styles for Innovation Section */
@media (max-width: 1024px) {
    .innovation-section {
        padding: 80px 0;
    }
    
    .main-title {
        font-size: 72px;
    }
    
    .innovation-content {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .fabric-collage {
        height: 350px;
    }
    
    .fabric-item-1 {
        width: 180px;
        height: 135px;
    }
    
    .fabric-item-2 {
        width: 160px;
        height: 110px;
    }
    
    .fabric-item-3 {
        width: 140px;
        height: 90px;
    }
    
    .fabric-item-4 {
        width: 120px;
        height: 70px;
    }
    
    .history-title {
        font-size: 32px;
    }
    
    .swiper-gallery-container {
        width: 480px;
        height: 360px;
        margin: 50px auto;
    }
    
    .mySwiper {
        width: 250px;
        height: 350px;
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .innovation-section {
        padding: 60px 0;
    }
    
    .innovation-container {
        padding: 0 16px;
        margin: 0;
    }
    
    .innovation-title {
        width: 100%;
        margin: 0 0 16px 0;
        justify-content: flex-start;
    }
    
    .innovation-title .main-title {
        font-size: 36px;
        line-height: 1.2;
    }
    
    .main-title {
        font-size: 72px;
    }
    
    .innovation-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .portfolio-description {
        gap: 30px;
        text-align: center;
    }
    
    .portfolio-text {
        font-size: 16px;
    }
    
    .embroidered-flower {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .fabric-collage {
        height: 300px;
        order: -1;
    }
    
    .fabric-item-1 {
        width: 160px;
        height: 120px;
        left: 10%;
    }
    
    .fabric-item-2 {
        width: 140px;
        height: 100px;
        right: 20%;
    }
    
    .fabric-item-3 {
        width: 120px;
        height: 80px;
        right: 5%;
    }
    
    .fabric-item-4 {
        width: 100px;
        height: 60px;
        left: 5%;
    }
    
    .history-section {
        max-width: 100%;
    }
    
    .history-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .history-text {
        font-size: 15px;
    }
    
    .swiper-gallery-container {
        margin: 12px 0;
        width: 320px;
        height: 260px;
        justify-content: flex-start;
    }
    
    .mySwiper {
        width: 260px;
        height: 360px;
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .innovation-section {
        padding: 40px 0;
    }
    
    .innovation-container {
        padding: 0 12px;
    }
    
    .innovation-title {
        width: 100%;
        margin: 0 0 12px 0;
        justify-content: flex-start;
    }
    
    .innovation-title .main-title {
        font-size: 28px;
    }
    
    .main-title {
        font-size: 72px;
    }
    
    .innovation-content {
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .portfolio-text {
        font-size: 15px;
    }
    
    .embroidered-flower {
        max-width: 200px;
        margin: 0;
        padding-left: 50px;
    }
    
    .fabric-collage {
        height: 250px;  
        padding-left: 50px;
    }
    
    .fabric-item-1 {
        width: 140px;
        height: 105px;
    }
    
    .fabric-item-2 {
        width: 120px;
        height: 90px;
    }
    
    .fabric-item-3 {
        width: 100px;
        height: 70px;
    }
    
    .fabric-item-4 {
        width: 80px;
        height: 50px;
    }
    
    .history-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .history-text {
        font-size: 14px;
    }
    
    .swiper-gallery-container {
        width: 350px;
        height: 165px;
        margin: 8px 0;
        justify-content: flex-start;
    }
    
    .mySwiper {
        width: 220px;
        height: 320px;
        padding: 32px 0;
    }
}

/* Responsive adjustments for existing sections */
@media (max-width: 768px) {
    
    .right-content {
        text-align: center;
    }
    
    .image-category-row {
        flex-direction: column;
        align-items: center;
        padding: 60px 20px;
    }
    
    .image-category-item {
        min-width: 100%;
        max-width: 100%;
    }
}

/* Explore Products Section */
.explore-products {
    padding: 40px 0 20px 0;
}

.explore-row {
    display: flex;
    align-items: flex-start;
    gap: 200px;
}

.explore-title {
    font-family: 'Collingar';
    font-size: 40px;
    text-transform: uppercase;
    padding-left: 260px;
    width: 550px;
    margin: 0;
    color: #333333;
    line-height: 1.2;
    text-align: left;
}

.explore-text {
    font-family: 'TT Norms', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    width: 506px;
    text-align: left;
}
@media (max-width: 768px) {
    .explore-title {
        font-size: 28px;
        padding-left: 16px;
        width: auto;
    }
    .explore-text {
        font-size: 14px;
        width: 320px;
    }
}

/* Explore Categories */
.explore-categories {
    padding: 20px 0 30px 280px;
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.category-link {
    display: inline-block;
    padding: 12px 22px;
    background-color: transparent;
    color: #333333;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    font-family: 'TT Norms', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1.5px solid #333333;
    position: relative;
}

.category-link:hover {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
}

/* Selected/active category: match btn-login */
.category-link.active {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
}

/* Explore Grid */
.explore-grid {
    width: 100vw; /* full-bleed */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding: 10px 0 70px 0; /* no left/right padding */
}

/* Contact Us Banner */
.contact-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    background-color: #333333;
    padding: 40px 0 60px 0;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
}

.contact-right {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 150px; /* inset from edges while full-bleed background */
}

.contact-title {
    font-family: 'Collingar';
    font-size: 120px;
    text-transform: uppercase;
    color: #FAFAFA;
    margin: 0;
    line-height: 1;
}

.contact-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* Adjustments for GET IN and TOUCH */
.contact-get-in { padding-left: 250px; }
.contact-tight { line-height: 1.15; }

.contact-form-row {
    padding: 20px 150px 0 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-input-wrap {
    position: relative;
    width: 615px;
}

.contact-input-wrap::after {
    content: '*';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #FAFAFA;
    font-size: 20px;
}

.contact-input {
    width: 615px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #FAFAFA;
    color: #FAFAFA;
    font-size: 20px;
    text-transform: uppercase;
    padding: 15px 4px;
    outline: none;
}

.contact-input::placeholder {
    color: #FAFAFA;
    opacity: 0.8;
}

.contact-info-row {
    padding: 70px 150px 0 10px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info-label {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FAFAFA;
}

.contact-info-value {
    color: #FAFAFA;
    opacity: 0.9;
}
.explore-swiper {
    width: 100%;
    padding: 0;
}

.explore-swiper .swiper-slide {
    width: auto;
}

.product-card {
    display: grid;
    grid-template-rows: auto auto 1fr; /* name, meta, image */
    width: 585px; /* ensure card matches slide width */
    height: 585px;
    border: 1.5px solid #333333;
    border-right: 0; /* prevent double border between slides */
    background: transparent;
    margin-bottom: 0;
    box-sizing: border-box;
}

.product-info {
    padding: 16px 24px 8px 24px;
}

.product-name {
    font-family: 'TT Norms', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #191919;
    margin: 0;
    text-align: left;
    text-transform: uppercase;

}

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

.product-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'TT Norms', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 20px;
    color: #333333;
    text-transform: uppercase;

    
}

.meta-separator {
    color: #333333;
}

.color-thumbs {
    display: flex;
    align-items: center;
    margin-top: 8px;
    list-style: none;
    padding: 0;
    gap: 0; /* no natural gap, we will overlap via negative margins */
}

.color-thumb {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #999999;
    margin-left: -10px; /* overlap current over previous */
    position: relative;
    z-index: 1; /* ensure stacking above previous by DOM order */
}

.color-thumbs .color-thumb:first-child {
    margin-left: 0; /* no overlap for the first */
}

.color-thumb:hover {
    z-index: 10; /* raise hovered thumb above others */
}

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

.product-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0px 14px 14px 14px;
}

.product-main-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* Explore swiper: auto-width slides (already set), add border and staggered heights */
.explore-swiper .swiper-slide .product-visual {
    display: flex;
    align-items: flex-end !important;
    /* justify-content: flex-end !important; */
    padding-bottom: 0 !important;
    height: 450px !important; /* ensure percentage heights below have a basis */
}

.explore-swiper .swiper-slide .product-main-image {
    align-self: flex-end;
    display: block;
}

.explore-swiper .swiper-slide .product-main-image {
    border: 1px solid #000000;
}

/* 2nd card: 100% image height */
.explore-swiper .swiper-slide:nth-child(3n+2) .product-main-image {
    height: 100%;
}

/* 1st card: 45% image height */
.explore-swiper .swiper-slide:nth-child(3n+1) .product-main-image {
    height: 75%;
}

/* 3rd card: 65% image height */
.explore-swiper .swiper-slide:nth-child(3n+3) .product-main-image {
    height: 85%;
}

/* Ensure only one border between adjacent slides */
.explore-swiper .swiper-slide:last-child .product-card {
    border-right: 1.5px solid #333333;
}

/* Explore navigation */
.explore-prev-btn, .explore-next-btn {
    color: #191919;
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
}

.explore-prev-btn img, .explore-next-btn img {
    width: 40px;
    height: 40px;
}

/* Ensure nav isn't hidden when disabled due to few slides */
.explore-swiper .swiper-button-disabled {
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* Place arrows under the swiper wrapper */
.explore-swiper .swiper-wrapper {
    grid-row: 1;
}
.explore-controls {
    display: flex;
    align-items: center;
    padding: 40px 260px 0 150px;
    justify-content: space-between;
}

.explore-left {
    display: flex;
    gap:30px;
}

.explore-finder-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #191919;
    text-decoration: none;
    font-family: 'TT Norms', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.finder-icon {
    width: 22px;
    height: 22px;
}

/* Remove pagination bullets (not used) */
.explore-pagination { display: none; }

@media (max-width: 768px) {
  /* Reduce slide widths on mobile */
  .mySwiper .swiper-slide,
  .mySwiper .swiper-slide-visible,
  .mySwiper .swiper-slide-fully-visible,
  .mySwiper .swiper-slide-active {
    width: 200px !important;
  }

  /* Position and size the next slide */
  .mySwiper .swiper-slide-next {
    transform: translate3d(calc(53% - 350px), -80px, -200px) rotateZ(55deg) scale(1) !important;
    width: 200px !important;
  }
}

@media (max-width: 768px) {
  .portfolio-description { gap: 16px; align-items: flex-start; padding-left: 0; }
  .portfolio-text { font-size: 14px; width: 300px; line-height: 1.5; text-align: left; }
  .history-main-title { font-size: 28px; width: 320px; }
  .history-main-text { font-size: 16px; width: 320px; line-height: 1.5; }
}

@media (max-width: 480px) {
  .portfolio-description { gap: 12px; }
  .portfolio-text { font-size: 13px; width: 260px; padding-left: 50px; }
  .history-main-title { font-size: 24px; width: 260px; }
  .history-main-text { font-size: 14px; width: 260px; }
}

@media (max-width: 768px) {
  /* Explore Products: compact spacing */
  .explore-products { padding: 24px 0 10px 0; }
  .explore-row { gap: 24px; align-items: flex-start; }

  /* Title and description smaller and with reduced left padding */
  .explore-title { font-size: 28px; padding-left: 16px; width: auto; }
  .explore-text { font-size: 14px; width: 320px; line-height: 1.5; }

  /* Categories row tighter and left aligned */
  .explore-categories { padding: 12px 0 18px 16px; }
  .category-list { gap: 8px; }
  .category-link { padding: 8px 12px; font-size: 12px; letter-spacing: .5px; }

  /* Grid full-bleed remains, but card sizes reduced */
  .explore-grid { padding: 6px 0 30px 0; }
  .explore-swiper { padding: 0; }
  .explore-swiper .swiper-slide { width: auto; }

  /* Product card compact */
  .product-card { width: 320px; height: 360px; border-width: 1px; }
  .product-info { padding: 10px 12px 6px 12px; }
  .product-name { font-size: 16px; }
  .product-meta-row { font-size: 12px; gap: 8px; }

  .color-thumb { width: 22px; height: 22px; margin-left: -6px; }
  
  /* Hide color-thumb images beyond the 10th on mobile */
  .color-thumbs .color-thumb:nth-child(n+10) {
    display: none;
  }

  .product-visual { padding: 0 8px 8px 8px; }
  .product-main-image { height: 240px; }
  .explore-swiper .swiper-slide .product-visual { height: 240px !important; }

  /* Staggered heights scaled down */
  .explore-swiper .swiper-slide:nth-child(3n+2) .product-main-image { height: 100%; }
  .explore-swiper .swiper-slide:nth-child(3n+1) .product-main-image { height: 65%; }
  .explore-swiper .swiper-slide:nth-child(3n+3) .product-main-image { height: 80%; }

  /* Controls compact */
  .explore-controls { padding: 16px 16px 0 16px; }
  .explore-left { gap: 12px; }
  .explore-prev-btn, .explore-next-btn { width: 28px; height: 28px; }
  .explore-prev-btn img, .explore-next-btn img { width: 28px; height: 28px; }
  .explore-finder-link { font-size: 12px; }
  .finder-icon { width: 16px; height: 16px; }
}

@media (max-width: 480px) {
  .explore-title { font-size: 18px; }
  .explore-text { font-size: 10px; width: 260px; }
  .product-card { width: 280px; height: 320px; }
  .product-main-image { height: 210px; }
  .explore-swiper .swiper-slide .product-visual { height: 210px !important; }
}

@media (max-width: 768px) {
  /* Contact banner: compact layout */
  .contact-banner { padding: 24px 0 36px 0; }
  .contact-container { grid-template-columns: 1fr; }
  .contact-left, .contact-right { align-items: flex-start; }
  .contact-row { padding: 0 16px; gap: 12px; }
  .contact-title { font-size: 56px; }
  .contact-icon { width: 100px; height: 100px; }

  .contact-form-row { padding: 12px 16px 0 16px; }
  .contact-form { gap: 12px; }
  .contact-input-wrap { width: 100%; }
  .contact-input { width: 100%; font-size: 16px; padding: 12px 4px; }

  .contact-info-row { padding: 24px 16px 0 16px; }
  .contact-info-grid { grid-template-columns: 1fr; gap: 16px; text-align: left;}
  .contact-info-label { font-size: 14px; }
}

@media (max-width: 480px) {
  .contact-title { font-size: 42px; }
  .contact-icon { width: 72px; height: 72px; }
  .contact-input { font-size: 14px; }
}
