@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');

:root {
    --base-color: #FFF5EB;
    --secondary-color: #E7D4BE;
    --tertory-color: #B05215;
    --text-color: #593214;
    --text-dark: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: var(--text-color);
    overflow-x: hidden!important;
    line-height: 1.6;
    background-color: var(--base-color);
}

h1, h2, h3, h4, h5, h6 {
    /* font-family: "Bodoni Moda", serif; */
    font-family: 'Asveda', system-ui, sans-serif;
}

p, span, small, div{
    font-family: "Poppins", sans-serif;
}

.main-app{
    margin-top: 74px;
}

.container-custom{
    width: 100%;
    /* max-width: 1320px; */
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

div.alert-danger{
    margin-top: 81px!important;
    border-radius: 4px;
    background-color:var(--tertory-color);
    color: var(--base-color);
}

div.alert-danger .btn-close{
    filter: invert(1);
}

.page-header {
    background: var(--tertory-color);
    padding: 60px 0 40px;
    text-align: center;
    color: var(--base-color);
}

.page-header h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    letter-spacing: 1px;
}

.breadcrumb-custom a {
    color: var(--base-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-custom a:hover {
    color: #d4af37;
}

.breadcrumb-custom span {
    color: var(--secondary-color);
}

/* Category Section */
.category-section {
    padding: 0px;
    background: var(--base-color);
}

.section-title {
    font-size: 40px;
    text-align: center;
    letter-spacing: 2px;
    text-transform: capitalize;
    margin-bottom: 0px;
    margin-top:30px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    letter-spacing: 1px;
}

.category-card {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    height: 280px;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit:cover;
    transition: all 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    transition: all 0.3s ease;
    background: linear-gradient(to bottom, #00000000, #000);
    height: 40%;
    padding-top: 38px;
    padding-left: 21px;
}

.category-title {
    color: var(--base-color);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
    margin-bottom: 0px;
    font-family: "Poppins", sans-serif;
}

.category-link {
    color: var(--base-color);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

/* Featured Products */
.featured-section {
    background: var(--base-color);
    overflow: hidden;
}

/* ── Tab bar ──────────────────────────────────────── */
.featured-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 40px;
    margin: 18px 0;
}

.featured-tab {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--text-color);
    cursor: pointer;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    transition: color 0.22s, border-color 0.22s;
    user-select: none;
    white-space: nowrap;
}

.featured-tab:hover  { color: var(--tertory-color); }
.featured-tab.active { color: var(--tertory-color); border-bottom-color: var(--tertory-color); }
 
/* ── Skeleton shimmer ─────────────────────────────── */
@keyframes ft-shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position:  600px 0; }
}
.ft-skeleton {
    background: linear-gradient(90deg, #ede8e2 25%, #f5f0ea 50%, #ede8e2 75%);
    background-size: 1200px 100%;
    animation: ft-shimmer 1.4s infinite linear;
    display: block;
}
 
/* ── Empty state — fills the scroll row properly ──── */
.ft-empty-wrap {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.ft-empty-icon {
    font-size: 2.8rem;
    color: #ddd;
    margin-bottom: 14px;
}
.ft-empty-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #bbb;
}

@keyframes ft-dot-bounce {
    0%,80%,100% { transform:scale(0.6); opacity:.4; }
    40%         { transform:scale(1);   opacity:1;  }
}

#featuredBody {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100px;
}

.ft-panel {
    width: 100%;
    max-width: 100%;
    overflow: hidden; 
}

/* Horizontal Scroll Container */
.products-scroll-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.products-scroll-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none; 
}

.products-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.product-card-wrapper {
    flex: 0 0 auto;
    width: 300px;
}


.product-card-wrapper:last-child {
    margin-right: 40px;
}

/* ── Scroll Arrows (desktop only) */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: var(--text-color);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border:none;
    background: none;
}

.scroll-arrow:hover {
    color: var(--tertory-color);
}

.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-arrow-prev { left: 4px; }
.scroll-arrow-next { right: 4px; }

@media (max-width: 768px) {
    .scroll-arrow { display: none !important; }
    .section-title{
        font-size: 30px;
    }
    .featured-tab{
        font-size: 10px;
    }
    .main-app {
        margin-top: 58px;
    }
    .section-subtitle{
        font-size: 12px;
    }
}

@media (max-width:389px) {
    .section-title{
        font-size: 30px;
    }
     .featured-tabs{
        gap: 25px 26px;
    }
    .featured-tab{
        font-size: 10px;
    }

}

.product-card {
    background: var(--base-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    height: 100%;
    border: 1px solid var(--text-color);
}

.product-image {
    position: relative;
    background: #f5f5f5;
    height: 376px !important;
}

.product-image-collection {
    position: relative;
    background: #f5f5f5;
    height: 100% !important;
}

.product-image img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}
.product-image-collection img {
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Badge */
.product-card-label-badge{position:absolute;top:8px;left:8px;display:flex;flex-direction:column;gap:4px;z-index:2;}

.parent-product-badge-div{
    position:absolute;top:8px;left:8px;z-index:2;
}
.product-badge-new {
    background: var(--base-color);
    position: absolute;
    color: var(--text-color);
    padding: 7px 11px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
    text-wrap:nowrap;
}

/* Wishlist Icon */
.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    color: var(--text-color);
    border:none;
}

.wishlist-icon:hover {
    background: transparent;
    color: var(--base-color);
    transform: scale(1.1);
}

.wishlist-icon i {
    font-size: 16px;
}

.wishlist-icon.active i {
    font-weight: 900;
    color: var(--secondary-color);
}

/* Add to Cart Button */
.add-to-cart-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: var(--base-color);
    color: var(--primary-color);
    border: none;
    padding: 7px 11px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 3;
    border-radius: 4px;
}

.add-to-cart-btn:hover {
    background: var(--tertory-color);
    color: var(--base-color);
}

/* Product Info */
.product-info {
    padding: 12px 15px;
    text-align: left;
    text-align: center;
    border-top: 1px solid #eadfa6;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
    letter-spacing: 0.5px;
    color: var(--text-color);
    line-height: 1.4;
    font-family: "Poppins", sans-serif;
}
.product-price-a-tag{font-size:.8rem;letter-spacing:.08em;color:var(--text-color);font-weight:600;text-decoration:none;}

.product-description {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.product-price {
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
}


/* Banner Section */
.banner-section img{
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.btn-luxury{
    color: var(--base-color);
    padding: 15px 40px;
    border: 2px solid var(--base-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: var(--base-color);
    text-align: center;
}

.banner-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 3px;
    color: var(--base-color);
}

.banner-content p {
    font-size: 16px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: var(--base-color);
}

/* Collection Grid */
.collection-section {
    padding: 30px 0;
}

.collection-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 300px;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.collection-item:hover img {
    transform: scale(1.1);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--base-color);
}

.collection-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: var(--tertory-color);
    color: var(--base-color);
}

.newsletter-section h2 {
    font-size: 50px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.newsletter-section p {
    margin-bottom: 30px;
    font-size: 14px;
    letter-spacing: 1px;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    background: transparent;
    border: 2px solid var(--base-color);
    color: var(--base-color);
    padding: 15px 20px;
    width: 100%;
    margin-bottom: 15px;
}
.newsletter-form input:focus{
    background-color: transparent;
    box-shadow: none;
    border-color: var(--secondary-color);
}


.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.newsletter-form button {
    background: var(--base-color);
    border: 2px solid var(--base-color);
    color: var(--text-dark);
    padding: 15px 40px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: transparent;
    border-color: var(--base-color);
}

/* Footer */
footer {
    background: #fafafa;
    color: var(--text-dark);
    padding: 60px 0 20px;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-section h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-icons a {
    color: var(--text-dark);
    font-size: 18px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid gray;
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
    color: var(--text-dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }
    .category-card {
        height: 350px;
    }

    .product-image {
        height: 300px;
    }
    .banner-content h2{
        font-size: 24px;
    }
    .banner-content p{
        font-size: 13px;
    }
    .btn-luxury {
        padding: 15px 31px;
        font-size: 11px;
    }
    .banner-section {
        padding: 65px 0;
    }
    .newsletter-section h2{
        font-size: 22px;
    }
    .newsletter-section p{
        font-size: 12px;
    }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--base-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-overlay.hide {
    opacity: 0;
    pointer-events: none;
}

.loader {
    border: 3px solid var(--light-bg);
    border-top: 3px solid var(--secondary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.quick-view-content {
    background: var(--base-color);
    padding: 40px;
    max-width: 800px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--text-dark);
}


/* Craftsmanship Section */
.craftsmanship-section {
    position: relative;
    background-color: var(--secondary-color);
}

.craftsmanship-content-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.craftsmanship-content {
    max-width: 540px;
}

.craftsmanship-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.craftsmanship-title {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: 0;
}

.craftsmanship-description {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

.btn-craftsmanship {
    display: inline-block;
    background: var(--text-color);
    color: var(--base-color);
    padding: 16px 36px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 11px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-craftsmanship:hover {
    background: var(--tertory-color);
    color: var(--base-color);
}

.craftsmanship-image-col {
    position: relative;
    min-height: 500px;
}

.craftsmanship-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.craftsmanship-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive */
@media (max-width: 991px) {
    .craftsmanship-content-col {
        padding: 60px 40px;
    }
    
    .craftsmanship-title {
        font-size: 38px;
    }
    
    .craftsmanship-image-col {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .craftsmanship-content-col {
        padding: 50px 30px;
    }
    
    .craftsmanship-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .craftsmanship-description {
        font-size: 11px;
        margin-bottom: 30px;
    }
    
    .craftsmanship-image-col {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .craftsmanship-content-col {
        padding: 40px 20px;
    }
    
    .craftsmanship-subtitle {
        font-size: 10px;
        margin-bottom: 20px;
    }
    
    .craftsmanship-title {
        font-size: 28px;
    }
    
    .btn-craftsmanship {
        padding: 14px 30px;
        font-size: 10px;
    }
}


/* Why Shop With Us Section */
.why-shop-section {
    padding: 40px 0;
    background: var(--bg-image);
    background-size: 1331px 800px;
    /* background-color: rgba(250, 246, 240, 0.85);
    background-blend-mode: lighten; */
}

.why-shop-title {
    font-size: 50px;
    text-align: center;
    letter-spacing: 0;
    color: var(--text-color);
}

.why-shop-row {
    margin-top: 40px;
}

.why-shop-item {
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    border-radius: 4px;
    border:0.1rem solid var(--text-color);
    height: 100%;
}

.why-shop-item:hover {
    transform: translateY(-5px);
}

.why-shop-icon {
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-shop-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--text-color);
}

.why-shop-item-title {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--text-color);
    letter-spacing: 0;
}

.why-shop-item-description {
    font-size: 12px;
    line-height: 1.7;
    color: var(--text-color);
    font-weight: 300;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .why-shop-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
    
    .why-shop-item-title {
        font-size: 24px;
    }
    
    .why-shop-item-description {
        font-size: 13px;
    }
}

@media (max-width: 768px) {    
    .why-shop-title {
        font-size: 34px;
        margin-bottom: 40px;
    }
    
    .why-shop-item {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .why-shop-item-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .why-shop-icon {
        margin-bottom: 20px;
    }
    
    .why-shop-icon svg {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .why-shop-title {
        font-size: 28px;
    }
    
    .why-shop-item-title {
        font-size: 20px;
    }
}


