/* Custom Styles for K&D Love & Taste */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #8FD3E8; /* Sky Blue */
    --secondary-color: #F7B6CC; /* Soft Pink */
    --accent-color: #E63946; /* Red */
    --bg-color: #FFFFFF;
    --text-dark: #2D3748;
    --text-muted: #718096;
    --light-gray: #F7FAFC;
    --border-gray: #EDF2F7;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    padding-bottom: 70px; /* To prevent content from being cut off by the sticky bottom nav on mobile */
}

@media(min-width: 769px) {
    body {
        padding-bottom: 0px;
    }
}

a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
a:hover {
    color: var(--primary-color);
}

/* Custom Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #79c5dc !important;
    border-color: #79c5dc !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
    background-color: #f5a2bf !important;
    border-color: #f5a2bf !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}
.btn-accent:hover {
    background-color: #d62837;
    border-color: #d62837;
    color: #fff;
    transform: translateY(-1px);
}

/* Header & Search Bar */
.top-header {
    background: #fff;
    border-bottom: 1px solid var(--border-gray);
    padding: 0.75rem 0;
}

.search-container {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 0.6rem 2.8rem 0.6rem 1.2rem;
    border-radius: 20px;
    border: 1px solid var(--border-gray);
    background-color: var(--light-gray);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.2s;
}

.search-input:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(143, 211, 232, 0.2);
}

.search-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
}

.nav-tabs-custom {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-gray);
    padding: 0.5rem 0;
    scrollbar-width: none; /* Firefox */
}

.nav-tabs-custom::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.nav-tabs-custom a {
    padding: 0.5rem 1rem;
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
}

.nav-tabs-custom a.active {
    color: var(--text-dark);
    font-weight: 700;
}

.nav-tabs-custom a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
}

/* Banner / Hero Slider */
.banner-carousel {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.carousel-item {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media(min-width: 768px) {
    .carousel-item {
        height: 400px;
    }
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.1) 80%);
    display: flex;
    align-items: center;
    color: #fff;
    padding: 2rem;
}

.banner-content {
    max-width: 500px;
}

.banner-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

@media(min-width: 768px) {
    .banner-title {
        font-size: 2.8rem;
    }
}

.banner-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Floating Banner Cards (Shein Style) */
.banner-float-card {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-md);
    max-width: 180px;
    border: 1px solid rgba(255,255,255,0.4);
}

@media(max-width: 576px) {
    .banner-float-card {
        display: none;
    }
}

.banner-float-card img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

.banner-float-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Collections Grid (Brands, New In, etc.) */
.collection-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Circle Category List */
.circle-categories-container {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.circle-categories-container::-webkit-scrollbar {
    display: none;
}

.circle-cat-item {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-right: 12px;
}

.circle-cat-img-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-gray);
    margin-bottom: 6px;
    transition: all 0.2s;
    box-shadow: var(--shadow-sm);
}

.circle-cat-item:hover .circle-cat-img-wrapper {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.circle-cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-cat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-dark);
    max-width: 75px;
    line-height: 1.2;
}

/* Product Cards */
.product-card {
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.product-img-wrapper {
    position: relative;
    padding-top: 100%; /* Square aspect ratio */
    overflow: hidden;
    background: var(--light-gray);
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.03);
}

.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
}

.wishlist-btn-float {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.wishlist-btn-float:hover {
    color: var(--accent-color);
    background: #fff;
    transform: scale(1.1);
}

.wishlist-btn-float.active {
    color: var(--accent-color);
}

.product-info {
    padding: 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-dark);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.7em;
    line-height: 1.35;
}

.product-prices {
    margin-top: auto;
    margin-bottom: 8px;
}

.price-krw {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

.product-actions {
    display: flex;
    gap: 8px;
}

.btn-add-cart-sm {
    flex-grow: 1;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 6px;
    background: var(--light-gray);
    color: var(--text-dark);
    border: 1px solid var(--border-gray);
    font-weight: 600;
}

.btn-add-cart-sm:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* Mobile Sticky Bottom Nav (Shein Mockup Style) */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid var(--border-gray);
    display: flex;
    justify-content: space-around;
    padding: 6px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

@media(min-width: 769px) {
    .mobile-bottom-nav {
        display: none;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 500;
    position: relative;
    flex: 1;
}

.bottom-nav-item i {
    font-size: 1.25rem;
    margin-bottom: 2px;
}

.bottom-nav-item.active {
    color: var(--text-dark);
}

.bottom-nav-badge {
    position: absolute;
    top: -2px;
    right: 25%;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Order Tracking Timeline */
.tracking-wrapper {
    position: relative;
    padding: 20px 0;
}

.tracking-list {
    position: relative;
    list-style: none;
    padding-left: 30px;
    margin-bottom: 0;
}

.tracking-list::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: var(--border-gray);
}

.tracking-item {
    position: relative;
    margin-bottom: 25px;
}

.tracking-item:last-child {
    margin-bottom: 0;
}

.tracking-icon {
    position: absolute;
    left: -30px;
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--border-gray);
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--border-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracking-item.completed .tracking-icon {
    background: var(--primary-color);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.tracking-item.current .tracking-icon {
    background: var(--accent-color);
    box-shadow: 0 0 0 2px var(--accent-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.tracking-content {
    padding-left: 10px;
}

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

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

/* Admin Dashboard Elements */
.admin-sidebar {
    background: #fff;
    border-right: 1px solid var(--border-gray);
    min-height: calc(100vh - 57px);
}

.admin-nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--text-muted);
    border-left: 4px solid transparent;
}

.admin-nav-link:hover, .admin-nav-link.active {
    color: var(--primary-color);
    background: var(--light-gray);
    border-left-color: var(--primary-color);
}

.admin-nav-link i {
    width: 24px;
    margin-right: 8px;
    font-size: 1.1rem;
}

.card-stat {
    border-radius: 12px;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--border-gray);
    box-shadow: var(--shadow-sm);
}

.card-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bg-sky-light { background-color: rgba(143, 211, 232, 0.15); color: #43a3c2; }
.bg-pink-light { background-color: rgba(247, 182, 204, 0.15); color: #d67a99; }
.bg-red-light { background-color: rgba(230, 57, 70, 0.1); color: var(--accent-color); }
.bg-green-light { background-color: rgba(46, 204, 113, 0.1); color: #2ecc71; }

/* Coupang-Style Discounts */
.price-original {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-badge {
    background-color: var(--accent-color);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
}

.price-discounted {
    color: var(--accent-color);
    font-weight: 800;
    font-size: 1.25rem;
}

/* Category Tabs wrapper with Menu Button */
.nav-tabs-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.nav-tabs-custom {
    flex-grow: 1;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    border-bottom: 1px solid var(--border-gray);
    padding: 0.5rem 0;
    margin-right: 35px; /* Leave space for hamburger menu */
    scrollbar-width: none;
}

.nav-tabs-custom::-webkit-scrollbar {
    display: none;
}

.nav-tabs-menu-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    padding: 5px;
    font-size: 1.15rem;
    color: var(--text-dark);
    z-index: 10;
    cursor: pointer;
}

/* Streetwear Collage Banner Layout */
.streetwear-banner {
    background: #151515;
    color: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    height: 210px;
    position: relative;
    box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
    .streetwear-banner {
        height: 350px;
    }
}

.streetwear-collage-side {
    width: 55%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1px;
    background: #000;
    overflow: hidden;
}

.streetwear-img-cell {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #222;
    animation: collageFadeIn 0.8s cubic-bezier(0.19, 1, 0.22, 1) both;
}

/* Diagonal triangle clip-path cells with staggered animation delay */
.cell-1 { clip-path: polygon(0 0, 100% 0, 0 100%); animation-delay: 0.05s; }
.cell-2 { clip-path: polygon(100% 0, 100% 100%, 0 0); animation-delay: 0.1s; }
.cell-3 { clip-path: polygon(0 0, 100% 100%, 0 100%); animation-delay: 0.15s; }
.cell-4 { clip-path: polygon(100% 0, 0 100%, 100% 100%); animation-delay: 0.2s; }
.cell-5 { clip-path: polygon(0 0, 100% 0, 100% 100%); animation-delay: 0.25s; }
.cell-6 { clip-path: polygon(0 100%, 100% 0, 0 0); animation-delay: 0.3s; }
.cell-7 { clip-path: polygon(0 100%, 100% 100%, 100% 0); animation-delay: 0.35s; }
.cell-8 { clip-path: polygon(0 0, 100% 100%, 100% 0); animation-delay: 0.4s; }
.cell-9 { clip-path: polygon(0 0, 0 100%, 100% 100%); animation-delay: 0.45s; }
.cell-10 { clip-path: polygon(0 0, 100% 0, 0 100%); animation-delay: 0.5s; }

.streetwear-text-side {
    width: 45%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 15px;
    z-index: 5;
    background: linear-gradient(to right, #151515, #0a0a0a);
    animation: textSlideIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (min-width: 768px) {
    .streetwear-text-side {
        padding: 20px 40px;
    }
}

.streetwear-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 2px;
    animation: subtitleFade 0.6s ease-out 0.4s both;
}

@media (min-width: 768px) {
    .streetwear-subtitle {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
}

.streetwear-title {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    color: #fff;
    text-transform: uppercase;
    animation: titleFade 0.7s ease-out 0.6s both;
}

@media (min-width: 768px) {
    .streetwear-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
}

.streetwear-title span {
    font-size: 1.4rem;
    color: #fff;
    display: block;
    font-weight: 900;
}

@media (min-width: 768px) {
    .streetwear-title span {
        font-size: 3rem;
    }
}

.btn-streetwear-shop {
    background: #FFFF00; /* Yellow */
    color: #000;
    font-weight: 800;
    border: none;
    padding: 4px 10px;
    border-radius: 2px;
    font-size: 0.7rem;
    text-transform: uppercase;
    align-self: flex-start;
    transition: all 0.2s;
    animation: btnPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.9s both;
}

/* Hero Animations Keyframes */
@keyframes collageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(3deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes textSlideIn {
    from {
        opacity: 0;
        transform: translateX(45px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes subtitleFade {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes btnPop {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (min-width: 768px) {
    .btn-streetwear-shop {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

.btn-streetwear-shop:hover {
    background: #e6e600;
    transform: scale(1.03);
    color: #000;
}

/* Scrollable Horizontal Collections Row */
.scrollable-collections-row {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 8px;
    padding: 5px 0 10px 0;
    margin-bottom: 15px;
    justify-content: flex-start;
}

@media (min-width: 768px) {
    .scrollable-collections-row {
        justify-content: center;
    }
}

.scrollable-collections-row::-webkit-scrollbar {
    display: none;
}

.collection-card-item {
    flex: 0 0 110px;
    height: 155px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
}

@media (min-width: 768px) {
    .collection-card-item {
        flex: 0 0 180px;
        height: 250px;
    }
}

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

.collection-card-item:hover img {
    transform: scale(1.05);
}

.collection-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(45, 55, 72, 0.95);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 4px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .collection-card-label {
        font-size: 0.85rem;
        padding: 8px 4px;
    }
}

/* Category circles wrapped grid */
.grid-categories-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 8px;
    margin-bottom: 25px;
    padding: 10px 0;
}

@media (max-width: 480px) {
    .grid-categories-container {
        grid-template-columns: repeat(5, 1fr); /* 5 columns like Shein mockup */
    }
}

@media (min-width: 768px) {
    .grid-categories-container {
        grid-template-columns: repeat(8, 1fr);
        gap: 20px;
    }
}

.grid-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

.grid-cat-img-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid var(--border-gray);
    margin-bottom: 5px;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
}

@media (min-width: 768px) {
    .grid-cat-img-wrapper {
        width: 75px;
        height: 75px;
    }
}

.grid-cat-item:hover .grid-cat-img-wrapper {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.grid-cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.grid-cat-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.25;
    max-width: 75px;
    word-wrap: break-word;
}

@media (min-width: 768px) {
    .grid-cat-label {
        font-size: 0.8rem;
        max-width: 100%;
    }
}

/* Custom bottom navbar style */
.bottom-nav-s-bag {
    background: #111;
    color: #fff !important;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    font-family: sans-serif;
    margin-bottom: 2px;
}

.bottom-nav-save-tag {
    background: #ff4500;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 1px 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 2px;
    position: absolute;
    top: -12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

/* Scroll Animation Utilities */
.scroll-animate {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.scroll-fade-up {
    transform: translateY(40px);
}

.scroll-fade-down {
    transform: translateY(-40px);
}

.scroll-fade-left {
    transform: translateX(40px);
}

.scroll-fade-right {
    transform: translateX(-40px);
}

.scroll-animate.scroll-active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Flash Sale Countdown blocks */
.countdown-box {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 700;
}

.countdown-time {
    background: #111;
    color: #fff;
    padding: 3px 6px;
    border-radius: 4px;
    min-width: 28px;
    text-align: center;
}

.countdown-colon {
    font-weight: 800;
    color: #111;
}

/* Stock progress indicator bar */
.flash-progress-bar {
    height: 6px;
    background: #edf2f7;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.flash-progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    border-radius: 10px;
}

/* Services Highlights grid styles */
.service-highlight-card {
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 1.25rem;
    height: 100%;
    transition: all 0.3s;
    text-align: center;
}

.service-highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-highlight-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(143, 211, 232, 0.15);
    color: #43a3c2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

/* Testimonial sliders quotes styling */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    height: 100%;
}

.testimonial-quote-icon {
    font-size: 2.5rem;
    color: rgba(247, 182, 204, 0.3);
    position: absolute;
    top: 10px;
    left: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 0.75rem;
    border: 2px solid var(--secondary-color);
}

/* Instagram Social collage grid overlays */
.instagram-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .instagram-grid-container {
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
    }
}

.instagram-item {
    position: relative;
    padding-top: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
}

.instagram-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(230, 57, 70, 0.4); /* Pink/Red accent tint */
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: opacity 0.3s;
    cursor: pointer;
}

.instagram-item:hover img {
    transform: scale(1.05);
}

.instagram-item:hover .instagram-overlay {
    opacity: 1;
}

/* Floating WhatsApp Button */
.whatsapp-floating-btn {
    position: fixed;
    bottom: 90px; /* Sits above mobile sticky navigation bar */
    right: 20px;
    z-index: 9999;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #fff !important;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-floating-btn:hover {
    transform: scale(1.1) rotate(8deg);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .whatsapp-floating-btn {
        bottom: 30px; /* Placed at the bottom corner on desktop */
        right: 30px;
    }
}




