:root {
    --cream: #FFFFE3;
    --grey: #CBCBCB;
    --teal: #6DA196;
    --dark: #4A4A4A;
     --primary-pink: #FFC0CB;
    --primary-brown: #863027;
    --primary-teal: #6DA196;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--cream);
    color: var(--dark);
}

.section-title ,.section-title span{
    font-family: 'Cormorant Garamond' !important;
}

/* Navbar */
.navbar {
    background-color: pink;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #ffff;
}

.navbar-brand {
    font-size: 1.9rem;
    font-weight: bold;
    color: var(--teal) !important;
    letter-spacing: 2px;
    position: absolute;
    margin-top: 15px;
    left:45%;
     font-family: "Playfair Display", serif;
     border-radius:18%;
    border-bottom: 5px solid #ffff;
    background-color: pink;
    margin-bottom: 0px;
    padding-bottom: 0px;
}

.navbar-brand h1{
    font-size: 1.9rem;
    margin-bottom: 7px;
    color: #863027;
    font-weight: 600;
    
}
.nav-link {
    color: var(--dark) !important;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--teal) !important;
}

.navbar-icons a {
    color: var(--dark);
    margin-left: 20px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.navbar-icons a:hover {
    color: var(--teal);
}

/* Hero Section */
.hero {
    background: url('./assests/img/banner1.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 30px;
}

.btn-custom {
    background-color: var(--dark);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: var(--cream);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.feature-box {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box i {
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 20px;
}

.feature-box h4 {
    color: var(--dark);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--grey);
}

/* Products Section */
.products {
    padding: 30px 0;
    background-color: var(--cream);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 50px;
    font-weight: bold;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-img {
    width: 100%;
    height: 260px !important;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}
.mb-0{
margin-bottom: 0px   !important;
min-height: 0px !important;
}

.quick-actions{
    margin-top: 10px !important;
}
.product-price {
    font-size: 1.5rem;
    color: var(--teal);
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-cart {
    width: 100%;
    background-color: var(--teal);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-cart:hover {
    background-color: var(--dark);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background:url('./assests/img/1.jpg');
    background-size: cover;
    text-align: center;
}

.newsletter h2 {
    color: var(--dark);
    margin-bottom: 20px;
}

.newsletter p {
    color: var(--dark);
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid white;
    border-radius: 25px;
    font-size: 1rem;
}

.newsletter-form button {
    background-color: var(--teal);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background-color: var(--dark);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer-links h5 {
    color: var(--teal);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

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

.footer-links ul li a:hover {
    color: var(--teal);
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--teal);
}

.copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--grey);
    color: var(--grey);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* Additional Navbar Styles */
.navbar-brand img {
    top: 0px;
    height: 70px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.313);
    z-index: 1;
}

.blocks {
    display: flex;
    height: 300px;
    overflow: clip;
}

/* Images */
.blocks img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.4s ease;
    will-change: filter;
}

/* Individual block */
.blocks .block {
    flex: 1;
    margin-right: -20%;
    clip-path: polygon(20% 0, 100% 0%, 80% 100%, 0% 100%);
    transition:
        flex 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        clip-path 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: flex;
    container: block / inline-size;
}

/* Anchor wrapper */
.blocks .block a {
    position: relative;
    display: block;
    height: 100%;
}

/* Text overlay */
.blocks .block a div {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: #fff;
    font-size: clamp(12px, 5cqw, 32px);
    z-index: 2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* First block special clip */
.blocks .block:first-child {
    clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
}

/* First block image visible */
.blocks .block:nth-child(2) img {
    filter: grayscale(0);
}

/* Last block */
.blocks .block:last-child {
    margin-right: -15%;
    clip-path: polygon(20% 0, 100% 0%, 100% 100%, 0% 100%);
}

/* Hover effect */
.blocks .block:hover {
    flex: 1.3;
}

/* Hover image color */
.blocks .block:hover img {
    filter: grayscale(0);
}

/* If hovering any block except first, gray out first image */
.blocks:has(.block:not(:first-child):hover) .block:first-child img {
    filter: grayscale(1);
}

.feature-section {
    padding: 60px 0
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--cream);
    background-color: var(--teal);
}

/* Swiper Styles */
.mySwiper {
    width: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Common arrow styles */
.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: #111;
    transition: all 0.3s ease;
}

/* Center arrows vertically */
.swiper-button-next,
.swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #111;
    color: #fff;
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Arrow icon size */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: bold;
}

/* Mobile friendly */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 38px;
        height: 38px;
    }
}

.custom-btn{
    background-color: var(--teal);
    color: white;
    border: none;
    height: 50px;
   padding: 0 20px; 
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}
.block a div{
    font-size: 600;
    text-align: center;
    background: #6DA196;
    bottom: -10px !important;
    padding-bottom: 20px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    left: 7rem !important;
    padding-left: 10px;
    padding-right: 20px;
}
.gaps{
   justify-content: space-between !important;
}
.tag-line{
    font-size: 9px;
    margin-top: -10px;
    letter-spacing: 2px;
    text-align: center;
    color: black;
    font-style: italic;
    font-weight: 900;
}
/* Top Announcement Bar */
.top-bar {
    background: #6DA196;
    background-color: #863027;
    color: #fff;
    overflow: hidden;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    z-index: 100;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

.marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll 40s linear infinite;
}

.marquee-content span {
    padding: 0 50px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomOut 7s ease-out forwards;
}

.slide.active img {
    animation: zoomOut 7s ease-out forwards;
}

@keyframes zoomOut {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

/* Slide Content Overlay */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.slide-content .btn {
    display: inline-block;
    padding: 15px 40px;
    background:#6DA196 ;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 1.1s forwards;
}

.slide-content .btn:hover {
    background: #333;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slider-arrow.prev {
        left: 15px;
    }

    .slider-arrow.next {
        right: 15px;
    }
}
.navbar-nav .nav-link {
    font-weight: 700;
}

/* Search Sidebar Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1050;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1051;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.search-sidebar.active {
    transform: translateX(0);
}

.search-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.search-sidebar-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.search-close {
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.search-close:hover {
    color: #000;
}

.search-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.search-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.search-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-teal);
}

.search-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-product-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.search-product-card:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.search-product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.search-product-info {
    flex: 1;
}

.search-product-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.search-product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 8px;
}

.search-product-btn {
    display: inline-block;
    padding: 6px 15px;
    background: var(--primary-teal);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.search-product-btn:hover {
    background: var(--primary-brown);
    color: #fff;
}

@media (max-width: 480px) {
    .search-sidebar {
        width: 100%;
    }
}

/* Cart Sidebar Styles */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1050;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100vh;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1051;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.active {
    transform: translateX(0);
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: #fff;
    color: #333;
}

.cart-sidebar-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.cart-sidebar-header h3 i {
    margin-right: 8px;
}

.cart-close {
    background: none;
    border: none;
    color: #333;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.cart-close:hover {
    transform: scale(1.1);
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 12px;
    margin-bottom: 15px;
    position: relative;
}

.cart-item-cross {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #999;
    font-size: 0.9rem;
    cursor: pointer;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.cart-item-variant {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-qty {
    font-size: 0.9rem;
    color: #666;
    background: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid #eee;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-brown);
}

.cart-sidebar-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fafafa;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 1rem;
    font-weight: 600;
}

.cart-subtotal-price {
    font-size: 1.2rem;
    color: var(--primary-brown);
}

.cart-shipping-note {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.cart-checkout-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--primary-teal);
    color: #fff;
    font-weight: 600;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: background 0.3s ease;
}

.cart-checkout-btn:hover {
    background: var(--primary-brown);
    color: #fff;
}

.cart-continue-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #666;
    font-weight: 500;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cart-continue-btn:hover {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

@media (max-width: 480px) {
    .cart-sidebar {
        width: 100%;
    }
}

/* Product Detail Section */
.product-detail-section {
    padding: 40px 0;
}

/* Image Gallery */
.product-gallery {
    position: sticky;
    top: 20px;
}

.main-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #ffffff;
}

.main-image {
    width: 100%;
    height: 350px;
    object-fit: contain;
    cursor: zoom-in;
}

.thumbnail-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: var(--primary-brown);
}

.thumbnail:hover {
    border-color: var(--primary-teal);
}

.thumbnail img {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.video-thumb {
    position: relative;
}

.video-thumb::after {
    content: '\f144';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    pointer-events: none;
}

/* Product Info */
.product-info-section {
    padding-left: 30px;
}

.product-badge {
    display: inline-block;
    background: var(--primary-teal);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.product-reviews {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.review-count {
    color: #666;
    font-size: 0.95rem;
}

.units-sold {
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 0.95rem;
}

.price-section {
    margin-bottom: 25px;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brown);
}

.original-price {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.discount-badge {
    display: inline-block;
    background: var(--primary-pink);
    color: var(--primary-brown);
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 600;
    margin-left: 10px;
}

.product-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px 15px;
    margin-bottom: 25px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #856404;
}

/* Options */
.option-section {
    margin-bottom: 25px;
}

.option-label {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #333;
}

.color-options {
    display: flex;
    gap: 15px;
}

.color-option {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.color-option.active {
    border-color: var(--primary-brown);
    box-shadow: 0 4px 12px rgba(134, 48, 39, 0.3);
}

.color-option:hover {
    transform: scale(1.05);
}

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

.size-chart-link {
    color: var(--primary-teal);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 10px;
}

.size-chart-link:hover {
    text-decoration: underline;
}

.pair-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pair-option {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pair-option:hover {
    border-color: var(--primary-teal);
}

.pair-option.active {
    border-color: var(--primary-brown);
    background: rgba(134, 48, 39, 0.05);
}

.pair-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.pair-title {
    font-weight: 600;
    font-size: 1rem;
}

.pair-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-brown);
}

.pair-original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-right: 8px;
}

.pair-save {
    background: var(--primary-pink);
    color: var(--primary-brown);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Quantity */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.quantity-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.quantity-btn {
    background: white;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: var(--primary-teal);
    color: white;
}

.quantity-input {
    border: none;
    width: 60px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 0;
    border-left: 2px solid #e0e0e0;
    border-right: 2px solid #e0e0e0;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-add-cart {
    flex: 1;
    background: var(--primary-brown);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-add-cart:hover {
    background: #6d241f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(134, 48, 39, 0.3);
}

.btn-buy-now {
    flex: 1;
    background: var(--primary-teal);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-buy-now:hover {
    background: #5a8578;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(109, 161, 150, 0.3);
}

.btn-wishlist {
    background: white;
    border: 2px solid var(--primary-pink);
    color: var(--primary-pink);
    padding: 18px 25px;
    border-radius: 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-wishlist:hover,
.btn-wishlist.active {
    background: var(--primary-pink);
    color: white;
}

/* Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-teal);
    margin-bottom: 8px;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* Description Tabs */
.description-section {
    margin-top: 50px;
}

.nav-tabs {
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    color: #666;
    font-weight: 600;
    border: none;
    padding: 15px 30px;
    border-bottom: 3px solid transparent;
}

.nav-tabs .nav-link.active {
    color: var(--primary-brown);
    border-bottom-color: var(--primary-brown);
    background: none;
}

.tab-content {
    padding: 20px 0;
}

.description-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.how-to-use {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
}

.how-to-use ol {
    padding-left: 20px;
}

.how-to-use li {
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .product-info-section {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-gallery {
        position: static;
    }

    .main-image {
        height: 400px;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }
}

/* Hero Section 2 */
.hero-section2 {
    background: url('./assests/img/seamless.png');
    background-size: cover;
    padding: 80px 0;
    height: 70vh;
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.hero-section2 h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.hero-section2 p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.filter-bar {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.filter-bar .btn {
    margin: 5px;
    border-radius: 25px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.filter-bar .btn-outline-primary {
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.filter-bar .btn-outline-primary:hover,
.filter-bar .btn-outline-primary.active {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
    color: white;
}

.product-card-new {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
}

.product-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.product-image-container {
    position: relative;
    width: 100%;
    padding-top: 230px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.5s ease;
}

.product-image.hover-image {
    opacity: 0;
}

.product-card-new:hover .product-image.hover-image {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-brown);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.sale {
    background: #dc3545;
}

.product-badge.new {
    background: var(--primary-teal);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wishlist-btn:hover {
    background: var(--primary-pink);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    min-height: 50px;
}

.product-category {
    color: var(--primary-teal);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-brown);
}

.original-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.discount {
    background: var(--primary-pink);
    color: var(--primary-brown);
    padding: 3px 8px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.quick-actions {
    display: flex;
    gap: 10px;
}

.btn-quick-view {
    background: var(--primary-teal);
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-quick-view:hover {
    background: #5a8578;
}

.color-options {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.color-dot {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-dot:hover {
    transform: scale(1.2);
    border-color: var(--primary-brown);
}

@media (max-width: 768px) {
    .hero-section2 h1 {
        font-size: 2rem;
    }
    
    .filter-bar {
        text-align: center;
    }
}

/* Hero Section 3 */
.hero-section-3 {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-pink) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section-3::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 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
    padding-top: 56.25%;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Story Section */
.story-section {
    padding: 80px 0;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-pink));
    border-radius: 2px;
}

.story-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 25px;
}

/* Image Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: #f8f9fa;
}

.content-image {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.content-image:hover {
    transform: scale(1.05);
}

.content-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.content-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 25px;
}

.content-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(109, 161, 150, 0.1) 0%, rgba(255, 192, 203, 0.1) 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 15px;
}

.value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--primary-brown);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-pink);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-teal) 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-button {
    background: white;
    color: var(--primary-brown);
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    color: var(--primary-brown);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .content-title {
        font-size: 1.6rem;
    }

    .content-section {
        padding: 50px 0;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

a{
    text-decoration: none !important;
}

/* Contact Page */
.contact-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.contact-section {
    padding: 60px 0;
}

.contact-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid var(--grey);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-teal);
    box-shadow: 0 0 0 0.2rem rgba(109, 161, 150, 0.25);
}

.contact-form textarea.form-control {
    min-height: 150px;
}

.btn-submit {
    background-color: var(--primary-brown);
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #6d241e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(134, 48, 39, 0.3);
}

.info-item {
    display: flex;
    align-items: start;
    margin-bottom: 30px;
    padding: 20px;
    background-color: var(--cream);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background-color: var(--primary-pink);
    transform: translateX(5px);
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary-teal);
    margin-right: 20px;
    min-width: 40px;
}

.info-item h5 {
    color: var(--primary-brown);
    font-weight: 700;
    margin-bottom: 8px;
}

.info-item p {
    color: var(--dark);
    margin: 0;
    line-height: 1.6;
}

.map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 25px;
        margin-bottom: 30px;
    }
}


@media (max-width: 512px) {
    .hero-slider {
    position: relative;
    width: 100%;
    height: 25vh;
    overflow: hidden;
}

.slide-content{
    display: none;
}

.marquee-section::before, .marquee-section::after {
    width: 38px !important;
}

.blocks {
    display: flex;
    height: 121px;
    overflow: clip;
}

.marquee-wrap {
    padding: 0px !important;
}
.navbar-brand {
left: 30%;
}

.slider-dots{
    z-index: 10 !important;
}
#navbarNav{
position: absolute;
    background: pink;
    width: 100%;
    left: 0px;
    z-index: 10;
    top: 70px;
}

.navbar-nav{
padding:20px;
}

.nav-item{
box-shadow: rgb(24 115 233 / 4%) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgb(126 14 37 / 4%) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
    border-radius: 10px;
}

.block a div {
left:3rem;
}

.footer-links{
text-align:center;
}

.hero-section-3 {
    min-height: 25vh !important;
}

.custm-footer-img {
    height: 210px !important
    ;
            position: unset !important;
}

.custom-main-footer .col-md-4
{
    display: flex;
    justify-content: center;
        margin-bottom: 22px;
}

.custm-footer-img{
    display: none;
}

.origin-pill
 {
     font-size: 0.93rem !important;
 }

}

@media(max-width:394px){
    .navbar-brand{
        left: 25%;
    }
}