/* ============================================
   SAANVI SILVER - GIVA-Inspired Luxury Design
   ============================================ */

:root {
    --primary: #071B4D;
    --primary-light: #0F2B6B;
    --accent: #EAA9B8;
    --accent-light: #F5D6DE;
    --accent-dark: #D48A9E;
    --bg: #FAF7F8;
    --white: #FFFFFF;
    --text: #1A1A1A;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --border: #E5E7EB;
    --border-light: #F3F0F2;
    --shadow-sm: 0 1px 3px rgba(7, 27, 77, 0.06);
    --shadow: 0 4px 16px rgba(7, 27, 77, 0.07);
    --shadow-hover: 0 12px 40px rgba(7, 27, 77, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 70px; }

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

::selection { background: var(--accent); color: var(--white); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
p { color: var(--text-light); margin-bottom: 0; }
img { max-width: 100%; height: auto; }

.text-accent { color: var(--accent) !important; }

.container { max-width: 1320px; }

/* Buttons */
.btn {
    font-family: var(--font-body);
    font-weight: 500;
    padding: 11px 30px;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: 1.5px solid transparent;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(7, 27, 77, 0.2);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.btn-accent:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-1px);
    color: var(--white);
}

.btn-lg { padding: 13px 36px; font-size: 0.95rem; }
.btn-sm { padding: 8px 20px; font-size: 0.82rem; }

.form-control, .form-select {
    border-radius: 8px;
    border-color: var(--border);
    font-family: var(--font-body);
    padding: 11px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(176, 138, 181, 0.15);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title.text-start { text-align: left; }

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: var(--primary);
    padding: 9px 0;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 400;
}

.announcement-slider {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
}

.announcement-slider span {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.announcement-slider i {
    color: var(--accent);
    font-size: 0.85rem;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow);
}

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

.logo { flex-shrink: 0; }

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #071B4D, #1A2A6C);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(7, 27, 77, 0.15);
}

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

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-brand {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 3px;
    line-height: 1;
}

.logo-sub {
    font-size: 11px;
    font-weight: 500;
    color: #B08AB5;
    letter-spacing: 6px;
    line-height: 1;
    text-transform: uppercase;
}

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

.main-nav .nav-list a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}

.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active::after { width: 60%; }

.main-nav .nav-list a.active { color: var(--primary); }

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

.action-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    color: var(--text);
    font-size: 0.95rem;
    transition: var(--transition);
}

.action-icon:hover {
    background: var(--bg);
    color: var(--accent);
}

.cart-icon { position: relative; }

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 600;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0 4px;
    line-height: 1;
    transform: translate(2px, -2px);
    pointer-events: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active { opacity: 1; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1200;
    padding: 28px 24px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.08);
}

.mobile-menu.active { right: 0; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
}

.close-menu {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-list li { margin-bottom: 4px; }

.mobile-nav-list a {
    display: block;
    padding: 11px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-list a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.mobile-menu-contact {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}

.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.9rem;
    color: var(--text);
}

.mobile-menu-contact a i { color: var(--accent); }

/* Search Modal */
.search-modal .modal-content {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
}

.search-modal .modal-body { padding: 28px; }
.search-modal .btn-close { position: absolute; top: 15px; right: 15px; }

.search-input {
    height: 52px;
    font-size: 1rem;
    border-radius: 12px 0 0 12px !important;
}

.search-btn {
    height: 52px;
    padding: 0 28px;
    border-radius: 0 12px 12px 0 !important;
}

/* ============================================
   HERO SLIDER - Full Width Banner Carousel
   ============================================ */
.hero-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider .carousel-inner {
    width: 100%;
}

.hero-slider .carousel-item {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

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

/* Carousel Controls */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-slider:hover .carousel-control-prev,
.hero-slider:hover .carousel-control-next {
    opacity: 0.7;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 44px;
    height: 44px;
    background-size: 18px;
    border-radius: 50%;
    background-color: rgba(7, 27, 77, 0.15);
}

/* Carousel Indicators */
.hero-slider .carousel-indicators {
    position: absolute;
    bottom: 20px;
    margin: 0;
    display: flex;
    gap: 8px;
}

.hero-slider .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    text-indent: -9999px;
}

.hero-slider .carousel-indicators button.active {
    background: var(--white);
    width: 10px;
    height: 10px;
}

/* Carousel Caption - responsive */
.hero-slider .carousel-caption {
    right: 8%;
    left: 8%;
    bottom: 30px;
    text-align: center;
}

.hero-slider .carousel-caption h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-slider .carousel-caption p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-slider .carousel-caption .btn,
.hero-slider .carousel-caption-btn .btn {
    display: inline-block;
    padding: 10px 28px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Carousel fade transition */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
    padding: 28px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
}

.trust-strip-grid {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 4px;
}

.trust-strip-item i {
    font-size: 1.1rem;
    color: var(--accent);
}

.trust-strip-item span {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
}

/* ============================================
   CATEGORY - GIVA STYLE CIRCLES
   ============================================ */
.category-section {
    padding: 70px 0 60px;
    background: var(--white);
}

/* Category Horizontal Scroll */
.category-scroll-wrap {
    margin: 0 -12px;
    padding: 0 12px;
    position: relative;
}

.category-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0 4px;
    margin: 0;
    scroll-behavior: smooth;
}

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

.category-scroll-item {
    flex: 0 0 25%;
    scroll-snap-align: start;
    padding: 0 8px;
}

/* Arrow buttons */
.category-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 0.8rem;
    transition: var(--transition);
    z-index: 2;
    opacity: 0;
}

.category-scroll-wrap:hover .category-scroll-btn {
    opacity: 1;
}

.category-scroll-btn:hover {
    background: var(--bg);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.category-scroll-prev { left: 0; }
.category-scroll-next { right: 0; }

.category-card {
    display: block;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover { transform: translateY(-4px); }

.category-image {
    width: 80%;
    max-width: 170px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 14px;
    border: 2px solid var(--border-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.category-card:hover .category-image {
    border-color: var(--accent-light);
    box-shadow: 0 8px 24px rgba(176, 138, 181, 0.2);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img { transform: scale(1.08); }

.category-card h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0;
}

/* ============================================
   PRODUCT CARD - GIVA STYLE
   ============================================ */
.products-section {
    padding: 70px 0;
    background: var(--white);
}

.products-section.bg-light { background: var(--bg); }

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: transform 0.6s ease, box-shadow 0.6s ease, border-color 0.6s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
    background: var(--bg);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.img-default {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transform: translateY(0);
}

.product-card:hover .img-default {
    transform: scale(1.05);
    opacity: 0;
}

.product-card:hover .img-hover {
    opacity: 1;
    transform: translateY(-8px);
}

.product-card .wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0;
    transform: translateY(-5px);
}

.product-card:hover .wishlist-btn {
    opacity: 1;
    transform: translateY(0);
}

.wishlist-btn:hover {
    background: #FEE2E2;
    color: #EF4444;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.product-badge.new { background: var(--accent); color: var(--white); }
.product-badge.bestseller { background: var(--primary); color: var(--white); }

.product-info {
    padding: 16px 16px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 2px;
    line-height: 1.4;
}

.product-category {
    font-size: 0.76rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 6px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.product-card .quick-view-btn {
    display: none;
    width: calc(100% - 20px);
    margin: 0 10px 10px;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 9px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.product-card:hover .quick-view-btn { display: block; }

.quick-view-btn:hover { background: var(--primary-light); }

/* ============================================
   CRAFTSMANSHIP CARD
   ============================================ */
.craft-section {
    padding: 60px 0;
    background: var(--white);
}

.craft-card {
    display: flex;
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    height: 320px;
}

/* Image Side */
.craft-image-side {
    width: 55%;
    overflow: hidden;
}

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

/* Features Side */
.craft-features-side {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 40px;
}

.craft-heading {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 22px;
}

.craft-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.craft-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.craft-feature i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 8px;
    color: var(--accent);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.craft-feature-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.craft-feature-desc {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
    padding: 70px 0;
    background: var(--white);
}

.why-section.bg-light { background: var(--bg); }

.why-card {
    padding: 30px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--accent-light);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: rgba(176, 138, 181, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: var(--transition);
}

.why-card:hover .why-icon { background: var(--accent); }
.why-card:hover .why-icon i { color: var(--white); }

.why-icon i {
    font-size: 1.3rem;
    color: var(--accent);
    transition: var(--transition);
}

.why-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-section {
    padding: 70px 0;
    background: var(--bg);
}

.testimonial-card {
    background: var(--white);
    padding: 28px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

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

.testimonial-stars {
    margin-bottom: 12px;
    color: #F59E0B;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

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

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 0.88rem;
    color: var(--primary);
    font-family: var(--font-body);
}

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

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
    padding: 70px 0;
    background: var(--white);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 27, 77, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 1.8rem; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    padding: 70px 0;
    background: var(--bg);
}

.newsletter-wrap {
    background: var(--primary);
    padding: 60px 40px;
    border-radius: var(--radius-lg);
}

.newsletter-title {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.newsletter-form .input-group {
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    border-radius: var(--radius-full) 0 0 var(--radius-full) !important;
    border: none;
    height: 50px;
    padding-left: 22px;
    font-size: 0.9rem;
}

.newsletter-form .btn {
    border-radius: 0 var(--radius-full) var(--radius-full) 0 !important;
    background: var(--accent);
    border-color: var(--accent);
    height: 50px;
    padding: 0 30px;
    font-size: 0.9rem;
}

.newsletter-form .btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--white);
    color: #555555;
    border-top: 1px solid var(--border-light);
    padding-top: 50px;
}

/* Stats Row */
.footer-stats {
    padding-bottom: 36px;
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 44px;
}

.footer-stat {
    text-align: center;
    padding: 16px 8px;
    border-right: 1px solid var(--border-light);
}

.footer-stats .col-md-3:last-child .footer-stat {
    border-right: none;
}

.footer-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 4px;
}

.footer-stat-label {
    display: block;
    font-size: 0.78rem;
    color: #888;
    font-weight: 400;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
}

.footer-desc {
    color: #666;
    margin: 12px 0 16px;
    font-size: 0.85rem;
    line-height: 1.7;
}

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

.footer-social .social-link {
    width: 36px;
    height: 36px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-newsletter-text {
    font-size: 0.82rem;
    color: #777;
    margin-bottom: 14px;
    line-height: 1.6;
}

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

.footer-newsletter-form .form-control {
    border-radius: 6px 0 0 6px !important;
    border: 1px solid var(--border);
    border-right: none;
    height: 42px;
    font-size: 0.82rem;
    padding-left: 14px;
    background: var(--white);
}

.footer-newsletter-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: none;
}

.footer-newsletter-form .btn {
    border-radius: 0 6px 6px 0 !important;
    height: 42px;
    padding: 0 16px;
    font-size: 0.8rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }

.footer-links a {
    color: #555;
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 3px;
}

.footer-contact { list-style: none; padding: 0; margin: 0; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #555;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: 0.85rem;
}

.footer-contact a { color: #555; }
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    color: #999;
    font-size: 0.8rem;
    margin: 0;
}

.payment-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    font-size: 1.4rem;
    color: #bbb;
}

/* ============================================
   SCROLL TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible { opacity: 1; visibility: visible; }

.scroll-top:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    padding: 64px 0 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
}

.page-hero-title {
    font-size: 2.6rem;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero .breadcrumb { margin: 0; }
.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item.active { color: rgba(255, 255, 255, 0.7); }
.page-hero .breadcrumb-item a { color: var(--accent); }
.page-hero .breadcrumb-item a:hover { color: var(--accent-light); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.35); }

/* ============================================
   ABOUT
   ============================================ */
.mission-section { padding: 70px 0; background: var(--bg); }

.mission-card {
    padding: 36px 32px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    height: 100%;
}

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

.mission-icon {
    width: 56px;
    height: 56px;
    background: rgba(176, 138, 181, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.mission-icon i { font-size: 1.3rem; color: var(--accent); }
.mission-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.mission-card p { font-size: 0.92rem; line-height: 1.7; }

.process-section { padding: 70px 0; background: var(--white); }

.process-card {
    padding: 32px 24px;
    text-align: center;
    background: var(--bg);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

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

.process-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(176, 138, 181, 0.12);
    position: absolute;
    top: 12px;
    right: 16px;
    line-height: 1;
}

.process-icon {
    width: 56px;
    height: 56px;
    background: rgba(176, 138, 181, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-icon i { font-size: 1.3rem; color: var(--accent); }

.process-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.process-card p { font-size: 0.88rem; line-height: 1.6; }

.about-stats {
    display: flex;
    gap: 36px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.about-stat { display: flex; flex-direction: column; }
.about-stat .stat-number { font-size: 1.8rem; color: var(--accent); font-family: var(--font-heading); font-weight: 700; }
.about-stat .stat-label { font-size: 0.82rem; color: var(--text-muted); }

.trust-badges { max-width: 800px; margin: 0 auto; }

.trust-badge {
    background: var(--white);
    padding: 28px 18px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.trust-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-badge i { font-size: 1.8rem; color: var(--accent); margin-bottom: 10px; }

.trust-badge h4 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* CTA */
.cta-section { padding: 64px 0; background: var(--primary); }
.cta-wrap { max-width: 640px; margin: 0 auto; }
.cta-title { font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.cta-text { color: rgba(255, 255, 255, 0.8); margin-bottom: 28px; font-size: 1rem; }

.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn-outline { border-color: rgba(255, 255, 255, 0.5); color: var(--white); }
.cta-buttons .btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-page-section { padding: 50px 0 70px; background: var(--bg); }

.filters-sidebar { position: sticky; top: 80px; }

.filter-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 18px;
    border: 1px solid var(--border-light);
}

.filter-title {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}

.filter-list { list-style: none; padding: 0; margin: 0; }
.filter-list li { margin-bottom: 2px; }

.filter-link {
    display: block;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text);
    transition: var(--transition);
}

.filter-link:hover,
.filter-link.active { background: rgba(176, 138, 181, 0.08); color: var(--accent); }

.products-toolbar {
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    border: 1px solid var(--border-light);
}

.products-count { font-size: 0.85rem; color: var(--text-muted); }

.sort-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.sort-wrap label { font-size: 0.82rem; color: var(--text-muted); white-space: nowrap; }

.sort-wrap .form-select {
    width: auto;
    min-width: 150px;
    padding: 7px 10px;
    font-size: 0.82rem;
}

.pagination { gap: 4px; margin: 0; }

.pagination .page-link {
    border: 1px solid var(--border-light);
    color: var(--text);
    border-radius: 8px !important;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.pagination .page-link:hover { background: var(--bg); border-color: var(--accent-light); color: var(--primary); }

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(7,27,77,0.2);
}

.pagination .page-item.disabled .page-link { opacity: 0.4; pointer-events: none; background: transparent; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-section { padding: 50px 0; background: var(--white); }

.contact-info-card {
    padding: 32px 24px;
    text-align: center;
    background: var(--bg);
    border-radius: var(--radius);
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(176, 138, 181, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.contact-icon i { font-size: 1.3rem; color: var(--accent); }

.contact-info-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-info-card p { font-size: 0.9rem; line-height: 1.6; }
.contact-info-card a { color: var(--text-light); }
.contact-info-card a:hover { color: var(--accent); }

.contact-form-section { padding: 50px 0 70px; background: var(--bg); }

.contact-form-wrap {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
}

.contact-form .form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
}

.contact-form textarea { resize: vertical; }

.business-details { }

.business-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 18px;
    border: 1px solid var(--border-light);
}

.business-card h4 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.business-text { font-size: 0.88rem; margin-bottom: 14px; }

.hours-list { display: flex; flex-direction: column; gap: 8px; }

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.hours-item:last-child { border-bottom: none; padding-bottom: 0; }
.hours-item .day { color: var(--text); font-weight: 500; }
.hours-item .time { color: var(--text-muted); }

.business-social { display: flex; gap: 8px; }

.business-social .social-link {
    width: 38px;
    height: 38px;
    background: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.business-social .social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.map-section { padding-bottom: 70px; background: var(--bg); }

.map-placeholder {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content i { font-size: 2.6rem; color: var(--accent); margin-bottom: 12px; }

.map-content h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.map-content p { font-size: 0.9rem; margin-bottom: 14px; }

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-section {
    padding: 60px 0 70px;
    background: var(--bg);
}
.policy-wrap {
    max-width: 820px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px 56px;
    border: 1px solid var(--border-light);
}
.policy-intro {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}
.policy-block {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}
.policy-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.policy-num {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}
.policy-block p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
}
.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.policy-list li {
    position: relative;
    padding: 6px 0 6px 22px;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}
.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.6;
}
.policy-list li strong {
    color: var(--text);
}
.policy-contact {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 28px 32px !important;
    margin-top: 32px;
    border-bottom: none !important;
}
.policy-contact .policy-num {
    margin-bottom: 8px;
}
.policy-contact-details {
    margin-top: 16px;
}
.policy-contact-details p {
    margin-bottom: 8px;
    font-size: 0.92rem;
    color: var(--text-light);
}
.policy-contact-details i {
    color: var(--accent);
    width: 20px;
    margin-right: 4px;
}
.policy-contact-details a {
    color: var(--primary);
    font-weight: 500;
}
.policy-contact-details a:hover {
    color: var(--accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .category-image { max-width: 150px; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 991px) {
    .main-nav { display: none; }
    .hamburger { display: flex; }

    .hero-slider .carousel-item { height: 350px; }

    .category-scroll-item { flex: 0 0 25%; padding: 0 8px; }

    .craft-card { height: auto; flex-direction: column; }
    .craft-image-side,
    .craft-features-side { width: 100%; }
    .craft-image-side { height: 300px; }
    .craft-features-side { padding: 30px 36px 36px; }
    .page-hero-title { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }

    .footer-bottom p { text-align: center; margin-bottom: 8px; }
    .payment-icons { justify-content: center; }
    .footer-stat { border-right: none; }
    .newsletter-title { font-size: 1.7rem; }
    .filters-sidebar { position: static; margin-bottom: 24px; }

    .trust-strip-grid { justify-content: center; }
}

@media (max-width: 767px) {
    .announcement-slider { gap: 12px; font-size: 0.72rem; }

    .hero-slider .carousel-item { height: auto; }
    .hero-slider .carousel-caption-btn {
        right: 5%;
        left: 5%;
        bottom: 20px;
        text-align: center;
    }
    .hero-slider .carousel-caption-btn .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .section-title { font-size: 1.5rem; }
    .section-desc { font-size: 0.9rem; }

    .category-image { max-width: 120px; }
    .category-card h4 { font-size: 0.82rem; }
    .category-scroll-item { flex: 0 0 33.333%; }

    .product-info { padding: 12px 12px 14px; }
    .product-name { font-size: 0.85rem; }

    .craft-card { height: auto; flex-direction: column; }
    .craft-image-side,
    .craft-features-side { width: 100%; }
    .craft-image-side { height: 250px; }
    .craft-features-side { padding: 24px 28px 30px; }
    .craft-heading { font-size: 20px; }
    .why-card { padding: 22px 18px; }

    .newsletter-wrap { padding: 36px 20px; }
    .newsletter-title { font-size: 1.4rem; }

    .newsletter-form .input-group { flex-direction: column; }
    .newsletter-form .form-control { border-radius: var(--radius-full) !important; margin-bottom: 8px; }
    .newsletter-form .btn { border-radius: var(--radius-full) !important; width: 100%; }

    .page-hero { padding: 48px 0 36px; }
    .page-hero-title { font-size: 1.8rem; }

    .about-stats { flex-wrap: wrap; gap: 18px; }

    .contact-form-wrap { padding: 20px; }

    .sort-wrap { justify-content: flex-start; margin-top: 8px; }
    .products-count { text-align: center; }

    .cta-title { font-size: 1.6rem; }
    .cta-buttons .btn { width: 100%; }

    .scroll-top { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: 0.9rem; }
    .business-details { margin-top: 24px; }

    .trust-strip-item span { font-size: 0.75rem; }
    .trust-strip-item i { font-size: 0.95rem; }

    .policy-wrap { padding: 28px 24px; }
    .policy-intro { font-size: 0.92rem; margin-bottom: 24px; padding-bottom: 20px; }
    .policy-num { font-size: 0.95rem; }
    .policy-list li { font-size: 0.88rem; padding: 5px 0 5px 18px; }
    .policy-block p { font-size: 0.88rem; }
    .policy-contact { padding: 22px 20px !important; }
}

@media (max-width: 575px) {
    .container { padding: 0 16px; }

    .hero-slider .carousel-item { height: auto; }
    .hero-slider .carousel-indicators { bottom: 12px; }
    .hero-slider .carousel-indicators button { width: 8px; height: 8px; }
    .hero-slider .carousel-caption {
        right: 4%;
        left: 4%;
        bottom: 16px;
    }
    .hero-slider .carousel-caption-btn .btn {
        padding: 6px 14px;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .category-image { max-width: 90px; }
    .category-card h4 { font-size: 0.75rem; }
    .category-scroll-item { flex: 0 0 33.333%; }

    .section-title { font-size: 1.3rem; }
    .section-subtitle { font-size: 0.72rem; }

    .product-card .product-name { font-size: 0.82rem; }
    .current-price { font-size: 0.9rem; }

    .logo a { gap: 8px; }
    .logo-icon { width: 44px; height: 44px; }
    .logo-img { height: 28px; }
    .logo-brand { font-size: 22px; letter-spacing: 2px; }
    .logo-sub { font-size: 9px; letter-spacing: 4px; }
    .header-actions .action-icon { width: 34px; height: 34px; font-size: 0.85rem; }

    .page-hero-title { font-size: 1.5rem; }
    .cta-title { font-size: 1.3rem; }
    .map-placeholder { padding: 40px 20px; }

    .hours-item { flex-direction: column; gap: 2px; }
    .filter-section { padding: 14px; }
    .testimonial-card { padding: 20px; }

    .craft-image-side { height: 200px; }
    .craft-features-side { padding: 20px 24px 26px; }
    .craft-heading { font-size: 18px; }
    .craft-features { gap: 12px; }

    .newsletter-title { font-size: 1.2rem; }
    .newsletter-text { font-size: 0.85rem; }

    .policy-wrap { padding: 20px 16px; }
    .policy-list li { font-size: 0.85rem; }
}

/* Cart Page */
.cart-section { padding: 40px 0 80px; background: var(--white); }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
    display: flex; align-items: center; gap: 16px; padding: 16px;
    background: var(--white); border: 1px solid var(--border-light); border-radius: 12px;
}
.cart-item-image { width: 90px; height: 90px; flex-shrink: 0; border-radius: 10px; overflow: hidden; background: var(--bg); }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-title { font-weight: 600; font-size: 0.92rem; color: var(--primary); text-decoration: none; display: block; margin-bottom: 4px; }
.cart-item-title:hover { color: var(--accent); }
.cart-item-price { font-size: 0.88rem; color: var(--text-light); }
.cart-item-qty { flex-shrink: 0; }
.cart-item-qty .qty-control { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; display: flex; }
.cart-item-qty .qty-control button { width: 34px; height: 34px; border: none; background: var(--bg); cursor: pointer; font-size: 1rem; color: var(--text); }
.cart-item-qty .qty-control input { width: 40px; height: 34px; border: none; text-align: center; font-size: 0.85rem; font-weight: 500; background: var(--white); -moz-appearance: textfield; }
.cart-item-qty .qty-control input::-webkit-outer-spin-button,
.cart-item-qty .qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cart-item-total { font-weight: 600; font-size: 0.95rem; color: var(--primary); min-width: 80px; text-align: right; }
.cart-item-remove { width: 32px; height: 32px; border: none; background: #FEF2F2; color: #DC2626; border-radius: 50%; cursor: pointer; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; transition: 0.2s; flex-shrink: 0; }
.cart-item-remove:hover { background: #FEE2E2; }
.cart-summary { background: var(--bg); border-radius: 16px; padding: 28px; position: sticky; top: 100px; }
.cart-summary h4 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--primary); margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text); margin-bottom: 12px; }
.summary-divider { height: 1px; background: var(--border); margin: 12px 0; }
.summary-total { font-size: 1.05rem; font-weight: 700; color: var(--primary); }
.cart-empty { text-align: center; padding: 80px 20px; }
.cart-empty i { font-size: 3rem; color: var(--text-muted); margin-bottom: 16px; }
.cart-empty h3 { font-family: var(--font-heading); font-size: 1.5rem; color: var(--primary); margin-bottom: 8px; }
.cart-empty p { color: var(--text-light); margin-bottom: 24px; }
@media (max-width: 767px) {
    .cart-item { flex-wrap: wrap; gap: 12px; padding: 14px; }
    .cart-item-image { width: 70px; height: 70px; }
    .cart-item-info { flex: 1 1 calc(100% - 86px); }
    .cart-item-qty { order: 1; }
    .cart-item-total { min-width: auto; order: 2; text-align: right; }
    .cart-item-remove { order: 3; }
    .cart-summary { position: static; padding: 20px; margin-top: 16px; }
    .cart-summary h4 { font-size: 1.05rem; }
    .cart-section { padding: 20px 0 60px; }
    .cart-empty { padding: 50px 20px; }
    .cart-empty h3 { font-size: 1.2rem; }
}
@media (max-width: 480px) {
    .cart-item { flex-direction: column; align-items: flex-start; }
    .cart-item-image { width: 100%; height: auto; aspect-ratio: 1/1; max-height: 200px; }
    .cart-item-info { flex: 1 1 100%; }
    .cart-item-qty, .cart-item-total, .cart-item-remove { align-self: flex-start; }
    .cart-item-total { text-align: left; }
}

/* Shop By Category Dropdown - Desktop Mega Menu */
.nav-dropdown { position: relative; }
.dropdown-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.dropdown-arrow { font-size: 0.55rem; transition: transform 0.2s; }
.dropdown-trigger.open .dropdown-arrow { transform: rotate(180deg); }
.dropdown-mega {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    background: var(--white); border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 0; min-width: 560px; max-width: 600px;
    opacity: 0; visibility: hidden;
    transition: all 0.25s ease; z-index: 100; margin-top: 12px;
    border: 1px solid var(--border-light);
}
.dropdown-mega.open { opacity: 1; visibility: visible; margin-top: 8px; }
.mega-cols { display: flex; border-radius: 16px; overflow: hidden; }
.mega-left {
    width: 180px; flex-shrink: 0;
    background: var(--bg); padding: 12px 0;
    border-right: 1px solid var(--border-light);
}
.mega-cat-item {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 20px; color: var(--text); font-weight: 500; font-size: 0.85rem;
    text-decoration: none; cursor: pointer; transition: all 0.15s;
    border-left: 3px solid transparent;
}
.mega-cat-item .mega-arrow { font-size: 0.45rem; color: var(--text-muted); opacity: 0; transition: opacity 0.15s; }
.mega-cat-item:hover,
.mega-cat-item.active { background: var(--white); color: var(--accent); border-left-color: var(--accent); }
.mega-cat-item:hover .mega-arrow,
.mega-cat-item.active .mega-arrow { opacity: 1; }
.mega-right {
    flex: 1; padding: 24px 28px; min-height: 200px;
    background: var(--white);
}
.mega-sub-panel { display: none; }
.mega-sub-panel.active { display: block; }
.mega-sub-title {
    font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
    color: var(--primary); margin-bottom: 16px; padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
}
.mega-sub-links { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 20px; }
.mega-sub-links li { break-inside: avoid; margin-bottom: 6px; }
.mega-sub-links a {
    color: var(--text-light); text-decoration: none; font-size: 0.82rem;
    display: block; padding: 6px 10px; border-radius: 8px; transition: all 0.15s;
}
.mega-sub-links a:hover { color: var(--accent); background: var(--bg); }

/* Mobile Category Menu */
.mobile-dropdown-trigger {
    display: flex; align-items: center; justify-content: space-between;
}
.mobile-dropdown-trigger i { font-size: 0.65rem; transition: transform 0.2s; }
.mobile-dropdown-trigger.active i { transform: rotate(180deg); }
.mobile-submenu {
    display: none; list-style: none; padding: 0; margin: 0;
    background: var(--bg); border-radius: 12px; padding: 8px 14px; margin-top: 4px;
}
.mobile-submenu.open { display: block; }
.mcat-group { margin-bottom: 0; }
.mcat-toggle {
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 4px; color: var(--primary); font-weight: 600; font-size: 0.84rem;
    text-decoration: none; cursor: pointer; border-bottom: 1px solid var(--border-light);
}
.mcat-group:last-child .mcat-toggle { border-bottom: none; }
.mcat-toggle .mcat-arrow { font-size: 0.5rem; transition: transform 0.2s; color: var(--text-muted); }
.mcat-toggle.expanded .mcat-arrow { transform: rotate(180deg); }
.mcat-subs {
    display: none; list-style: none; padding: 0; margin: 0 0 0 12px;
    overflow: hidden; max-height: 0; transition: max-height 0.3s ease;
}
.mcat-subs.open { display: block; max-height: 500px; padding-bottom: 8px; }
.mcat-subs li { margin-bottom: 2px; }
.mcat-subs a {
    color: var(--text-light); text-decoration: none; font-size: 0.8rem;
    display: block; padding: 6px 8px; border-radius: 6px;
}
.mcat-subs a:hover { color: var(--accent); }

@media (max-width: 991px) {
    .dropdown-mega { display: none; }
    .mega-sub-panel.active { display: none; }
}
@media (min-width: 992px) {
    .mcat-subs { display: none !important; }
    .mobile-submenu { display: none !important; }
}
