/* ============================================
   DajiWear - Premium Footwear Design System
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #C0A285;
    --primary-dark: #A88B6D;
    --secondary: #C0A285;
    --accent: #C0A285;
    --bg-white: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --border: #E8E4DF;
    --radius-luxury: 12px;
    --shadow-subtle: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Inter', sans-serif;
    --accent: #C0A285;
    /* Solidifying the leather tone as accent */
    --accent-light: #C0A285;
    --container: 1200px;
}

/* === Page Load Animation === */
@keyframes pageReveal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes slideProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(192, 162, 133, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(192, 162, 133, 0.15);
    }
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding-top: var(--section-padding-top, 100px);
    padding-bottom: var(--section-padding-bottom, 100px);
    padding-left: var(--section-padding-left, 0);
    padding-right: var(--section-padding-right, 0);
    margin-bottom: var(--section-gap, 0);
    position: relative;
}

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

/* === Top Bar === */
.top-bar {
    background: var(--accent);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8rem;
    font-family: var(--font-accent);
    letter-spacing: 1px;
    font-weight: 400;
}

/* === Header === */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.logo-text {
    color: var(--text);
}

.logo-accent {
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
    color: var(--text);
    padding: 8px;
}

.cart-icon:hover {
    color: var(--primary);
}

.cart-badge {
    position: absolute;
    top: 0;
    right: -2px;
    background: var(--accent);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(97, 65, 59, 0.3);
}

.newsletter-btn:hover {
    background: var(--accent);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(97, 65, 59, 0.3);
}

.newsletter-btn.success {
    background: #43A047 !important;
    border-color: #43A047 !important;
    color: #fff !important;
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
}

.btn-light {
    background: #fff;
    color: var(--accent);
}

.btn-light:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-text {
    background: none;
    color: var(--text-muted);
    padding: 8px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    font-size: 0.85rem;
}

.btn-text:hover {
    color: var(--accent);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
    position: relative;
    padding: 0 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--primary);
    opacity: 0.5;
}

.section-tag::before {
    left: -20px;
}

.section-tag::after {
    right: -20px;
}

.section-tag.light {
    color: rgba(255, 255, 255, 0.7);
}

.section-tag.light::before,
.section-tag.light::after {
    background: rgba(255, 255, 255, 0.3);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 550px;
    margin: 10px auto 0;
    line-height: 1.7;
}

/* === Hero Slider === */
.hero-slider {
    position: relative;
    height: 92vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-wrapper {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-image: var(--bg-desktop);
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

@media screen and (max-width: 768px) {
    .slide {
        background-image: var(--bg-mobile);
    }
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    /* Removed dark overlay to show original image brightness */
}

/* Removed decorative elements to keep the image clean as requested */
.slide-overlay::before,
.slide-overlay::after {
    display: none;
}

.slide-content {
    position: absolute;
    bottom: 15%;
    left: 8%;
    max-width: 650px;
    color: #fff;
    z-index: 2;
    pointer-events: none;
    /* Allows clicks to pass through to the overlay link */
}

.slide-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    /* Above overlay but below slider buttons/dots */
    cursor: pointer;
}

.slide-link-overlay:hover~.slide-content .slide-title {
    opacity: 0.9;
    transform: translateY(-5px);
}

.slide-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid rgba(192, 162, 133, 0.3);
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    /* Stronger shadow for readability on bright backgrounds */
    letter-spacing: -0.5px;
}

.slide-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #ffffff;
    /* Brighter white for better contrast on bright images */
    font-weight: 400;
    max-width: 480px;
    text-shadow: 0 1px 15px rgba(0, 0, 0, 0.5);
    /* Subtle shadow for readability on bright backgrounds */
}

/* Specific Mobile Fixes for Hero */
@media screen and (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 450px;
    }

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

    .slide-subtitle {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .slide-content {
        bottom: 10%;
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .slide-content .btn {
        margin: 0 auto;
    }
}

/* Slider Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active .animate-fade-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.25s;
}

.delay-2 {
    transition-delay: 0.5s;
}

.delay-3 {
    transition-delay: 0.75s;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(192, 162, 133, 0.4);
    border-color: rgba(192, 162, 133, 0.5);
    transform: translateY(-50%) scale(1.1);
}

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

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

.slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.dot.active {
    background: var(--primary);
    width: 36px;
    border-radius: 5px;
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 6;
    animation: slideProgress 5s linear infinite;
}

/* === Collections Grid === */
.collections {
    background: var(--bg-warm);
}

.category-showcase-section {
    padding-top: 50px !important;
    /* Reduced padding after hero slider */
}

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

.collection-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.collection-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.collection-card:hover::before {
    transform: scaleX(1);
}

.collection-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--accent);
    transition: var(--transition);
}

.collection-card:hover .collection-icon {
    background: var(--accent);
    color: #fff;
}

.collection-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.collection-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.collection-arrow {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.collection-card:hover .collection-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* === Product Grid === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, transparent 50%, rgba(192, 162, 133, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-card:hover::after {
    opacity: 1;
}

.product-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
    background: linear-gradient(135deg, var(--bg-warm) 0%, #EDE8E3 100%);
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    color: var(--text);
    padding: 10px 24px;
    border-radius: 30px;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transform: translateY(15px);
    transition: var(--transition);
}

.product-card:hover .quick-view {
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge-luxury {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #8e7054;
    color: #fff;
    padding: 6px 18px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-info {
    padding: 22px;
}

.product-category {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.3;
}

.product-name a:hover {
    color: var(--primary);
}

.product-price {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.product-info form {
    margin-top: 4px;
}

/* === Brand Story === */
.story-section {
    background: var(--bg-warm);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.story-experience {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: #fff;
    padding: 20px 28px;
    border-radius: var(--radius);
    text-align: center;
}

.exp-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 1px;
    opacity: 0.85;
}

.story-content {
    text-align: center; /* Center text as requested */
}

.story-content .section-title {
    text-align: center;
    margin-bottom: 25px;
}

.story-text-center {
    max-width: 800px;
    margin: 0 auto;
}

.story-text.main-p {
    font-weight: 500;
    font-size: 1.15rem;
    color: var(--accent);
}

.story-text.sub-p {
    margin-top: 10px;
    opacity: 0.85;
}

.story-text {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.story-features {
    display: flex;
    justify-content: center; /* Center features */
    gap: 35px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
}

.story-feature i {
    font-size: 1.2rem;
    color: var(--primary);
}

/* === Features === */
.features-section {
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    background: var(--bg-warm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: #fff;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* === Banner Section === */
.banner-section {
    position: relative;
    height: 480px;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(97, 65, 59, 0.95) 0%, rgba(156, 111, 105, 0.85) 50%, rgba(192, 162, 133, 0.7) 100%);
}

.banner-overlay::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    animation: floatSlow 10s ease-in-out infinite;
}

.banner-overlay::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite reverse;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 680px;
    padding: 0 20px;
}

.banner-content h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    opacity: 0.8;
    font-weight: 300;
    line-height: 1.8;
}

/* === Testimonials === */
.testimonials-section {
    background: var(--bg-warm);
}

.testimonials-section {
    background: var(--bg-warm);
    padding-bottom: 80px;
}

.reviews-marquee-container {
    width: 100%;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    gap: 30px;
    padding: 20px 0;
}

/* Move from right to left */
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reviews-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    width: 380px;
    margin: 0;
}

@media (max-width: 768px) {
    .marquee-item {
        width: 300px;
    }
    .reviews-track {
        animation-duration: 25s; /* Faster on mobile for a livelier feel */
    }
}

.testimonial-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.12;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(192, 162, 133, 0.2);
}

.testimonial-stars {
    color: #F5A623;
    margin-bottom: 18px;
    font-size: 0.85rem;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 24px;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* === Newsletter === */
.newsletter-section {
    background: var(--bg);
}

.newsletter-card {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 8px;
}

.newsletter-content p {
    opacity: 0.8;
    font-size: 0.95rem;
    font-weight: 300;
}

.newsletter-content .section-tag {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    width: 280px;
    outline: none;
    transition: var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    background: #fff !important;
    color: var(--accent) !important;
}

.newsletter-btn:hover {
    background: var(--bg-warm) !important;
}

/* === Footer === */
.footer {
    background: var(--header-bg, #C0A285);
    color: #fff;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: #fff;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-only {
    display: none;
}

@media (min-width: 769px) {
    .footer-col .accordion-content {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    
    .footer-accordion .accordion-content {
        display: none;
        padding-top: 10px;
    }
    
    .footer-accordion.active .accordion-content {
        display: block;
    }
    
    .footer-accordion.active .accordion-toggle i {
        transform: rotate(180deg);
    }
    
    .footer-accordion h4 {
        margin-bottom: 0;
        padding: 15px 0;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-accordion.active h4 {
        border-bottom: none;
    }
}

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

.footer-col ul a {
    font-size: 0.9rem;
    color: #fff;
    transition: var(--transition);
}

.footer-col ul a:hover {
    opacity: 0.7;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    opacity: 0.8;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: #fff;
    font-size: 0.9rem;
    width: 24px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: #fff;
}

.footer-bottom .fa-heart {
    color: var(--secondary);
}

/* === Page Title === */
.page-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
}

/* === Breadcrumb === */
.breadcrumb-bar {
    background: var(--bg-warm);
    padding: 16px 0;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.breadcrumb-bar .container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-bar a {
    color: var(--text-light);
}

.breadcrumb-bar a:hover {
    color: var(--accent);
}

.breadcrumb-bar i {
    font-size: 0.6rem;
}

/* === Product Detail === */
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-warm);
    aspect-ratio: 1;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    background: var(--bg-warm);
}

.thumb.active {
    border-color: var(--accent);
}

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

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

.product-detail-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #F5A623;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

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

.product-detail-price {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.product-detail-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.product-form .form-group {
    margin-bottom: 24px;
}

.product-form label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text);
}

.size-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-option {
    cursor: pointer;
}

.size-option input {
    display: none;
}

.size-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.size-option input:checked+span {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.size-option span:hover {
    border-color: var(--primary);
}

.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-warm);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--border);
}

.qty-selector input,
.qty-display {
    width: 50px;
    height: 44px;
    text-align: center;
    border: none;
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 500;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-meta {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.meta-item i {
    color: var(--primary);
    width: 20px;
}

/* === Cart === */
.empty-cart {
    text-align: center;
    padding: 80px 0;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--border);
    margin-bottom: 20px;
}

.empty-cart h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.cart-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 2px solid var(--border);
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-item-product img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--bg-warm);
}

.cart-item-product h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
}

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

.cart-item-price,
.cart-item-total {
    font-family: var(--font-accent);
    font-weight: 500;
}

.cart-item-total {
    color: var(--accent);
    font-weight: 600;
}

.qty-form .qty-selector {
    border-width: 1px;
}

.qty-form .qty-btn {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
}

.qty-form .qty-display {
    width: 36px;
    height: 32px;
    font-size: 0.85rem;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 8px;
}

.remove-btn:hover {
    color: #e53e3e;
}

.cart-summary {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.summary-row.total {
    border-top: 2px solid var(--border);
    margin-top: 10px;
    padding-top: 16px;
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.cart-summary .btn {
    margin-top: 14px;
}

/* === Checkout === */
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
}

.checkout-form-wrap h2,
.checkout-summary h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.checkout-form .form-group {
    margin-bottom: 20px;
}

.checkout-form label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.required {
    color: #e53e3e;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    transition: var(--transition);
    background: #fff;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(192, 162, 133, 0.1);
}

.checkout-summary {
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 32px;
    position: sticky;
    top: 100px;
}

.checkout-items {
    margin-bottom: 16px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.checkout-item img {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: #fff;
}

.checkout-item-info {
    flex: 1;
}

.checkout-item-info h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
}

.checkout-item-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.checkout-item-price {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9rem;
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

.checkout-secure {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 14px;
    background: #fff;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.checkout-secure i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Order Success */
.order-success {
    text-align: center;
    padding: 80px 0;
}

.success-icon {
    font-size: 5rem;
    color: #48bb78;
    margin-bottom: 20px;
}

.order-success h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 14px;
}

.order-success p {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 1rem;
}

.order-success .btn {
    margin-top: 24px;
}

/* Alert */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.alert-error {
    background: #FFF5F5;
    color: #C53030;
    border: 1px solid #FEB2B2;
}

.alert-success {
    background: #F0FFF4;
    color: #276749;
    border: 1px solid #9AE6B4;
}

/* === Scroll Animation === */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

/* === Scroll Indicator === */
.scroll-indicator {
    position: absolute;
    bottom: 80px;
    right: 40px;
    z-index: 6;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.scroll-indicator:hover {
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator i {
    animation: floatSlow 2s ease-in-out infinite;
    font-size: 0.8rem;
}

/* === Shopify-Style Product Page === */
.shopify-product-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
}

/* Gallery layout */
.shopify-gallery-container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: sticky;
    top: 100px;
    align-items: flex-start;
}

.shopify-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.thumb-btn {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    padding: 0;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumb-btn.active {
    border-color: var(--primary);
}

.thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb-btn:hover img {
    transform: scale(1.1);
}

.shopify-gallery-main {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-warm);
}

.image-zoom-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.image-zoom-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.fade-in-image {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

/* Product Info */
.shopify-product-info {
    padding-right: 20px;
}

.product-brand-tag {
    font-family: var(--font-accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.shopify-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 30px;
    /* Increased gap under title */
}

.shopify-price-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.current-price {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
}

.original-price {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-badge {
    background: #e53e3e;
    color: white;
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.shopify-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.custom-margin {
    margin-bottom: 24px;
}

.shopify-label {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.size-guide {
    font-size: 0.85rem;
    color: var(--primary);
    text-decoration: underline;
}

.shopify-size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shopify-size-option {
    cursor: pointer;
    position: relative;
}

.shopify-size-option input {
    position: absolute;
    opacity: 0;
}

.shopify-size-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.shopify-size-option input:checked+span {
    border-color: var(--text);
    background: var(--text);
    color: white;
}

.shopify-size-option:hover span {
    border-color: var(--text);
}

.shopify-qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    height: 48px;
}

.qty-btn-shopify {
    width: 40px;
    height: 100%;
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.2s;
}

.qty-btn-shopify:hover {
    color: var(--text);
}

#qtyInputShopify {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    -moz-appearance: textfield;
    appearance: textfield;
}

.shopify-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 15px;
}

.shopify-btn-cart {
    height: 52px;
    border: 2px solid var(--text);
    color: var(--text);
}

.shopify-btn-cart:hover {
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.shopify-btn-buy {
    height: 52px;
    background: var(--text);
    color: #fff;
    border: 2px solid var(--text);
}

.shopify-btn-buy:hover {
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.shopify-btn-wa {
    height: 52px;
    background-color: #25D366 !important;
    color: white !important;
    border: none;
    font-family: var(--font-body);
    font-weight: 600;
}

.shopify-btn-wa:hover {
    background-color: #128C7E !important;
    box-shadow: 4px 4px 0px rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

/* Accordions */
.shopify-accordions {
    border-top: 1px solid var(--border);
    margin-bottom: 30px;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-accent);
    font-size: 1.1rem;
    /* Clearer bigger heading */
    font-weight: 700;
    /* Bolder heading */
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
}

.accordion-header i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: var(--text-light);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    /* Controlled by JS */
}

.accordion-inner {
    padding-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.shopify-share {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.shopify-share a {
    color: var(--text);
    transition: color 0.3s ease;
}

.shopify-share a:hover {
    color: var(--primary);
}

/* --- Product Size Selector & Gallery Enhancement --- */
.size-selector-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.size-option {
    cursor: pointer;
    position: relative;
}

.size-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    padding: 0 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.size-option:hover .size-box {
    border-color: var(--text);
    transform: translateY(-2px);
}

.size-option input[type="radio"]:checked+.size-box {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.size-box.selected {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

/* Gallery Thumbnails Enhancement */
.shopify-gallery-thumbs {
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-height: 500px;
    overflow-y: auto;
}

.shopify-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.thumb-btn {
    border: 1.5px solid transparent;
    padding: 2px;
    background: #fff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 65px;
    height: 65px;
    flex-shrink: 0;
}

.thumb-btn img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.thumb-btn.active {
    border-color: var(--text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.thumb-btn:hover:not(.active) {
    border-color: var(--border);
}

/* Gallery Main Image Smooth Fade */
.fade-in-image {
    animation: fadeInProduct 0.4s ease-out;
}

@keyframes fadeInProduct {
    from {
        opacity: 0.6;
        transform: translateY(5px);
    }

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

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    z-index: 100;
    border-top: 1px solid var(--border);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 3rem;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .story-grid {
        gap: 40px;
    }

    .newsletter-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .newsletter-form {
        width: 100%;
    }

    .newsletter-form input {
        flex: 1;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

    .cart-summary {
        position: static;
    }
}

/* ========================================================================= */
/* === Shopify Dawn-Style Header Custom CSS === */
/* ========================================================================= */

shopify-header-wrapper {
    position: relative;
    z-index: 1000;
    width: 100%;
    display: block;
}

.shopify-header {
    background: #C0A285;
    border-bottom: none;
    position: relative;
    /* Changed from sticky to relative since wrapper handles stickiness now */
    z-index: 1000;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 28px 30px;
}

/* Left side */
.header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    vertical-align: middle;
    color: #ffffff;
}

.desktop-nav {
    display: flex;
}

.list-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.list-menu-item {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.list-menu-item:hover {
    opacity: 0.8;
}

/* Transparent Header Text Color Override */
.shopify-header.is-transparent .list-menu-item,
.shopify-header.is-transparent .header-logo,
.shopify-header.is-transparent .header-icon,
.shopify-header.is-transparent .mobile-menu-toggle {
    color: #ffffff;
}

.shopify-header.scrolled-past-header .list-menu-item,
.shopify-header.scrolled-past-header .header-logo,
.shopify-header.scrolled-past-header .header-icon,
.shopify-header.scrolled-past-header .mobile-menu-toggle {
    color: #ffffff !important;
}

/* Center Logo */
.header-center {
    display: flex;
    justify-content: center;
}

/* Desktop Header Layout: Logo Left, Menu Center, Icons Right */
@media (min-width: 769px) {
    .header-container {
        grid-template-columns: auto 1fr auto;
    }
    .header-center {
        order: 1; /* Logo moves to slot 1 (left) */
        justify-content: flex-start;
    }
    .header-left {
        order: 2; /* Menu moves to slot 2 (center) */
        justify-content: center;
    }
    .header-right {
        order: 3; /* Icons stay in slot 3 (right) */
    }
}

.header-logo {
    display: inline-block;
    text-align: center;
    color: #ffffff;
    text-decoration: none;
}

.brand-logo-img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: inherit;
}

.header-logo .logo-accent {
    font-family: var(--font-accent);
    color: var(--primary);
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
}

/* Right Icons */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.header-icon {
    color: #ffffff;
    font-size: 1.3rem;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    position: relative;
    padding: 5px;
}

.header-icon:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.cart-icon-wrapper {
    position: relative;
}

.cart-count-bubble {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--text);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
}

.shopify-header.is-transparent:not(.scrolled-past-header) .cart-count-bubble {
    background: white;
    color: var(--text);
}

/* Drawer UI */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.close-drawer {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

.mobile-list-menu {
    list-style: none;
    padding: 24px;
    margin: 0;
}

.mobile-list-menu li {
    margin-bottom: 20px;
}

.mobile-list-menu a {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text);
    text-decoration: none;
    display: block;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

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

/* Header Responsive Overrides */
@media screen and (max-width: 990px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-block;
    }

    .hidden-mobile {
        display: none !important;
    }

    .header-container {
        padding: 15px 20px;
    }
}

/* ========================================================================= */
/* === Functional Header UI (Dropdowns & Search) === */
/* ========================================================================= */

.has-dropdown {
    position: relative;
}

.header-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: -20px;
    min-width: 240px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 2000;
}

.has-dropdown:hover .header-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    top: 100%;
}

.header-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 40px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.header-dropdown li a {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-dropdown li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 3px;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: center;
    border-radius: 0 4px 4px 0;
}

.header-dropdown li a:hover {
    background: #FAF8F5;
    color: var(--primary);
    padding-left: 30px;
}

.header-dropdown li a:hover::before {
    transform: scaleY(1);
}

/* Mobile Dropdown Smooth Animation */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    padding-left: 15px;
    background: #FAF8F5;
    border-radius: 8px;
    margin-top: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}
.mobile-dropdown-menu.open {
    max-height: 500px;
    margin-top: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 1;
}
.mobile-dropdown-menu li a {
    display: block;
    padding: 10px 15px;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 6px;
}
.mobile-dropdown-menu li a:hover {
    color: var(--primary);
    background: #ffffff;
    padding-left: 20px;
}

/* Search Modal */
.search-modal {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-top: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1500;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form-full {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.search-form-full input {
    flex: 1;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-family: var(--font-body);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: border-color 0.3s;
}

.search-form-full input:focus {
    border-color: var(--primary);
}

.search-form-full button[type="submit"] {
    position: absolute;
    right: 50px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 10px;
}

.search-form-full button.close-search {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text);
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s;
}

.search-form-full button.close-search:hover {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

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

    .section-header {
        margin-bottom: 40px;
    }

    .section-tag::before,
    .section-tag::after {
        display: none;
    }

    /* Mobile Nav */
    .nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.9rem;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hero */
    .hero-slider {
        height: 75vh;
        min-height: 500px;
    }

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

    .slide-subtitle {
        font-size: 0.95rem;
    }

    .slide-content {
        bottom: 12%;
        left: 5%;
        right: 5%;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
    }

    .slider-btn.prev {
        left: 12px;
    }

    .slider-btn.next {
        right: 12px;
    }

    .scroll-indicator {
        display: none;
    }

    /* Grids */
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-image img {
        height: 350px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shopify-product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .shopify-gallery-container {
        flex-direction: column-reverse;
        position: static;
    }

    .shopify-gallery-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .thumb-btn {
        width: 70px;
        height: 70px;
    }

    .shopify-product-info {
        padding-right: 0;
    }

    .mobile-sticky-cta {
        display: block;
    }

    .shopify-actions {
        margin-bottom: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-section {
        height: 380px;
    }

    /* Cart mobile */
    .cart-header-row {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 16px;
        background: var(--bg-warm);
        border-radius: var(--radius-sm);
        margin-bottom: 12px;
        border: none;
    }

    .cart-item-product {
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .collection-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    .hero-slider {
        height: 65vh;
    }

    .story-features {
        flex-direction: column;
        gap: 14px;
    }

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

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-card {
        padding: 30px 20px;
    }

    .checkout-summary {
        padding: 20px;
    }

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

/* ==========================
   Luxury Product Card (DajiWear)
   ========================== */
.product-slider-section {
    padding: 50px 0 50px;
    /* Reduced top padding for more compact look */
    position: relative;
    background: #fff;
    overflow: hidden;
}

/* Featured Products Horizontal Slider (External Info) */
.product-slider-wrapper.luxe-scroll {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0 40px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-slider-wrapper.luxe-scroll::-webkit-scrollbar {
    display: none;
}

.product-item {
    flex: 0 0 calc(25% - 22.5px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    min-width: 280px;
}

@media (max-width: 1024px) {
    .product-item {
        flex: 0 0 calc(33.33% - 20px);
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .product-item {
        flex: 0 0 calc(50% - 15px);
        min-width: 180px;
    }

    .product-slider-wrapper.luxe-scroll {
        gap: 15px;
    }
}

.product-card.minimal {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border: 1px solid #eeeeee;
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
}

.product-item:hover .product-card.minimal {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.product-info-external {
    padding: 5px 0 0px 0;
    text-align: left;
}

.product-subtitle {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    /* Luxurious accent color for subtler metadata */
    margin-bottom: 6px;
    font-weight: 700;
}

.product-info-external .product-name {
    font-family: 'Cormorant Garamond', serif;
    /* Elegant, editorial font */
    font-size: 1.3rem;
    /* Larger for better hierarchy */
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.2;
}

.product-info-external .product-name a {
    color: #111;
    transition: all 0.3s ease;
}

.product-item:hover .product-name a {
    color: var(--accent);
}

.product-price {
    font-weight: 700;
    color: #000;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.product-pricing {
    margin-bottom: 0 !important;
}

.card-add-to-cart {
    margin-top: 18px;
    width: 100%;
}

.btn-add-to-cart-outline {
    width: 100%;
    padding: 10px 15px;
    background-color: transparent;
    border: 1px solid #000;
    border-radius: 6px;
    color: #000000;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.btn-add-to-cart-outline:hover {
    background-color: #C0A285;
    color: #fff;
    border-color: #C0A285;
}

.product-price .currency-symbol {
    font-size: 0.8rem;
    font-weight: 500;
    color: #666;
    margin-right: 2px;
}

.compare-price {
    color: #ccc;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-left: 8px;
}

.special-chappal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .special-chappal-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .special-chappal-grid.luxe-scroll {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        grid-template-columns: none;
        padding-bottom: 20px;
    }

    .special-chappal-grid.luxe-scroll .product-item {
        flex: 0 0 calc(50% - 15px);
        /* Show exactly 2 products with small peak/gap */
        min-width: 170px;
    }

    .product-slider-wrapper.luxe-scroll .product-item {
        flex: 0 0 calc(50% - 15px);
        min-width: 170px;
    }
}

.product-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card.minimal {
    background: #fbfbfb;
    /* Ultra-light luxury background */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    /* Smoother Luxury transition */
    border: 1px solid #f0f0f0;
    aspect-ratio: 1 / 1;
    width: 100%;
}

.product-item:hover .product-card.minimal {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #e0e0e0;
}

.product-item:hover .product-image-wrap img {
    transform: scale(1.1);
}

/* Reference Replication Styles */
.special-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: -1px;
    font-size: 3.5rem;
    color: #111;
    margin-bottom: 25px;
    line-height: 1;
}

@media (max-width: 768px) {
    .special-title {
        font-size: 1.6rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .mobile-only {
        display: flex !important;
    }
}

.mobile-only {
    display: none;
}

.slider-dots-luxury {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dots-luxury .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    transition: all 0.3s ease;
}

.slider-dots-luxury .dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

.product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: block;
    background: #fff;
    /* Ensure white background for transparent PNGs */
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Maintain focus on the product craftsmanship */
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-badge-container {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.product-badge-luxury {
    background: #8e7054;
    /* Sophisticated Footer-Match Badge */
    color: #fff;
    padding: 6px 14px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    /* Pill Modern Shape */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-tag {
    background: #C0A285;
    /* Brand primary */
    color: #fff;
    padding: 4px 10px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
}

.product-subtitle {
    display: block;
    font-size: 0.7rem;
    color: #8C7355;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-info {
    padding: 15px;
    /* Restore internal spacing for bordered card */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name.small {
    font-size: 0.95rem !important;
    font-weight: 500;
    color: var(--text-main);
    margin: 0 0 8px;
    line-height: 1.4;
    font-family: var(--font-heading);
    transition: color 0.3s;
    height: 2.8em;
    /* 2 lines max */
    overflow: hidden;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    /* Better alignment for prices */
    gap: 12px;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
}

.compare-price {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
}

/* Solid Add to Cart Button (Always Visible) */
.card-add-to-cart {
    position: relative;
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Solid Rounded Add to Cart Button */
.card-add-to-cart .btn-luxury.solid-btn {
    background: #86544B;
    /* Earthy leather tone */
    border-radius: 50px;
    /* Modern rounded button */
    padding: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.card-add-to-cart .btn-luxury.solid-btn:hover {
    background: #61413B;
    box-shadow: 0 0 15px rgba(134, 84, 75, 0.4);
    /* Subtle glow */
}

@media (max-width: 768px) {
    .card-add-to-cart .btn-luxury.solid-btn {
        padding: 12px;
        font-size: 0.75rem;
    }
}

.card-add-to-cart .btn-luxury:hover {
    background: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-add-to-cart .btn-luxury:active {
    transform: translateY(0);
}

/* Grid Behavior */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name.small {
        font-size: 0.85rem !important;
    }

    .product-price {
        font-size: 0.95rem;
    }

    .card-add-to-cart .btn-luxury {
        padding: 10px;
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 1100px) {
    .product-slider-container .product-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .product-slider-section {
        padding: 60px 0;
    }

    .slider-container-outer {
        padding: 0 15px;
    }

    .product-slider-container {
        gap: 15px;
    }

    .product-slider-container .product-card {
        flex: 0 0 calc(50% - 8px);
        /* 2 per row mobile */
    }

    .product-slider-container .product-info h3 {
        font-size: 0.9rem;
    }
}

/* Slider Nav Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 10;
}

.slider-nav {
    display: none;
    /* Removed as per request */
}

/* Cart Bubble update styles */
.cart-count-bubble {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--secondary);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    border: 2px solid var(--bg-white);
}

.cart-icon-wrapper {
    position: relative;
}

/* Slider Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot-item {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dot-item.active {
    background: var(--accent);
    width: 28px;
    border-radius: 5px;
}

/* Custom Pagination < 1/2 > */
.slider-pagination-custom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: #666;
}

.pagination-arrow {
    cursor: pointer;
    font-size: 0.8rem;
    color: #ccc;
    transition: color 0.3s;
    background: none;
    border: none;
    padding: 5px 10px;
}

.pagination-arrow:hover {
    color: #000;
}

.pagination-info {
    font-weight: 400;
    letter-spacing: 2px;
}

@media screen and (max-width: 1024px) {
    .product-slider-container .product-card {
        flex: 0 0 calc(33.333% - 17px);
        /* 3 items tablet */
    }
}

@media screen and (max-width: 768px) {
    .product-slider-container .product-card {
        flex: 0 0 calc(50% - 13px);
        /* 2 items mobile */
    }
}

/* ============================================
   Category Showcase Section
   ============================================ */
.category-showcase-section {
    background: linear-gradient(180deg, #faf8f6 0%, #ffffff 100%);
    padding: 100px 0;
}

/* Category Tabs */
.category-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.category-tabs {
    display: flex;
    gap: 10px;
    padding: 6px;
    background: #f5f0eb;
    border-radius: 50px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
}

.category-tab:hover {
    color: var(--accent);
    background: rgba(192, 162, 133, 0.1);
}

.category-tab.active {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(97, 65, 59, 0.3);
    transform: scale(1.02);
}

.tab-name {
    font-weight: inherit;
}

.tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.08);
    color: inherit;
    transition: all 0.3s ease;
}

.category-tab.active .tab-count {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* Category Sliders Container */
.category-sliders-container {
    position: relative;
    min-height: 450px;
}

.category-slider-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
}

.category-slider-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: catPanelReveal 0.5s ease forwards;
}

@keyframes catPanelReveal {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Track Wrapper */
.category-slider-track-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.category-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 5px 20px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

.category-slider-track::-webkit-scrollbar {
    display: none;
}

.category-slider-track .product-item {
    min-width: 280px;
    max-width: 280px;
    flex-shrink: 0;
}

/* Slider Navigation Arrows */
.cat-slider-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent);
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.cat-slider-arrow:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(97, 65, 59, 0.3);
    transform: translateY(-50%) scale(1.08);
}

.cat-arrow-prev {
    left: -24px;
}

.cat-arrow-next {
    right: -24px;
}

/* Slider Dots */
.cat-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.cat-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cat-slider-dots .dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--accent);
}

/* Category Section Responsive */
@media screen and (max-width: 768px) {
    .category-showcase-section {
        padding: 60px 0;
    }

    .category-tabs {
        gap: 6px;
        padding: 4px;
        border-radius: 40px;
    }

    .category-tab {
        padding: 10px 20px;
        font-size: 0.82rem;
    }

    .category-slider-track .product-item {
        min-width: 240px;
        max-width: 240px;
    }

    .cat-slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .cat-arrow-prev {
        left: -8px;
    }

    .cat-arrow-next {
        right: -8px;
    }

    .cat-slider-dots {
        margin-top: 10px;
    }

    .story-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
        margin-top: 25px;
    }

    .story-feature {
        justify-content: center;
        background: rgba(192, 162, 133, 0.05); /* Subtle background for mobile clarity */
        padding: 10px;
        border-radius: 8px;
    }

    .story-feature:last-child {
        grid-column: span 2;
        justify-self: center;
        width: fit-content;
    }

    /* Features Grid Mobile */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .feature-card {
        padding: 25px 15px;
    }

    .feature-card h3 {
        font-size: 0.95rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .category-tabs-wrapper {
        margin-bottom: 30px;
    }

    .category-slider-track .product-item {
        min-width: 220px;
        max-width: 220px;
    }

    .cat-slider-arrow {
        display: none;
    }
}

/* ============================================
   Collections Page - Premium Redesign
   ============================================ */

/* -- Hero Banner -- */
.collections-hero {
    position: relative;
    min-height: 340px;
    background: linear-gradient(135deg, #61413B 0%, #9C6F69 40%, #C0A285 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.collections-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: floatSlow 8s ease-in-out infinite;
    pointer-events: none;
}

.collections-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    animation: floatSlow 10s ease-in-out infinite reverse;
    pointer-events: none;
}

.collections-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.collections-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px 60px;
    max-width: 700px;
}

.collections-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.collections-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.collections-breadcrumb a:hover {
    color: #fff;
}

.collections-breadcrumb i {
    font-size: 0.55rem;
    opacity: 0.6;
}

.collections-breadcrumb span {
    color: #fff;
    font-weight: 500;
}

.collections-hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.collections-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 auto;
}

/* -- Collections Main Section -- */
.collections-main {
    padding: 80px 0;
    background: var(--bg, #fff);
}

.collections-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.collections-section-header .section-title {
    margin-top: 8px;
}

/* -- Premium Card Grid -- */
.collections-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.collection-card-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 48px 30px 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.collection-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary, #9C6F69));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.collection-card-premium:hover::before {
    transform: scaleX(1);
}

.collection-card-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.collection-card-premium:hover .collection-card-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.collection-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text, #1a1a1a);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.collection-card-premium:hover .collection-card-body h3 {
    color: var(--accent);
}

.collection-card-count {
    font-size: 0.9rem;
    color: var(--text-muted, #888);
    font-weight: 400;
}

.collection-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-family: var(--font-accent);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease, gap 0.3s ease;
}

.collection-card-cta i {
    transition: transform 0.3s ease;
}

.collection-card-premium:hover .collection-card-cta {
    opacity: 1;
    transform: translateY(0);
}

.collection-card-premium:hover .collection-card-cta i {
    transform: translateX(4px);
}

/* -- Promise / Stats Banner -- */
.collections-promise-banner {
    background: linear-gradient(135deg, #61413B 0%, #9C6F69 50%, #C0A285 100%);
    padding: 70px 0;
    color: #fff;
}

.promise-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.promise-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.promise-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.promise-stats {
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.promise-stat {
    text-align: center;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    min-width: 130px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.promise-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.16);
}

.promise-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 6px;
}

.promise-stat-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 500;
}

/* -- Collections Page Responsive -- */
@media (max-width: 992px) {
    .collections-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .promise-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .promise-stats {
        justify-content: center;
    }

    .collections-hero-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    /* Hide breadcrumb and section header text on mobile */
    .collections-breadcrumb {
        display: none;
    }

    .collections-section-header {
        display: none;
    }

    .collections-hero {
        min-height: 220px;
    }

    .collections-hero-content {
        padding: 50px 20px 40px;
    }

    .collections-hero-title {
        font-size: 2rem;
    }

    .collections-hero-subtitle {
        font-size: 0.92rem;
    }

    .collections-main {
        padding: 40px 0;
    }

    .collections-section-header {
        margin-bottom: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-logo {
        text-align: center;
        margin-bottom: 24px;
    }

    .footer-logo img {
        margin: 0 auto !important;
    }

    .footer-social {
        justify-content: center;
        margin-bottom: 30px;
    }

    /* Horizontal scroller like home page */
    .collections-grid-premium,
    .shop-filter-bar {
        display: flex !important;
        overflow-x: auto !important;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 10px 20px 20px;
        margin: 0 -20px;
        scroll-snap-type: x mandatory;
        justify-content: flex-start !important;
    }

    .collections-grid-premium::-webkit-scrollbar,
    .shop-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .collection-card-premium,
    .shop-filter-bar .btn {
        min-width: 140px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .shop-filter-bar .btn {
        margin: 0 !important;
        padding: 12px 20px !important;
    }

    .collection-card-icon-wrap {
        width: 64px;
        height: 64px;
        font-size: 1.4rem;
        margin-bottom: 14px;
    }

    .collection-card-body h3 {
        font-size: 1rem;
    }

    .collection-card-count {
        font-size: 0.78rem;
    }

    .collection-card-cta {
        font-size: 0.72rem;
        margin-top: 12px;
        opacity: 1;
        transform: translateY(0);
    }

    .collections-promise-banner {
        padding: 50px 0;
    }

    .promise-text h2 {
        font-size: 1.8rem;
    }

    .promise-text p {
        font-size: 0.95rem;
    }

    .promise-stats {
        gap: 16px;
        flex-wrap: wrap;
    }

    .promise-stat {
        min-width: 100px;
        padding: 18px 14px;
    }

    .promise-stat-number {
        font-size: 1.6rem;
    }

    .promise-stat-label {
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .collections-hero {
        min-height: 200px;
    }

    .collections-hero-content {
        padding: 40px 16px 32px;
    }

    .collections-hero-title {
        font-size: 1.7rem;
    }

    .collections-hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .collections-grid-premium {
        gap: 14px;
        padding: 8px 16px 16px;
    }

    .collection-card-premium {
        min-width: 170px;
        max-width: 170px;
        padding: 22px 14px 20px;
    }

    .collection-card-icon-wrap {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .collection-card-body h3 {
        font-size: 0.92rem;
        margin-bottom: 2px;
    }

    .collection-card-count {
        font-size: 0.72rem;
    }

    .collection-card-cta {
        font-size: 0.68rem;
        margin-top: 10px;
    }

    .promise-inner {
        gap: 30px;
    }

    .promise-text h2 {
        font-size: 1.5rem;
    }

    .promise-stats {
        justify-content: center;
    }

    .promise-stat {
        min-width: 90px;
        flex: 1;
    }
}

/* === Floating Contact Group === */
.floating-contact-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.floating-contact-group.hide-floating {
    transform: translateX(120px);
    opacity: 0;
    pointer-events: none;
}

.float-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    animation: floatSlow 4s ease-in-out infinite;
}

/* Stagger animations so they don't float perfectly in sync */
.float-icon:nth-child(1) { animation-delay: 0s; }
.float-icon:nth-child(2) { animation-delay: 0.5s; }
.float-icon:nth-child(3) { animation-delay: 1s; }

.float-icon:hover {
    color: #FFF;
    transform: scale(1.1) translateY(-5px);
    animation: none;
}

/* Individual Colors */
.email-float {
    background-color: #EA4335; /* Google Red */
}
.email-float:hover {
    background-color: #D32F2F;
    box-shadow: 0px 8px 25px rgba(234, 67, 53, 0.4);
}

.phone-float {
    background-color: #007AFF; /* Apple Blue */
}
.phone-float:hover {
    background-color: #005BB5;
    box-shadow: 0px 8px 25px rgba(0, 122, 255, 0.4);
}

.whatsapp-float {
    background-color: #25D366; /* WhatsApp Green */
    font-size: 24px;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    box-shadow: 0px 8px 25px rgba(37, 211, 102, 0.4);
}

@media screen and (max-width: 768px) {
    .floating-contact-group {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .float-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .whatsapp-float {
        font-size: 20px;
    }
}