@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Serif+Georgian:wght@100..900&display=swap');

:root {
    --primary-color: #9b5c50;
    --font-main: "Montserrat", sans-serif;
    --text-color: #37393b;
}

/* Custom overflow class */
.custom-overflow {
    overflow: hidden;
}


body,
html {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
}

.section-padding {
    padding: 50px 0;
}

/* Navbar  */

.custom-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 1rem 2rem;

}


.custom-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.custom-logo .embroid-logo {
    width: 140px;
}

.nav-toggle {
    background: none;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background-color: #111;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: left 0.3s ease;
    z-index: 9;
}

.mobile-nav.show {
    left: 0;
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.nav-link-caps {

    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link-caps:hover {
    opacity: 0.8;
}

/* hero section banner */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.my-swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.my-swiper-slide {
    height: 100vh;
    overflow: hidden;
}

.my-swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    z-index: 10;
    width: 40px;
    height: 40px;
    background-color: #211f1f3a;
    backdrop-filter: blur(9px);
    border-radius: 10px;

}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 18px;
    font-weight: 600;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Optional: Dark overlay */
    z-index: 0;
    /* ⬅️ Lower this so controls appear above it */
}

/* main btn */
/* From Uiverse.io by mrhyddenn */
.main-btn {
    position: relative;
    margin: 0;
    padding: 0.8em 1.2em;
    outline: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    background-color: var(--primary-color);
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    font-family: inherit;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
    width: max-content;
}

.main-btn:hover {
    animation: sh0 0.5s ease-in-out both;
}

@keyframes sh0 {
    0% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }

    25% {
        transform: rotate(7deg) translate3d(0, 0, 0);
    }

    50% {
        transform: rotate(-7deg) translate3d(0, 0, 0);
    }

    75% {
        transform: rotate(1deg) translate3d(0, 0, 0);
    }

    100% {
        transform: rotate(0deg) translate3d(0, 0, 0);
    }
}

.main-btn:hover span {
    animation: storm 0.7s ease-in-out both;
    animation-delay: 0.06s;
}

.main-btn::before,
.main-btn::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
    transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
    z-index: -1;
    transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.main-btn:hover::before,
.main-btn:hover::after {
    opacity: 0.15;
    transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.main-btn:hover::before {
    transform: translate3d(50%, 0, 0) scale(0.9);
}

.main-btn:hover::after {
    transform: translate(50%, 0) scale(1.1);
}

/* hero section content */
/* Hero Text */
.hero-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-40%);
    z-index: 2;
    color: #fff;
    /* text-align: center; */
}

.inner-hero {
    max-width: 730px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inner-hero h1,
.inner-hero h2 {
    margin: 0;
}

.inner-hero h1 {
    font-size: 80px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Noto Serif Georgian", serif;
    animation-duration: 2s;
}

.inner-hero h2 {
    font-size: 45px;
    text-transform: capitalize;
    color: rgb(227, 228, 228);
}

.inner-hero p {
    font-size: 20px;
    font-weight: 500;
    margin-top: 12px;
}

.inner-hero .main-btn {
    width: max-content;
}

/* About Section Styles */
.about-section .btn:hover,
.about-section .btn:focus {
    background: #7a463b !important;
    color: #fff !important;
}

@media (max-width: 991.98px) {
    .about-content {
        border-left-width: 0 !important;
        border-top: 4px solid var(--primary-color) !important;
        border-radius: 1.2rem 1.2rem 1.2rem 1.2rem !important;
    }

    .about-img-wrapper {
        max-height: 260px !important;
        min-height: 160px !important;
    }
}

@media (max-width: 575.98px) {
    .about-content {
        padding: 1.2rem !important;
    }

    .about-img-wrapper {
        max-height: 180px !important;
        min-height: 100px !important;
    }

    .about-section h2 {
        font-size: 1.3rem !important;
    }

    .about-section p,
    .about-section .btn {
        font-size: 14px !important;
    }

    .about-section .badge {
        font-size: 0.9rem !important;
        left: 1rem !important;
        top: 1rem !important;
    }
}

/* Products Section Styles */
.products-section {
    background: #fff;
}

.section-title {
    font-family: var(--font-main);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Modern Product Card Styles */
.product-card-modern {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px 0 rgba(155, 92, 80, 0.10), 0 1.5px 6px 0 rgba(155, 92, 80, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #f5e7e3;
    height: 100%;
}

.product-card-modern:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(155, 92, 80, 0.18), 0 2px 8px 0 rgba(155, 92, 80, 0.12);
    border-color: var(--primary-color);
}

.product-img-modern {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f6f5;
    border-radius: 0.9rem 0.9rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 8px 0 rgba(155, 92, 80, 0.07);
    position: relative;
}

.product-img-float {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

/* Product Image Link Styles */
.product-img-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-decoration: none;
    color: inherit;
}

.product-img-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-img-modern {
    position: relative;
}

.product-img-float {
    position: relative;
    z-index: 0;
    object-position: top;
}

.product-card-modern:hover .product-img-float {
    transform: scale(1.07) rotate(-2deg);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, var(--primary-color) 60%, #b07a6a 100%);
    color: #fff;
    padding: 0.4em 0.8em;
    border-radius: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px 0 rgba(155, 92, 80, 0.15);
    z-index: 2;
}

.product-body-modern {
    padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.product-title-modern {
    font-family: var(--font-main);
    color: var(--primary-color);
    font-size: 1.13rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    text-align: center;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    background: none;
}

.product-title-modern::after {
    content: '';
    display: block;
    margin: 0.4em auto 0 auto;
    width: 38px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--primary-color) 60%, #b07a6a 100%);
    opacity: 0.7;
    transition: width 0.2s;
}

.product-card-modern:hover .product-title-modern::after {
    width: 60px;
    opacity: 1;
}

.product-desc {
    color: var(--text-color);
    font-size: 0.98rem;
    text-align: center;
    margin-bottom: 1.1rem;
    margin-top: -0.3rem;
    min-height: 48px;
    line-height: 1.5;
}

.product-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2em;
    height: 2.2em;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary-color) 60%, #b07a6a 100%);
    color: #fff;
    font-size: 1.1em;
    border: none;
    box-shadow: 0 2px 8px 0 rgba(155, 92, 80, 0.13);
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
    outline: none;
    cursor: pointer;
    position: relative;
    text-decoration: none;
}

.product-btn-icon:hover,
.product-btn-icon:focus {
    background: linear-gradient(90deg, #b07a6a 0%, var(--primary-color) 100%);
    color: #fff;
    transform: scale(1.13) translateY(-2px);
    box-shadow: 0 6px 18px 0 rgba(155, 92, 80, 0.18);
    text-decoration: none;
}

.product-btn-icon i {
    font-size: 1.1em;
    margin: 0;
    pointer-events: none;
}

/* Legacy styles for backward compatibility */
.product-card {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 4px 24px 0 rgba(155, 92, 80, 0.10), 0 1.5px 6px 0 rgba(155, 92, 80, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 1rem 1.5rem 1rem;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #f5e7e3;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(155, 92, 80, 0.18), 0 2px 8px 0 rgba(155, 92, 80, 0.12);
    border-color: var(--primary-color);
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f8f6f5;
    border-radius: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px 0 rgba(155, 92, 80, 0.07);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.9rem;
    transition: transform 0.3s;
}

.product-card:hover .product-img {
    transform: scale(1.07) rotate(-2deg);
}

.product-title {
    font-family: var(--font-main);
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    text-align: center;
}

.product-btn {
    margin-top: 0.2rem;
    font-size: 0.98rem;
    padding: 0.6em 1.2em;
    border-radius: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.product-btn-modern {
    margin-top: 0.2rem;
    font-size: 1.08rem;
    padding: 0.7em 1.1em 0.7em 1.1em;
    border-radius: 1.8em;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: background 0.2s, box-shadow 0.2s, color 0.2s, border 0.2s, transform 0.18s;
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
    box-shadow: 0 4px 16px 0 rgba(155, 92, 80, 0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1;
}

.product-btn-modern::after {
    content: '';
    display: inline-block;
    width: 2.1em;
    height: 2.1em;
    margin-left: 0.5em;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--primary-color) 60%, #b07a6a 100%);
    position: relative;
    transition: background 0.2s, transform 0.18s;
    box-shadow: 0 2px 8px 0 rgba(155, 92, 80, 0.13);
    vertical-align: middle;
}

.product-btn-modern::before {
    content: '\f061';
    /* Font Awesome arrow-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #fff;
    font-size: 1.1em;
    position: absolute;
    right: 1.1em;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

.product-btn-modern:hover,
.product-btn-modern:focus {
    background: linear-gradient(90deg, #fff 0%, #f7e7e2 100%);
    color: #fff;
    border: 1.5px solid #b07a6a;
    box-shadow: 0 8px 32px 0 rgba(155, 92, 80, 0.18);
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}

.product-btn-modern:hover::after {
    background: linear-gradient(90deg, #b07a6a 0%, var(--primary-color) 100%);
    transform: scale(1.1);
}

.product-btn-modern:hover::before {
    color: var(--primary-color);
}

/* Responsive Design for Products */
@media (max-width: 991.98px) {
    .product-card {
        padding: 1rem 0.7rem 1.2rem 0.7rem;
    }

    .product-title {
        font-size: 1.05rem;
    }

    .product-body-modern {
        padding: 1.2rem 1rem 1rem 1rem;
    }

    .product-title-modern {
        font-size: 1.05rem;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 1.3rem;
    }

    .product-card {
        padding: 0.8rem 0.4rem 1rem 0.4rem;
    }

    .product-title {
        font-size: 0.98rem;
    }

    .product-body-modern {
        padding: 1rem 0.8rem 0.8rem 0.8rem;
    }

    .product-title-modern {
        font-size: 0.98rem;
        letter-spacing: 0.8px;
    }

    .product-desc {
        font-size: 0.9rem;
        min-height: 40px;
    }

    .product-badge {
        font-size: 0.7rem;
        padding: 0.3em 0.6em;
        top: 0.8rem;
        right: 0.8rem;
    }
}

/* Blog Section Styles */
.blog-section {
    position: relative;
    overflow: hidden;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23f0f0f0" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23f0f0f0" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.blog-card-modern {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(155, 92, 80, 0.08), 0 2px 8px 0 rgba(155, 92, 80, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    position: relative;
    border: 1px solid rgba(155, 92, 80, 0.08);
}

.blog-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 48px 0 rgba(155, 92, 80, 0.15), 0 4px 16px 0 rgba(155, 92, 80, 0.1);
    border-color: var(--primary-color);
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-modern:hover .blog-img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(155, 92, 80, 0.1) 0%, rgba(176, 122, 106, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-modern:hover .blog-overlay {
    opacity: 1;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #b07a6a 100%);
    color: #fff;
    padding: 0.5em 1em;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px 0 rgba(155, 92, 80, 0.2);
    z-index: 2;
}

.blog-content {
    padding: 1.8rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 220px);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-date,
.blog-read-time {
    color: var(--text-color);
    font-size: 0.85rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
}

.blog-title {
    font-family: var(--font-main);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-excerpt {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-grow: 1;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 1rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.2s ease;
    padding: 0.5em 1em;
    border-radius: 2rem;
    background: var(--primary-color);
}

.blog-read-more:hover {
    background: #b07a6a;
    color: #fff;
    transform: translateX(4px);
    text-decoration: none;
}

.blog-read-more i {
    transition: transform 0.2s ease;
}

.blog-read-more:hover i {
    transform: translateX(2px);
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--primary-color);
    padding: 0.3em 0.8em;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(155, 92, 80, 0.1);
}

/* Responsive Design for Blog */
@media (max-width: 991.98px) {
    .blog-content {
        padding: 1.5rem 1.2rem 1.2rem 1.2rem;
    }

    .blog-title {
        font-size: 1.1rem;
    }

    .blog-excerpt {
        font-size: 0.9rem;
    }

    .blog-img-wrapper {
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .blog-card-modern {
        margin-bottom: 1.5rem;
    }

    .blog-content {
        padding: 1.3rem 1rem 1rem 1rem;
    }

    .blog-title {
        font-size: 1rem;
        -webkit-line-clamp: unset;
        display: block;
        overflow: visible;
    }

    .blog-excerpt {
        font-size: 0.85rem;
        -webkit-line-clamp: unset;
        display: block;
        overflow: visible;
    }

    .blog-meta {
        gap: 0.8rem;
    }

    .blog-date,
    .blog-read-time {
        font-size: 0.8rem;
    }

    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .blog-tags {
        justify-content: flex-start;
    }

    .view-all-blogs-btn {
        padding: 0.8em 1.5em;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .blog-img-wrapper {
        height: 180px;
    }

    .blog-category {
        font-size: 0.75rem;
        padding: 0.4em 0.8em;
        top: 0.8rem;
        left: 0.8rem;
    }

    .blog-content {
        padding: 1.2rem 0.8rem 0.8rem 0.8rem;
    }

    .blog-title {
        font-size: 0.95rem;
    }

    .blog-excerpt {
        font-size: 0.8rem;
    }

    .blog-read-more {
        font-size: 0.85rem;
        padding: 0.4em 0.8em;
    }

    .tag {
        font-size: 0.7rem;
        padding: 0.25em 0.6em;
    }
}

/* Footer Styles */
.footer-section {
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grain)"/></svg>');
    pointer-events: none;
}

.footer-widget {
    position: relative;
    z-index: 2;
}

.footer-logo h3 {
    font-family: var(--font-main);
    font-size: 1.8rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(155, 92, 80, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    /* background: rgba(255, 255, 255, 0.1); */
    background: #f7efe5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h6 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.contact-details p {
    font-size: 0.85rem;
    line-height: 1.5;
}


.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive Design for Footer */
@media (max-width: 991.98px) {
    .footer-logo h3 {
        font-size: 1.5rem;
    }

    .contact-item {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 1rem;
    }


}

@media (max-width: 575.98px) {
    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
}


/* brodcam */
/* brodacm section */
.brodcam-container {
    height: 350px;
    background: url('../images/bg1.jpeg') center/cover no-repeat;
}

.inner-brodcam {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 120%;
}

.inner-brodcam h1 {
    color: #fff;
    font-weight: 800;
}

.inner-brodcam a {
    text-decoration: none;
    color: #fff;

}

.inner-brodcam p {
    color: #fff;
    font-family: 600;
}

/* Product Details Description & Benefits Section */
.product-details-desc {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.product-details-desc h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.product-details-desc h4 {
    color: #07532a;
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    letter-spacing: 0.5px;
}

.product-details-desc p {
    color: #37393b;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.product-details-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.5rem;
}

.product-details-benefits li {
    background: #fff;
    border-radius: 1.2rem;
    box-shadow: 0 2px 8px 0 rgba(7, 83, 42, 0.07);
    padding: 0.7rem 1.3rem 0.7rem 2.2rem;
    position: relative;
    color: #07532a;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    min-width: 220px;
    flex: 1 1 220px;
    transition: box-shadow 0.2s;
}

.product-details-benefits li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
}

.product-details-benefits li:hover {
    box-shadow: 0 6px 18px 0 rgba(7, 83, 42, 0.13);
    background: #f8f9fa;
}

.product-details-facts {
    background: #f7efe5;
    border-radius: 1.2rem;
    box-shadow: 0 2px 12px 0 rgba(155, 92, 80, 0.07);
    border: 1.5px solid #f5e7e3;
}

.product-details-facts h5 {
    color: #f28c13;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
}

.product-details-facts ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-details-facts li {
    color: #37393b;
    font-size: 1rem;
    margin-bottom: 0.7rem;
    padding-left: 1.2rem;
    position: relative;
}

.product-details-facts li:before {
    content: '\f05d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #f28c13;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
}

.product-details-weight {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35em 1em;
    border-radius: 2em;
    box-shadow: 0 2px 8px 0 rgba(155, 92, 80, 0.13);
    letter-spacing: 0.5px;

    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .product-details-weight {
        font-size: 0.85rem;
        padding: 0.28em 0.8em;
    }
}

@media (max-width: 991.98px) {
    .product-details-desc h2 {
        font-size: 1.3rem;
    }

    .product-details-benefits li {
        font-size: 0.95rem;
        min-width: 160px;
        padding: 0.6rem 1rem 0.6rem 2rem;
    }

    .product-details-facts li {
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .product-details-benefits {
        flex-direction: column;
        gap: 0.5rem;
    }

    .product-details-benefits li {
        min-width: 0;
        width: 100%;
        font-size: 0.92rem;
        flex: none !important;
    }

    .product-details-facts {
        padding: 1.2rem !important;
    }
}

/* Product Details Hero Section Enhancements */
.product-details-hero .product-details-img-wrapper {
    display: flex;
    align-items: stretch;
    height: 100%;
    min-height: 340px;
    justify-content: center;
}

.product-details-img {
    box-shadow: 0 8px 32px 0 rgba(7, 83, 42, 0.18), 0 1.5px 6px 0 rgba(7, 83, 42, 0.10);
    border-radius: 1.5rem;
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-height: 420px;
    min-height: 320px;
    background: #fff;
}

.product-details-img-wrapper {
    height: 100%;
    min-height: 340px;
    max-height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.product-details-info {
    box-shadow: 0 2px 12px 0 rgba(7, 83, 42, 0.08);
    border-radius: 1.5rem;
    background: #fff;
    height: 100%;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 4px solid var(--primary-color);

}

@media (min-width: 992px) {
    .product-details-hero .row.align-items-center {
        align-items: stretch !important;
    }

    .product-details-img {
        height: 100%;
        min-height: 340px;
        max-height: 100%;
    }

    .product-details-img-wrapper {
        height: 100%;
        min-height: 340px;
        max-height: 100%;
    }

    .product-details-info {
        height: 100%;
        min-height: 340px;
    }
}

@media (max-width: 991.98px) {
    .product-details-img {
        max-height: 320px;
        min-height: 180px;
    }

    .product-details-info {
        min-height: 0;
        box-shadow: 0 1px 6px 0 rgba(7, 83, 42, 0.07);
    }
}

.product-details-highlights i {
    font-size: 1.35rem;
    color: var(--primary-color) !important;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.product-details-benefits li {
    padding-left: 2.5rem;
}

.product-details-highlights li:before {
    left: 1.2rem;
}

.product-details-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--primary-color);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.55em 1.3em;
    border-radius: 2em;
    box-shadow: 0 2px 8px 0 rgba(155, 92, 80, 0.13);
    letter-spacing: 0.5px;
    z-index: 2;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}

@media (max-width: 991.98px) {
    .product-details-badge {
        font-size: 0.95rem;
        padding: 0.45em 1em;
        top: 10px;
        left: 10px;
    }

    .product-details-highlights i {
        font-size: 1.1rem;
    }
}

/* Why Choose Us Section (section-specific classes) */
.why-choose-us-section {
    position: relative;
    overflow: hidden;
}

.why-choose-us-bg {
    position: absolute;
    inset: 0;
    background: url('images/why-bg.jpg') center center/cover no-repeat;
    opacity: 0.13;
    z-index: 1;
}

.why-section-title {
    font-family: var(--font-main);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
}

.why-section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.why-card {
    background: #f7efe5;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.why-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px 0 rgba(242, 140, 19, 0.13);
}

.why-icon {
    font-size: 2.5rem;
    color: var(--primary-color, #f28c13);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem auto;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px 0 rgba(242, 140, 19, 0.08);
}

.why-title {
    font-weight: 600;
    color: var(--primary-color, #f28c13);
    font-size: 1.2rem;
}

.why-desc {
    color: var(--text-color, #6c4c1b);
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .why-card {
        padding: 1.5rem 1rem;
    }

    .why-icon {
        font-size: 2rem;
        width: 52px;
        height: 52px;
    }

    .why-section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .why-choose-us-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .why-card {
        padding: 1.2rem 0.7rem;
    }
}

/* Vision & Mission Section (section-specific classes) */
.vision-mission-section {
    background: var(--primary-color, #f28c13);
}

.vision-section-title {
    color: #fff;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
}

.vision-section-subtitle {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.vision-card-custom {
    padding: 2rem;
    border-radius: 1.2rem;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(242, 140, 19, 0.08);
    border-left: 6px solid #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #6c4c1b;
    font-size: 16px;
}

.vision-card-custom:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 6px 24px 0 rgba(242, 140, 19, 0.15);
}

.vision-icon-custom {
    font-size: 2rem;
    color: var(--primary-color, #f28c13);
    background: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(242, 140, 19, 0.08);
    flex-shrink: 0;
}

.vision-title-custom {
    color: var(--primary-color, #f28c13);
    font-weight: 700;
    font-size: 1.2rem;
}

.vision-desc-custom {
    color: #6c4c1b;
    font-size: 16px;
    line-height: 1.7;
}

.mission-card-custom {
    padding: 2rem;
    border-radius: 1.2rem;
    background: #fff;
    box-shadow: 0 2px 16px 0 rgba(242, 140, 19, 0.08);
    border-left: 6px solid #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    color: #6c4c1b;
    font-size: 16px;
}

.mission-card-custom:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 6px 24px 0 rgba(242, 140, 19, 0.15);
}

.mission-icon-custom {
    font-size: 2rem;
    color: #fff;
    background: #6c4c1b;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(108, 76, 27, 0.08);
    flex-shrink: 0;
}

.mission-title-custom {
    color: #6c4c1b;
    font-weight: 700;
    font-size: 1.2rem;
}

.mission-desc-custom {
    color: #6c4c1b;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 991.98px) {

    .vision-card-custom,
    .mission-card-custom {
        padding: 1.5rem 1rem;
        font-size: 14px;
    }

    .vision-icon-custom,
    .mission-icon-custom {
        font-size: 1.3rem;
        width: 38px;
        height: 38px;
    }

    .vision-title-custom,
    .mission-title-custom {
        font-size: 1rem;
    }

    .vision-section-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .vision-mission-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .vision-card-custom,
    .mission-card-custom {
        padding: 1.2rem 0.7rem;
        font-size: 14px;
    }

    .vision-desc-custom,
    .mission-desc-custom {
        font-size: 14px;
    }
}

/* Contact Form Validation and Notification Styles */
.contact-input.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.13) !important;
}

.contact-input.is-valid {
    border-color: #198754 !important;
    box-shadow: 0 0 0 0.15rem rgba(25, 135, 84, 0.13) !important;
}

.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.valid-feedback {
    display: block;
    color: #198754;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

/* Notification Styles */
#notification-container .alert {
    animation: slideInRight 0.3s ease-out;
    border: none;
    font-weight: 500;
}

#notification-container .alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-left: 4px solid #28a745;
}

#notification-container .alert-danger {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Button Loading State */
.main-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Form Validation Enhancement */
.was-validated .contact-input:invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.13);
}

.was-validated .contact-input:valid {
    border-color: #198754;
    box-shadow: 0 0 0 0.15rem rgba(25, 135, 84, 0.13);
}

/* Responsive adjustments for notifications */
@media (max-width: 767.98px) {
    #notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    #notification-container .alert {
        font-size: 0.9rem;
        padding: 12px 15px;
    }
}

/* responsive  mobile */
@media screen and (max-width:576px) {
    .custom-logo .embroid-logo {
        width: 100px;
    }

    .inner-hero h1 {
        font-size: 50px;
        font-family: math;
    }

    .inner-hero h2 {
        font-size: 30px;

    }

    .inner-hero p {
        font-size: 16px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        color: #fff;
        z-index: 10;
        width: 25px;
        height: 25px;
        border-radius: 5px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 12px;
    }

    .hero-content {
        top: 40%;
        left: 6%;
    }



    .copyright-area p {
        font-size: 14px !important;
    }

    .brodcam-container {
        background-position: inherit;
    }



    .mobile-nav {
        padding: 40px;
    }

    .close-btn {
        align-self: flex-end;
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        margin-bottom: 10px;
        color: #fff;
    }

    .mobile-nav a {
        padding: 10px 0;
        border-bottom: 1px solid #bcb0b045;
        font-size: 16px;
    }

    .mobile-nav .main-btn {
        padding: 10px 15px;
        font-size: 14px;
    }

    /* Footer Mobile Styles */
    .footer-section p {
        font-size: 14px !important;
    }

    .footer-section a {
        font-size: 14px !important;
    }

    .footer-section h3,
    .footer-section h4,
    .footer-section h5,
    .footer-section h6 {
        font-size: 16px !important;
    }

    .footer-links a {
        font-size: 14px !important;
    }

    .footer-bottom-links a {
        font-size: 14px !important;
    }

    .contact-details p {
        font-size: 14px !important;
    }

    .contact-details h6 {
        font-size: 14px !important;
    }

    .social-links a {
        font-size: 14px !important;
    }

    .footer-logo h3 {
        font-size: 16px !important;
    }
}

.thumb-img {
    width: 100px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s;
    max-width: unset;
}

.shop-here-section {
    margin-top: 10px;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.shop-here-blink {
    color: var(--primary-color);
    animation: blink 1s linear infinite;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.shop-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.shop-icon-link:hover {
    transform: scale(1.15) rotate(-5deg);
    background: #fffbe6;
    border-radius: 50%;
}

.shop-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 2px;
    margin-left: 2px;
    border-radius: 12px;
}

.shop-icon.fa-amazon {
    color: #ff9900;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    width: 38px;
    height: 38px;
    text-align: center;
    line-height: 30px;
}

/* Match main product image height to product details info */
.product-details-hero .product-details-img-wrapper {
    height: 100%;
    display: flex;
    align-items: stretch;
}

#mainProductImg {
    height: 100%;
    /* max-height: 420px; */
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.product-details-info {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991.98px) {

    .product-details-hero .product-details-img-wrapper,
    #mainProductImg,
    .product-details-info {
        max-height: none;
        min-height: unset;
        height: auto;
    }

    .thumb-img {
        width: 65px;

    }
}

.product-thumbnails .thumb-img.active {
    border: 2.5px solid var(--primary-color) !important;
    box-shadow: 0 0 0 2px #fff, 0 2px 12px rgba(155, 92, 80, 0.10);
    z-index: 2;
    transition: border 0.2s, box-shadow 0.2s;
}