
:root {
  


        --primary-color: #4a3728;
    --accent-color: #8b5e3c;
    --text-muted: #8e7f72;
    --bg-light: #f5f5dc;
    --bg-white: #ffffff;
    --bg-beige: #fdf5e6;
    --border-color: #e9dfd0;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(139, 94, 60, 0.05);
    --shadow-md: 0 5px 20px rgba(139, 94, 60, 0.1);
    --radius: 12px;
}

body {
    background-color: var(--bg-white);
    color: var(--primary-color);
    letter-spacing: 0.2px;
}

.section-padding {
    padding: 100px 0;
}

/* Hero Slider Modern & Premium */
.hero-slider-wrap {
    background: #000;
    overflow: hidden;
}

.hero-slide {
    height: 70vh;
    min-height: 550px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
    transition: transform 10s ease-out;
}

.swiper-slide-active.hero-slide {
    transform: scale(1.05);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.text-white-50 { color: rgba(255,255,255,0.7) !important; }

.hero-content .subtitle {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.hero-content h1 {
    font-family: 'Marcellus', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: none;
    margin-bottom: 25px;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
}

.hero-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

.hero-btns {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.8s;
}

/* Swiper Active Slide Animations */
.swiper-slide-active .subtitle,
.swiper-slide-active h1,
.swiper-slide-active .hero-description,
.swiper-slide-active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

.btn-premium {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: var(--transition);
    border: 1px solid var(--accent-color);
    text-decoration: none !important;
    text-align: center;
}

.btn-premium:hover {
    /* background: transparent; */
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
}

/* Custom Swiper Navigation */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: var(--accent-color);
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: var(--transition);
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .hero-content h1 { font-size: 3.5rem; }
    .hero-slide { height: 75vh; }
}

@media (max-width: 768px) {
    .hero-content h1 { 
        font-size: 2.4rem; 
        margin-bottom: 15px; 
        line-height: 1.2;
    }
    .hero-content .subtitle { 
        font-size: 0.65rem; 
        letter-spacing: 3px; 
        margin-bottom: 15px;
        background: rgba(255,255,255,0.2);
        padding: 5px 15px;
        border-radius: 2px;
        color: #fff;
    }
    .hero-description { 
        font-size: 1rem; 
        margin-bottom: 30px; 
        line-height: 1.5; 
        color: rgba(255,255,255,0.9) !important;
    }
    .hero-slide { 
        height: 70vh; 
        min-height: 450px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    .hero-content {
        background: transparent !important;
        backdrop-filter: none !important;
        padding: 20px !important;
        margin: 0 auto !important;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .hero-slide::before {
        background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    }
    .btn-premium {
        padding: 15px 35px;
        font-size: 0.85rem;
        border-radius: 4px;
        letter-spacing: 1px;
    }
}

/* Iconic Categories Redesign */
.iconic-category-item {
    position: relative;
    padding-bottom: 10px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon-circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    padding: 15px;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 55px rgba(0,0,0,0.12);
    border: 6px solid #fff;
    transition: all 0.5s ease;
}

.icon-circle::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), #e9dfd0, var(--accent-color), #fff, var(--accent-color));
    z-index: -1;
    opacity: 0.15;
    transition: all 0.5s ease;
    animation: rotate-gradient 4s linear infinite;
    background-size: 300% 300%;
}

@keyframes rotate-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.cat-name-badge {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    backdrop-filter: blur(15px);
    padding: 12px 30px;
    border-radius: 40px;
    font-family: 'Marcellus', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    white-space: nowrap;
    z-index: 5;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.iconic-category-item:hover {
    transform: translateY(-20px) scale(1.02);
}

.iconic-category-item:hover .icon-circle {
    box-shadow: 0 30px 60px rgba(139, 94, 60, 0.25);
    border-color: var(--accent-color);
}

.iconic-category-item:hover .icon-circle::after {
    opacity: 1;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
}

.iconic-category-item:hover .cat-name-badge {
    background: var(--accent-color);
    color: #fff;
    transform: translateX(-50%) translateY(-15px) scale(1.1);
    box-shadow: 0 15px 30px rgba(139, 94, 60, 0.4);
}

.premium-badge {
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.bestseller-badge {
    background: rgba(255, 71, 87, 0.9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toprated-badge {
    background: rgba(255, 159, 67, 0.9);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .premium-badge {
        padding: 3px 6px;
        font-size: 0.55rem;
    }
}

/* Minimal Product Grid */
.category-title {
    font-family: 'Marcellus', serif;
    font-size: 3.2rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #4a3728, #8b5e3c, #4a3728);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.category-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #8e7f72;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 20px;
    display: block;
}

.minimal-product-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.minimal-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--accent-color);
}

.minimal-img-wrap {
    background: #f9f9f9;
    /*margin: 10px;*/
    /*border-radius: 15px;*/
    transition: var(--transition);
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.minimal-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    min-height: 250px;
    object-fit: cover;
    mix-blend-mode: multiply;
    transition: transform 0.6s ease;
}

.minimal-product-card:hover .minimal-img-wrap img {
    transform: scale(1.1);
}

.minimal-title a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #333;
    font-weight: 400;
}

.minimal-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

.minimal-product-card:hover .minimal-img-wrap {
    background: #f2f2f2;
}

/* Flash Sale Premium */
.flash-sale-wrapper {
    background: #f7f3f0;
    padding: 120px 0;
}

.flash-header h2 {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    letter-spacing: 5px;
    color: #1a1a1a;
}

/* Service Box */
.service-section-premium {
    padding: 80px 0;
    background: var(--bg-light);
}

.service-card {
    text-align: center;
    padding: 30px;
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

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

    .section-padding {
        padding: 40px 0;
    }
    .iconic-categories-wrap { padding-bottom: 20px !important; }
    .iconic-category-item { margin-bottom: 0 !important; }
    .section-title { margin-bottom: 25px !important; }

    .hero-content { 
        padding: 0 20px;
        margin-top: auto;
        margin-bottom: 50px;
    }
    .hero-slide { 
        height: 70vh; 
        min-height: 450px;
        padding-top: 0;
        background-position: center;
    }
    
    .flash-sale-wrapper { padding: 60px 0; }
    .flash-img { height: 160px !important; }
   .flash-card-premium {
    padding: 0 !important;
    align-items: center;
    justify-content: center;
    display: flex;
}
    .flash-card-premium .p-4 { padding: 12px !important; }
    .flash-card-premium h4 { font-size: 0.85rem !important; margin-bottom: 5px !important; }
    .btn-premium { padding: 10px 20px; font-size: 0.75rem; }

    /*.minimal-img-wrap { padding: 10px; }*/
    .minimal-details { padding-top: 15px !important; }
    .minimal-title a { font-size: 0.75rem !important; }
    .minimal-price { font-size: 0.75rem !important; margin-bottom: 10px !important; }
    
    .icon-circle {
        width: 120px;
        height: 120px;
        padding: 10px;
    }
    .cat-name {
        font-size: 0.65rem;
    }

    .promo-banner-card { height: 300px !important; }
    .promo-banner-content { padding: 20px !important; margin: 15px !important; }
    .promo-banner-content h3 { font-size: 1rem !important; }

    .hero-content h1 { 
        font-size: 1.8rem; 
        line-height: 1.2;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }
    .hero-description { 
        font-size: 0.8rem; 
        line-height: 1.4;
        margin-bottom: 20px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        opacity: 0.85;
    }
    .category-title {
        font-size: 2rem !important;
        letter-spacing: 2px !important;
    }
    .category-subtitle {
        font-size: 0.75rem !important;
        letter-spacing: 1.5px !important;
    }
    .flash-header h2 {
        font-size: 1.5rem !important;
        letter-spacing: 2px !important;
    }
    .flash-card-premium h4 {
        font-size: 0.85rem !important;
    }
    .btn-premium {
        padding: 10px 24px;
        font-size: 0.75rem;
        width: 100%;
        max-width: 240px;
        border-radius: 30px;
    }
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev { display: none; }
    .hero-swiper .swiper-pagination {
        bottom: 20px !important;
    }

.product-action-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

.minimal-product-card:hover .product-action-overlay {
    bottom: 10px;
}

.action-icon {
    width: 45px;
    height: 45px;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.action-icon:hover {
    background: var(--accent-color);
    color: #fff !important;
    transform: translateY(-5px) rotate(360deg);
}

.action-icon:hover i {
    color: #fff !important;
}

.btn-glass-cta {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none !important;
}

.btn-glass-cta:hover {
    background: #fff;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.eco-cta-section {
    position: relative;
    background: #2d3436;
    color: #fff;
    overflow: hidden;
}

.flash-timer-box {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.timer-unit {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    padding: 15px;
    border-radius: 12px;
    min-width: 80px;
    border: 1px solid rgba(255,255,255,0.2);
}

.timer-val {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Marcellus', serif;
    line-height: 1;
}

.timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Service Section Premium Redesign */
.service-section-premium {
    background: #fbf9f6;
    border-top: 1px solid rgba(139, 94, 60, 0.1);
}

.service-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 94, 60, 0.08);
    border-color: var(--accent-color);
}

.service-icon-wrap {
    width: 65px;
    height: 65px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-color);
    font-size: 22px;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrap {
    background: var(--accent-color);
    color: #fff;
    transform: rotateY(360deg);
}

.service-card h4 {
    font-family: 'Marcellus', serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

