/* ==========================================================================
   TREND CART ELEMENTOR WIDGETS - STYLESHEET
   ========================================================================== */

:root {
    /* Brand Colors from DESIGN.MD */
    --tc-primary: #8B5CC7;      /* Primary Purple */
    --tc-secondary: #A06EE2;    /* Secondary Purple */
    --tc-lavender: #E8D8F5;     /* Soft Lavender */
    --tc-pink: #DDBFD1;         /* Soft Pink */
    --tc-accent: #F2B90C;       /* Accent Yellow */
    --tc-dark: #2D1146;         /* Dark Purple (for headings & buttons) */
    --tc-muted: #6B7280;
    --tc-border: #EEEEEE;
    --tc-bg: #FAF8FC;           /* Main Website Background */
    
    /* Design Tokens from DESIGN.MD */
    --tc-radius-btn: 12px;      /* Buttons Radius */
    --tc-radius-product: 16px;  /* Product Cards Radius */
    --tc-radius-card: 20px;     /* Category/Reviews Cards Radius */
    --tc-radius-hero: 24px;     /* Hero Elements Radius */
    
    --tc-shadow: 0 10px 30px rgba(139, 92, 199, 0.08); /* Soft Purple Shadow */
    --tc-shadow-hover: 0 15px 35px rgba(139, 92, 199, 0.15);
}

/* ==========================================================================
   WIDGET: ARCH RANGE (Explore Our Range)
   ========================================================================== */
.tc-arch-range-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    justify-content: center;
}

.tc-arch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.tc-arch-item:hover {
    transform: translateY(-8px);
}

.tc-arch-image-wrap {
    width: 100%;
    aspect-ratio: 1 / 1.3;
    background-color: #F8F4FF; /* Changed from dark blue to soft pastel */
    border-radius: 100px 100px 16px 16px; /* Perfect arch shape */
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(138, 92, 207, 0.08);
    border: 1px solid rgba(138, 92, 207, 0.1);
}

.tc-arch-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.tc-arch-item:hover .tc-arch-image-wrap img {
    transform: scale(1.15);
}

.tc-arch-text {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--tc-dark);
}

/* ==========================================================================
   WIDGET: CATEGORY SHOWCASE (Large Image Cards with BUY NOW)
   ========================================================================== */
.tc-category-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.tc-category-showcase-card {
    background-color: #FFFFFF;
    border-radius: var(--tc-radius-card);
    overflow: hidden;
    border: 1px solid var(--tc-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tc-category-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(139, 92, 199, 0.12);
    border-color: rgba(139, 92, 199, 0.15);
}

.tc-category-showcase-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.tc-category-showcase-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #F8F4FF;
}

.tc-category-showcase-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tc-category-showcase-card:hover .tc-category-showcase-img-wrapper img {
    transform: scale(1.06);
}

.tc-category-showcase-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.tc-category-showcase-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--tc-dark);
    margin: 0;
}

.tc-category-showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background-color: var(--tc-dark);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.tc-category-showcase-card:hover .tc-category-showcase-btn {
    background-color: var(--tc-primary);
    box-shadow: 0 4px 12px rgba(139, 92, 199, 0.25);
}

/* Mobile responsive for showcase cards */
@media (max-width: 768px) {
    .tc-category-showcase-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }
}

@media (max-width: 480px) {
    .tc-category-showcase-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}

/* ==========================================================================
   WIDGET: HERO SLIDER (Promotional Banner Slider)
   ========================================================================== */
.tc-hero-slider-section {
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}

.tc-hero-slider {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.tc-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.tc-slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease-in-out, visibility 0.7s ease-in-out;
    z-index: 1;
}

.tc-slider-slide.tc-slide-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.tc-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
}

.tc-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, rgba(245, 240, 255, 0.97) 0%, rgba(245, 240, 255, 0.85) 50%, rgba(245, 240, 255, 0) 100%);
    z-index: 2;
}

.tc-slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    max-width: 600px;
}

.tc-slide-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--tc-primary);
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.tc-slide-offer {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.tc-offer-prefix {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--tc-dark);
    letter-spacing: 1px;
}

.tc-offer-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 7rem;
    font-weight: 700;
    line-height: 1;
    color: var(--tc-dark);
    letter-spacing: -3px;
}

.tc-offer-percent {
    font-size: 3.5rem;
    font-weight: 700;
    vertical-align: super;
}

.tc-offer-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tc-dark);
    letter-spacing: 1px;
}

.tc-slide-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background-color: var(--tc-dark);
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    align-self: flex-start;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tc-slide-cta:hover {
    background-color: var(--tc-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 199, 0.3);
}

/* Slider Arrows */
.tc-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: var(--tc-dark);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.tc-slider-arrow:hover {
    background-color: var(--tc-primary);
    color: #FFFFFF;
    border-color: var(--tc-primary);
    box-shadow: 0 6px 20px rgba(139, 92, 199, 0.2);
}

.tc-slider-arrow-left {
    left: 20px;
}

.tc-slider-arrow-right {
    right: 20px;
}

/* Slider Dots */
.tc-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.tc-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.tc-slider-dot.tc-dot-active {
    width: 28px;
    border-radius: 20px;
    background-color: var(--tc-primary);
}

.tc-slider-dot:hover:not(.tc-dot-active) {
    background-color: rgba(139, 92, 199, 0.4);
}

/* Slider Responsive */
@media (max-width: 1024px) {
    .tc-hero-slider {
        height: 420px;
    }

    .tc-slide-content {
        padding: 40px 50px;
    }

    .tc-offer-amount {
        font-size: 5.5rem;
    }

    .tc-offer-percent {
        font-size: 2.5rem;
    }

    .tc-slide-title {
        font-size: 2rem;
    }

    .tc-offer-suffix {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .tc-hero-slider {
        height: 380px;
    }

    .tc-slide-content {
        padding: 30px 32px;
        max-width: 100%;
    }

    .tc-slide-overlay {
        width: 100%;
        background: linear-gradient(90deg, rgba(245, 240, 255, 0.95) 0%, rgba(245, 240, 255, 0.7) 60%, rgba(245, 240, 255, 0.3) 100%);
    }

    .tc-slide-title {
        font-size: 1.6rem;
    }

    .tc-offer-amount {
        font-size: 4.5rem;
    }

    .tc-offer-percent {
        font-size: 2rem;
    }

    .tc-offer-suffix {
        font-size: 1.5rem;
    }

    .tc-slide-cta {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .tc-slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .tc-slider-arrow-left {
        left: 12px;
    }

    .tc-slider-arrow-right {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .tc-hero-slider {
        height: 340px;
    }

    .tc-slide-content {
        padding: 24px 20px;
    }

    .tc-slide-title {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }

    .tc-offer-prefix {
        font-size: 0.9rem;
    }

    .tc-offer-amount {
        font-size: 3.5rem;
    }

    .tc-offer-percent {
        font-size: 1.5rem;
    }

    .tc-offer-suffix {
        font-size: 1.2rem;
    }

    .tc-slide-cta {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .tc-slider-dots {
        bottom: 14px;
    }
}

.tc-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.tc-product-card {
    background: #FFFFFF;
    border-radius: var(--tc-radius-product);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0,0,0,0.03);
}

.tc-product-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-6px);
}

.tc-product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.tc-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply; /* Removes white backgrounds from product images */
}

.tc-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--tc-primary);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(138, 92, 207, 0.3);
    z-index: 10; /* Ensures the badge is on top of the image */
}

.tc-product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #FAFAFA;
}

.tc-product-title {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--tc-dark);
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 42px;
}

.tc-product-rating {
    color: var(--tc-accent);
    font-size: 13px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.tc-product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--tc-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tc-product-price del {
    font-size: 13px;
    color: var(--tc-muted);
    font-weight: 400;
}

.tc-btn-buy-now {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--tc-dark); /* Changed from flat Red to sleek Dark */
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    border-radius: var(--tc-radius-btn);
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
}

.tc-btn-buy-now:hover {
    background-color: var(--tc-primary); /* Hovers to brand purple */
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Mobile responsive styles for 2 products per row & preventing text cut-off */
@media (max-width: 768px) {
    .tc-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .tc-product-card {
        border-radius: 12px !important;
    }
    
    .tc-product-image {
        padding: 10px !important;
    }
    
    .tc-product-content {
        padding: 12px !important;
    }
    
    .tc-product-title {
        font-size: 13px !important;
        line-height: 1.3 !important;
        height: auto !important; /* Fixed height cut-off */
        min-height: 34px !important; /* Keep columns aligned */
        margin-bottom: 6px !important;
    }
    
    .tc-product-rating {
        font-size: 10px !important;
        margin-bottom: 6px !important;
        letter-spacing: 0.5px !important;
    }
    
    .tc-product-price {
        font-size: 14px !important;
        margin-bottom: 10px !important;
        gap: 4px !important;
        flex-wrap: wrap !important;
    }
    
    .tc-product-price del {
        font-size: 11px !important;
    }
    
    .tc-btn-buy-now {
        font-size: 12px !important;
        padding: 10px 5px !important;
        border-radius: 6px !important;
    }
    
    .tc-product-badge {
        font-size: 9px !important;
        padding: 2px 6px !important;
        top: 8px !important;
        left: 8px !important;
    }
}

/* ==========================================================================
   WIDGET: HERO CAROUSEL
   ========================================================================== */
.tc-hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--tc-radius-hero);
    box-shadow: var(--tc-shadow);
}

.tc-hero-carousel-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 700; /* Standard wide desktop ratio */
    background: #FAFAFA;
}

@media (max-width: 768px) {
    .tc-hero-carousel-wrapper {
        aspect-ratio: 1 / 1; /* Square designed banner ratio on mobile */
    }
}

.tc-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 1;
}

.tc-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.tc-hero-banner-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.tc-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Default Image Toggles: Show Desktop, Hide Mobile */
.tc-hero-desktop-banner {
    display: block !important;
}

.tc-hero-mobile-banner {
    display: none !important;
}

/* Mobile Toggles: Hide Desktop, Show Mobile */
@media (max-width: 768px) {
    .tc-hero-desktop-banner {
        display: none !important;
    }
    
    .tc-hero-mobile-banner {
        display: block !important;
    }
}

/* Slide Navigation Arrows */
.tc-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 17, 70, 0.4); /* Glassmorphism dark purple */
    backdrop-filter: blur(4px);
    border: none;
    color: #FFFFFF;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.tc-carousel-arrow:hover {
    background: var(--tc-primary);
    transform: translateY(-50%) scale(1.05);
}

.tc-carousel-arrow.prev {
    left: 20px;
}

.tc-carousel-arrow.next {
    right: 20px;
}

/* Slide Pagination Dots */
.tc-carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.tc-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.tc-carousel-dot.active {
    background: #FFFFFF;
    width: 24px;
    border-radius: 10px;
}

/* --- NEW WIDGETS CSS MIGRATED FROM STYLE.CSS --- */

/* ORIGINAL ROOT VARS & ANIMATIONS */
:root {
    --primary-purple: #8A5CCF;
    --primary-purple-rgb: 138, 92, 207;
    --secondary-purple: #A97EF2;
    --secondary-purple-rgb: 169, 126, 242;
    --accent-yellow: #F5C33B;
    --bg-light: #FAFAFA;
    --text-dark: #1E1E1E;
    --text-muted: #6B7280;
    --card-bg: #FFFFFF;
    --border-color: #EEEEEE;
    --green-success: #10B981;
    
    /* System parameters */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(138, 92, 207, 0.08);
    --shadow-lg: 0 20px 40px rgba(138, 92, 207, 0.15);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(138, 92, 207, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(138, 92, 207, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(138, 92, 207, 0); }
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}



.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Breakout hack for edge-to-edge banners in Elementor */
.tc-hero-slider-section,
.tc-lifestyle-banner-wrapper {
    width: 100vw !important;
    position: relative;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
}


/* Why Shop With Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 92, 207, 0.15);
    box-shadow: var(--shadow-md);
}

.why-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-md);
    background-color: rgba(138, 92, 207, 0.08);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.why-card:hover .why-icon-box {
    background-color: var(--primary-purple);
    color: #FFFFFF;
    transform: rotate(5deg);
}

.why-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Category Large Banners */
.collection-section {
    padding: 80px 0 40px 0;
}

.collection-banner {
    border-radius: var(--border-radius-lg);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 320px;
}

.banner-purple {
    background: linear-gradient(135deg, #F0E6FF 0%, #E2CDFF 100%);
}

.banner-pink {
    background: linear-gradient(135deg, #FFEBF5 0%, #FFD6EA 100%);
}

.banner-accent {
    background: linear-gradient(135deg, #FFF8E6 0%, #FFE9B3 100%);
}

.collection-banner-content {
    padding: 48px;
}

.col-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-purple);
    margin-bottom: 12px;
    display: block;
}

.collection-heading {
    font-size: 2.25rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.collection-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 480px;
}

.btn-banner-accent {
    background-color: var(--primary-purple);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(138, 92, 207, 0.2);
}

.btn-banner-accent:hover {
    background-color: var(--secondary-purple);
    transform: translateY(-2px);
}

.btn-banner-dark {
    background-color: var(--text-dark);
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-banner-dark:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.collection-banner-media {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.banner-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.collection-banner:hover .banner-media-img {
    transform: scale(1.03);
}

.margin-top-40 {
    margin-top: 40px;
}

/* Reviews / Testimonials */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius-md);
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(138, 92, 207, 0.1);
}

.review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.review-rating {
    color: var(--accent-yellow);
    font-size: 0.8rem;
}

.review-verify {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--green-success);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.review-text {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 24px;
    flex-grow: 1;
    line-height: 1.5;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.avatar-purple {
    background-color: rgba(138, 92, 207, 0.1);
    color: var(--primary-purple);
}

.avatar-yellow {
    background-color: rgba(245, 195, 59, 0.15);
    color: #C09210;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
}

.author-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Lifestyle Banner */
.lifestyle-banner-section {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.lifestyle-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 1;
}

.lifestyle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 11, 49, 0.9) 0%, rgba(138, 92, 207, 0.6) 100%);
    z-index: 2;
}

.lifestyle-container {
    position: relative;
    z-index: 3;
}

.lifestyle-content {
    max-width: 600px;
    color: #FFFFFF;
}

.lifestyle-badge {
    color: var(--accent-yellow);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}

.lifestyle-title {
    font-size: 2.75rem;
    color: #FFFFFF;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.lifestyle-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.lifestyle-cta {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    padding: 14px 30px;
    box-shadow: 0 4px 15px rgba(245, 195, 59, 0.4);
}

.lifestyle-cta:hover {
    background-color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

/* Section Header styling */
.section-header {
    margin-bottom: 50px;
}

.sub-title {
    color: var(--primary-purple);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.25rem;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-purple);
    margin: 12px auto 0 auto;
    border-radius: 2px;
}

.section-header-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 20px;
}

.section-header-inline .section-title {
    padding-bottom: 0;
}

.live-counter {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--green-success);
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}


/* Mobile adjustments based on feedback */
@media (max-width: 768px) {
    /* Trending header inline alignment fix */
    .section-header-inline {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    
    /* Live counter margin fix for mobile */
    .live-counter {
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    /* Fix ugly big buttons on mobile hero */
    .tc-slide-cta {
        padding: 8px 18px !important;
        font-size: 0.8rem !important;
    }
    
    /* Fix arrows size and alignment on mobile */
    .tc-slider-arrow {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }
    
    .tc-slider-arrow-left {
        left: 8px !important;
    }
    .tc-slider-arrow-right {
        right: 8px !important;
    }
}

/* Ensure arrows content is perfectly centered */
.tc-slider-arrow i {
    line-height: 1;
    display: flex;
}

/* Fix for Collection Banner Height */
.collection-banner {
    max-height: 380px !important;
}
.collection-banner-content {
    padding: 32px 48px !important;
}
.collection-banner-media {
    height: 100% !important;
    max-height: 380px !important;
}
.banner-media-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}

/* Ensure h2 margin doesn't mess up flex alignment in header */
.section-header-inline h2.section-title {
    margin-bottom: 0 !important;
}
.live-counter {
    margin-bottom: 0 !important;
}



/* Footer Section */
.main-footer {
    background-color: #FFFFFF;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    max-height: 48px;
    width: auto;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-color);
}

.social-icon:hover {
    background-color: var(--primary-purple);
    color: #FFFFFF;
    border-color: var(--primary-purple);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-purple);
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    font-size: 0.88rem;
    color: var(--text-dark);
    display: inline-block;
}

.footer-links-list a:hover {
    color: var(--primary-purple);
    transform: translateX(5px);
}

.contact-text {
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-text i {
    color: var(--primary-purple);
    width: 16px;
}

.secure-badges {
    margin-top: 24px;
}

.payment-img {
    max-width: 220px;
}

.footer-bottom {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
}

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

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom-links a:hover {
    color: var(--primary-purple);
}

/* Toast Notification for Adding to Cart */
.cart-toast {
    position: fixed;
    bottom: 30px;
    right: -400px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--green-success);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    z-index: 1100;
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-toast.active {
    right: 30px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.toast-content i {
    font-size: 1.5rem;
}

.toast-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.toast-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}


.footer-logo {
    max-height: 48px;
    width: auto;
    margin-bottom: 24px;
    display: block;
}
.tc-footer-widget-wrapper {
    width: 100%;
}

/* ORIGINAL RESPONSIVE STYLES */
/* Responsive Styles */
@media (max-width: 1024px) {
    .category-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-slider {
        height: 420px;
    }

    .slide-content {
        padding: 40px 50px;
    }

    .offer-amount {
        font-size: 5.5rem;
    }

    .offer-percent {
        font-size: 2.5rem;
    }

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

    .offer-suffix {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Mobile menu can toggle in JS */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #FFFFFF;
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-slider {
        height: 380px;
    }

    .slide-content {
        padding: 30px 32px;
        max-width: 100%;
    }

    .slide-overlay {
        width: 100%;
        background: linear-gradient(90deg, rgba(245, 240, 255, 0.95) 0%, rgba(245, 240, 255, 0.7) 60%, rgba(245, 240, 255, 0.3) 100%);
    }

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

    .offer-amount {
        font-size: 4.5rem;
    }

    .offer-percent {
        font-size: 2rem;
    }

    .offer-suffix {
        font-size: 1.5rem;
    }

    .slide-cta {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .slider-arrow-left {
        left: 12px;
    }

    .slider-arrow-right {
        right: 12px;
    }

    .category-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .collection-banner {
        grid-template-columns: 1fr;
    }
    
    .collection-banner-media {
        display: none;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 340px;
    }

    .slide-content {
        padding: 24px 20px;
    }

    .slide-title {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }

    .offer-prefix {
        font-size: 0.9rem;
    }

    .offer-amount {
        font-size: 3.5rem;
    }

    .offer-percent {
        font-size: 1.5rem;
    }

    .offer-suffix {
        font-size: 1.2rem;
    }

    .slide-cta {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .slider-dots {
        bottom: 14px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .search-bar-wrapper {
        display: none; /* Hide search input on narrow devices to save space, standard header behavior */
    }

    .category-showcase-footer {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
}



/* Remove circles from hero arrows */
.tc-slider-arrow {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.tc-slider-arrow:hover {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--tc-primary) !important;
}


/* Explicit centering for Section Headers to override any Elementor defaults */
.section-header.text-center, .tc-section-header.text-center {
    text-align: center !important;
}
.section-header.text-center .sub-title, 
.tc-section-header.text-center .sub-title {
    text-align: center !important;
    display: block;
}
.section-header.text-center .section-title, 
.tc-section-header.text-center .section-title {
    text-align: center !important;
}
.section-header.text-center .divider, 
.tc-section-header.text-center .divider {
    margin-left: auto !important;
    margin-right: auto !important;
}


/* Make Category Grid Images taller and more prominent on mobile */
@media (max-width: 768px) {
    .tc-category-showcase-img-wrapper {
        aspect-ratio: 1 / 1 !important;
    }
    .tc-category-showcase-footer {
        padding: 12px !important;
    }
    .tc-category-showcase-name {
        font-size: 1rem !important;
    }
    .tc-category-showcase-btn {
        padding: 8px 16px !important;
        font-size: 0.75rem !important;
        width: 100% !important;
        justify-content: center !important;
    }
}
