/* ==========================================================================
   SHINEX - Premium Luxury & Lifestyle Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* ShineX Official Logo Palette: Blue, Black, White & Gold */
    --primary: #0f4c81;
    /* Vibrant Cobalt Blue from 3D bevels */
    --primary-dark: #051125;
    /* Deep Midnight Navy Blue from oval background */
    --primary-soft: #eaf2fb;
    /* Soft Sapphire Blue ambient tint */

    --accent-gold: #DAA520;
    /* ShineX Metallic Goldenrod (#DAA520) */
    --accent-gold-light: #e6b840;
    --accent-gold-soft: #fdf8eb;

    --text-main: #000000;
    /* Pure Black for Crisp High Contrast & Text */
    --text-muted: #1e293b;
    /* Dark Slate */
    --text-light: #475569;

    --bg-main: #f8fafc;
    /* Crisp Clean White Ambient Background */
    --bg-surface: #ffffff;
    /* Crisp Solid White */
    --bg-card: #ffffff;
    --border-color: #cbdceb;
    /* Delicate Blue Border */

    /* Status Colors */
    --success: #198754;
    --warning: #ffd700;
    --danger: #ef4444;
    --info: #0f4c81;

    /* Clean Sculpted Shadows with Navy/Cobalt & Gold Glow */
    --shadow-sm: 0 2px 8px rgba(5, 17, 37, 0.08);
    --shadow-md: 0 6px 20px rgba(5, 17, 37, 0.14);
    --shadow-lg: 0 12px 35px rgba(5, 17, 37, 0.22);
    --shadow-glow: 0 4px 22px rgba(15, 76, 129, 0.32);

    --glass-bg: rgba(255, 255, 255, 0.98);
    --glass-border: #cbdceb;
    --glass-blur: blur(8px);

    /* Typography & Transitions */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 700;
    line-height: 1.25;
}

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

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

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Glass Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-logo-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(5, 17, 37, 0.35));
}

.logo-link:hover .site-logo-img {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #051125;
    text-decoration: none;
}

.logo-badge {
    background: linear-gradient(135deg, #DAA520 0%, #b8860b 100%);
    color: #000000 !important;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #000000;
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.4);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent-gold));
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.search-bar {
    position: relative;
    width: 260px;
}

.search-bar input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.6rem;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--text-main);
    transition: var(--transition-fast);
}

.search-bar input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-surface);
    box-shadow: 0 0 0 3px var(--primary-soft);
    width: 300px;
}

.search-bar i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-size: 1.15rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-enquiry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-dark);
    color: #ffffff;
    font-weight: 700;
    padding: 0.6rem 1.5rem;
    border-radius: 9999px; /* Pill shape */
    text-decoration: none;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
    border: none;
}
.btn-enquiry:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: #ffffff;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-gold);
    color: var(--text-main);
    font-size: 0.72rem;
    font-weight: 800;
    min-width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid white;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-main);
    cursor: pointer;
}

/* Hero Section & Slider */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    min-height: 620px;
    max-height: 900px;
    overflow: hidden;
    background: #051125;
}

.hero-slider-container {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    height: 100%;
}

.hero-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

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

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

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

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #00d2ff;
    width: 36px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.6);
}

.hero-section {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, var(--primary-soft) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, var(--accent-gold-soft) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-tag i {
    color: var(--accent-gold);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent-gold) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #DAA520 0%, #b8860b 100%);
    color: #000000 !important;
    font-weight: 800;
    border: 1.5px solid #000000;
    box-shadow: 0 10px 25px -5px rgba(218, 165, 32, 0.45);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e6b840 0%, #DAA520 100%);
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(218, 165, 32, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, #fdf8eb 0%, #fbe8bd 100%);
    color: #000000;
    font-weight: 700;
    border: 1.5px solid #DAA520;
    border-radius: var(--radius-full);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #DAA520 0%, #b8860b 100%);
    color: #000000;
    border-color: #000000;
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, #DAA520 0%, #b8860b 100%);
    color: #000000 !important;
    font-weight: 800;
    border: 1.5px solid #000000;
    box-shadow: 0 10px 25px -5px rgba(218, 165, 32, 0.45);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e6b840 0%, #DAA520 100%);
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(218, 165, 32, 0.6);
}

/* Hero Visual & Glass Floating Cards */
.hero-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-img-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.hero-img-box img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.hero-img-box:hover img {
    transform: scale(1.04);
}

.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.floating-badge.badge-1 {
    bottom: -20px;
    left: -30px;
    animation: float 5s ease-in-out infinite;
}

.floating-badge.badge-2 {
    top: 40px;
    right: -25px;
    animation: float 6s ease-in-out infinite 1s;
}

@keyframes float {

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

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

/* Section Headings */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
}

/* Product Cards Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
}

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

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

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(37, 99, 235, 0.45);
}

.product-thumb {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--bg-main);
    perspective: 1000px;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.7s ease;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
}

.product-thumb img.img-primary {
    z-index: 1;
    transform: rotateY(0deg) scale(1);
    opacity: 1;
}

.product-thumb img.img-secondary {
    z-index: 0;
    transform: rotateY(-180deg) scale(1.05);
    opacity: 0;
}

.product-card:hover .product-thumb img.img-primary {
    transform: rotateY(180deg) scale(1.05);
    opacity: 0;
}

.product-card:hover .product-thumb img.img-secondary {
    z-index: 2;
    transform: rotateY(0deg) scale(1.05);
    opacity: 1;
}

/* Fallback for single image cards */
.product-thumb img:not(.img-primary):not(.img-secondary) {
    position: relative;
    transform: rotateY(0deg) scale(1);
    opacity: 1;
}

.product-card:hover .product-thumb img:not(.img-primary):not(.img-secondary) {
    transform: scale(1.08);
}

/* Dynamic Rotating Elements & Animations */
@keyframes continuousSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes continuousSpinReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.rotating-ring {
    position: absolute;
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    border-radius: 50%;
    border: 1px dashed rgba(212, 175, 55, 0.35);
    animation: continuousSpin 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.product-thumb .dynamic-seal {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.05rem;
    box-shadow: var(--shadow-sm);
    z-index: 3;
    animation: continuousSpinReverse 12s linear infinite;
}

.product-card:hover .dynamic-seal {
    animation-duration: 3s;
    color: var(--primary);
    border-color: var(--primary);
}

.product-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 3;
}

.badge {
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale {
    background: var(--danger);
    color: white;
}

.badge-stock {
    background: var(--success);
    color: white;
}

.badge-low {
    background: var(--warning);
    color: var(--text-main);
}

.badge-out {
    background: var(--text-muted);
    color: white;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-rating span {
    color: var(--text-muted);
    font-weight: 500;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    line-height: 1.4;
    transition: var(--transition-fast);
}

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

.product-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}

.current-price {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
}

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

.product-actions {
    margin-top: auto;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.btn-add-cart {
    background: linear-gradient(135deg, #206eda 0%, #0b27b8 100%);
    color: var(--bg-card) !important;
    font-weight: 800;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.35);
}


.btn-add-cart i {
    color: #000000 !important;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #e6b840 0%, #DAA520 100%);
    color: #000000 !important;
    transform: translateY(-2px);
}

.btn-add-cart:hover i {
    color: #000000 !important;
}

/* Shop Layout & Filters Sidebar */
.shop-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 3rem 0 5rem;
}

.shop-sidebar {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.filter-list label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-main);
    cursor: pointer;
}

.filter-list input[type="checkbox"],
.filter-list input[type="radio"] {
    accent-color: var(--primary);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Color Swatches */
.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.swatch-label {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
    position: relative;
}

.swatch-label.active,
.swatch-label:hover {
    transform: scale(1.15);
    box-shadow: 0 0 0 2px var(--bg-main), 0 0 0 4px var(--primary);
}

/* Price Range Slider */
.price-slider-box {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.price-inputs input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    text-align: center;
}

/* Shop Toolbar */
.shop-toolbar {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.shop-sort select {
    padding: 0.6rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    background: var(--bg-main);
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
}

/* Toast Alerts */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: var(--bg-surface);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    animation: slideIn 0.35s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

/* ==========================================================================
   Footer Section (Exact Match to CHAMAK Reference Image Layout)
   ========================================================================== */
.site-footer {
    position: relative;
    background: #051125;
    color: #ffffff;
    padding: 0 0 3rem;
    margin-top: 6rem;
    overflow: hidden;
    border-top: 6px solid #ffd700;
    box-shadow: 0 -10px 30px rgba(5, 17, 37, 0.3);
}

/* Decorative Watermark Icons */
.footer-watermark {
    position: absolute;
    color: #0f4c81;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.watermark-1 {
    font-size: 11rem;
    left: 8%;
    top: 25%;
    transform: rotate(-25deg);
}

.watermark-2 {
    font-size: 6rem;
    left: 28%;
    bottom: 18%;
    transform: rotate(15deg);
}

.watermark-3 {
    font-size: 13rem;
    right: 32%;
    top: 35%;
    transform: rotate(20deg);
}

.footer-content-wrapper {
    position: relative;
    z-index: 1;
    padding-top: 4.5rem;
}

.footer-grid-chamak {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1.3fr;
    gap: 4rem;
    margin-bottom: 4.5rem;
    align-items: start;
}

.footer-col-chamak {
    display: flex;
    flex-direction: column;
}

/* Brand / Logo Column */
.brand-col {
    align-items: center;
    text-align: center;
    padding-right: 1.5rem;
}

.footer-logo-box {
    margin-bottom: 1.25rem;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.45));
}

.chamak-logo-box {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: #ffd700;
}

.chamak-star {
    font-size: 3.5rem;
    color: #ffd700;
    line-height: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.chamak-text {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #000000;
    margin-top: -1.4rem;
    background: #ffd700;
    padding: 0 0.4rem;
    border-radius: 4px;
    z-index: 2;
}

.chamak-desc {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 320px;
    font-weight: 500;
}

/* Quick Links & Contact Columns */
.links-col {
    padding-left: 1rem;
}

.footer-heading {
    color: #ffd700;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.75rem;
    letter-spacing: 0.5px;
    border-left: 4px solid #ffd700;
    padding-left: 10px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-list li {
    position: relative;
    padding-left: 1.25rem;
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.footer-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -2px;
    color: #ffd700;
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-list li a {
    color: #ffffff;
    transition: var(--transition-fast);
}

.footer-list li a:hover {
    color: #ffd700;
    padding-left: 4px;
}

/* Bottom Copyright */
.footer-bottom-chamak {
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {

    .hero-grid,
    .shop-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .search-bar {
        display: none;
    }

    .footer-grid-chamak {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .brand-col {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .footer-grid-chamak {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .brand-col {
        grid-column: span 1;
    }

    .links-col {
        padding-left: 0;
    }
}

/* ==========================================================================
   Shop by Category Section (Matching User Image Layout)
   ========================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
    margin: 2.5rem 0 1rem;
}

.category-card {
    background: #ffffff;
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-main);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.05);
}

.category-card:hover {
    background: #eff6ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

.category-icon-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #2563eb !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ffffff !important;
    margin-bottom: 1.25rem;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover .category-icon-circle {
    transform: scale(1.1);
    background: #1e40af !important;
    color: #ffffff !important;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

/* ==========================================================================
   Floating Action Buttons (WhatsApp & Phone Call - Bottom Right)
   ========================================================================== */
.floating-contact-container {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    background: #2563eb !important;
    border: none !important;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.floating-btn.whatsapp,
.floating-btn.phone {
    background: #2563eb !important;
    color: #ffffff !important;
}

.floating-btn:hover,
.floating-btn.whatsapp:hover,
.floating-btn.phone:hover {
    background: #1e40af !important;
    color: #ffffff !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.55);
}

/* ==========================================================================
   Global Blue & White Icons System
   ========================================================================== */
i.fas,
i.far,
i.fab,
i[class*="fa-"] {
    color: #2563eb !important;
    transition: color 0.25s ease, transform 0.25s ease;
}

/* Icons inside golden buttons switch to Pure Black (#000000) */
.btn i,
.btn-primary i,
.btn-secondary i,
.btn-gold i,
button[type="submit"] i,
.action-btn:hover i {
    color: #000000 !important;
}

/* Icons inside dark backgrounds / circular badges */
.hero-tag i,
.search-bar i,
.footer-brand i,
.footer-col i {
    color: #2563eb !important;
}

.footer-brand a:hover i,
.social-links a:hover i {
    color: #1e40af !important;
}

/* Circular Icon Wrappers (Benefits, Badges, Seals) */
.category-icon-circle i,
.floating-btn i,
.dynamic-seal i {
    color: #ffffff !important;
}

.category-card:hover .category-icon-circle i,
.floating-btn:hover i,
.product-card:hover .dynamic-seal i {
    color: #ffffff !important;
}

/* ==========================================================================
   CHAMAK REFERENCE PRODUCT SECTION STYLING (Blue, White & Yellow Palette)
   ========================================================================== */

/* Hero Section */
.chamak-hero-section {
    background: linear-gradient(180deg, #eff6ff 0%, #dbeafe 60%, #ffffff 100%);
    padding: 4rem 1.5rem 2.5rem;
    text-align: center;
    border-bottom: 1px solid #bfdbfe;
}

.chamak-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: #1d4ed8;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.chamak-hero-subtitle {
    font-size: 1.15rem;
    color: #475569;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

/* Category Filter Pill Bar */
.chamak-category-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    max-width: 1100px;
    margin: 0 auto;
}

.chamak-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.6rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid #bfdbfe;
    background: #ffffff;
    color: #1e40af !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.05);
}

.chamak-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.15);
    color: #2563eb !important;
    border-color: #2563eb !important;
}

.chamak-pill.active {
    background: #2563eb !important;
    color: #ffffff !important;
    border-color: #2563eb !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4) !important;
}

/* Product Grid */
.chamak-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 5rem;
    padding: 0 1.5rem;
}

/* Product Card */
.chamak-product-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.06);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.chamak-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.12);
    border-color: #bfdbfe;
}

/* Poster Image */
.chamak-poster-link {
    width: 100%;
    display: block;
    margin-bottom: 1.25rem;
}

.chamak-poster-box {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.chamak-poster-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.chamak-product-card:hover .chamak-poster-box img {
    transform: scale(1.04);
}

/* Card Content */
.chamak-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.chamak-card-title a {
    color: #1e293b !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.chamak-card-title a:hover {
    color: #2563eb !important;
}

.chamak-card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 1.25rem;
    min-height: 68px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Price */
.chamak-card-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.chamak-card-price .old-price {
    font-size: 0.95rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
}

.chamak-card-price .current-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    color: #2563eb;
    font-weight: 800;
}

/* Action Pill Buttons (Blue & Yellow Theme - No Pink) */
.chamak-card-actions {
    display: flex;
    gap: 0.85rem;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.btn-chamak-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.95rem;
    background: #2563eb;
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: all 0.2s ease;
}

.btn-chamak-pill:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.5);
    color: #ffffff !important;
}

.btn-chamak-order {
    background: #eab308;
    color: #0f172a !important;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(234, 179, 8, 0.35);
}

.btn-chamak-order:hover {
    background: #ca8a04;
    color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(202, 138, 4, 0.5);
}