@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

:root {
    --bg: #ffffff;
    --text: #222;
    --muted: #666;
    --border: #eee;
    --primary: #da3c3c;
    --primary-600: #c71717;
    --accent: #111;
    --container: 1222px;
    --radius: 12px;
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    --main-padding-x: 16px;
}

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

html,
body {
    min-height: 100%;
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
}

body {
    margin: 0;
    font-family: "Lato", sans-serif;
    color: var(--text);
    background: var(--bg);
}

a {
    color: inherit;
    text-decoration: none;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding: 0 var(--main-padding-x);
}





/* start Header */
/* start  top bar */
/* Topbar */
.topbar {
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    height: 42px;
    padding: 0 var(--main-padding-x);
}

.topbar__inner {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    height: 100%;
}

.topbar__links {
    display: flex;
    align-items: center;
}

.topbar__links a {
    opacity: 0.9;
    margin-left: 16px;
    display: block;
    border-left: 1px solid #fff;
    padding: 0px 16px;
}

.topbar__links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* end  top bar */
/* Header */

.header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 10;
    border-bottom: 1px solid var(--border);
    padding: 10px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px var(--main-padding-x);
}

.search-button {
    position: relative;
}

.search {
    transition: transform 0.2s ease-in-out;
    display: flex;
    gap: 8px;
    position: absolute;
    bottom: -120%;
    left: 50%;
    transform: translateX(-50%) scale(0);

    input {
        flex: 1;
        padding: 10px 12px;
        border-radius: 999px;
        border: 1px solid var(--border);
        background: #fafafa;
    }
}

.search-button:hover .search {
    transform: translateX(-50%) scale(1);
}

.logo {
    width: 110px;
    object-fit: contain;
}

.header__actions {
    display: flex;
    gap: 8px;
}

.header__actions button {
    background: #fff;
    padding: 8px 10px;
    cursor: pointer;
    border: none;
}

.cart {
    position: relative;
}

.badge {
    position: absolute;
    top: 0;
    right: -5px;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 0 6px;
    font-size: 12px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #333;
}

/* Nav */
/* .nav had only a commented rule; removed to avoid empty ruleset */
.nav__inner {
    display: flex;
    gap: 18px;
    overflow: auto;
    white-space: nowrap;
    padding: 10px 0;
}

.nav__inner a {
    padding: 6px 10px;
    border-radius: 8px;
    color: #333;
    position: relative;
}

.nav__inner a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 8px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease-in-out;
}

.nav__inner a.active::before {
    transform: scaleX(1);
}

.nav__inner a:hover::before {
    transform: scaleX(1);
}

.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.tab {
    padding: 6px 10px;
    border-radius: 8px;
    color: #333;
    position: relative;
}

.tab.active {
    background: var(--primary);
    color: #fff;
}

.tab:hover {
    background: #f5f5f5;
}

.backdrop {
    position: fixed;
    inset: 0;
    /* avoid 100vw/100vh horizontal scroll */
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.menu-sidebar {
    display: none;
}

.backdrop.open {
    transform: translateX(0);
    opacity: 1;
}

@media (max-width: 980px) {
    .hamburger {
        display: flex;
    }

    .nav {
        display: none;
    }

    .menu-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        background: #fff;
        z-index: 10;
        transform: translateX(-100%);
        transition: transform 0.2s ease-in-out;
        display: block;
    }

    .menu-sidebar.open {
        transform: translateX(0);

        .nav__inner {
            flex-direction: column;
            padding: 20px;
            gap: 16px;
        }
    }

    .header__actions {

        .login,
        .wishlist,
        .search-button {
            display: none;
        }
    }

    .menu-sidebar {
        .tabs {
            display: none;
        }
    }

    .menu-sidebar {
        .tab-content {
            display: none;
        }
    }

    .menu-sidebar {
        .tab-content#menu-sidebar {
            display: block;
        }
    }

    .menu-sidebar {
        .tab-content#categories-sidebar {
            display: block;
        }
    }
}

/* end Header */

/* Animated Tiamo Background Section */

.tiamo-animated-bg-section {
    position: relative;
    width: 100vw;
    min-height: 250px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}

.tiamo-bg-text {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    font-size: 10vw;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.07);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    animation: tiamo-slide-left 12s linear infinite;
}

@keyframes tiamo-slide-left {
    0% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

.tiamo-content {
    position: relative;
    z-index: 2;
}

/* Mini Cart Popup */
.cart {
    position: relative;
}

.mini-cart-popup {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
}
.ar .mini-cart-popup {
    left: 0 !important;
    right: unset;
}

.cart:hover .mini-cart-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-popup::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.mini-cart-popup::after {
    content: '';
    position: absolute;
    top: -9px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #e9ecef;
}
.ar .mini-cart-popup::before {
    left: 20px !important;
    right: unset;
}
.ar .mini-cart-popup::after {
    left: 20px !important;
    right: unset;
}


.mini-cart-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.mini-cart-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0;
}

.mini-cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.mini-cart-item {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f3f4;
    align-items: center;
}

.mini-cart-item:last-child {
    border-bottom: none;
}

.mini-cart-item-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.mini-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-item-details {
    flex: 1;
    min-width: 0;
}

.mini-cart-item-name {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin: 0 0 4px 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-cart-item-price {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.mini-cart-item-remove {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-size: 14px;
}

.mini-cart-item-remove:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-top: 1px solid #e9ecef;
    background: #f8f9fa;
}

.subtotal-label {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}

.subtotal-amount {
    font-size: 16px;
    font-weight: 700;
    color: #da3c3c;
}

.mini-cart-actions {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-cart-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.mini-cart-btn.view-cart {
    background: white;
    color: #222;
    border: 1px solid #e9ecef;
}

.mini-cart-btn.view-cart:hover {
    background: #f8f9fa;
    border-color: #da3c3c;
    color: #da3c3c;
}

.mini-cart-btn.checkout {
    background: #da3c3c;
    color: white;
    border: 1px solid #da3c3c;
}

.mini-cart-btn.checkout:hover {
    background: #c02e2e;
    border-color: #c02e2e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(218, 60, 60, 0.3);
}

.mini-cart-empty {
    padding: 40px 20px;
    text-align: center;
    color: #666;
}

.mini-cart-empty-icon {
    font-size: 32px;
    color: #ccc;
    margin-bottom: 16px;
}

.mini-cart-empty-text {
    font-size: 14px;
    margin: 0;
}

/* Empty cart state */
.cart:not(.has-items) .mini-cart-popup {
    width: 280px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mini-cart-popup {
        width: 280px;
        right: -20px;
    }

    .mini-cart-popup::before,
    .mini-cart-popup::after {
        right: 28px;
    }
}

@media (max-width: 480px) {
    .mini-cart-popup {
        width: 260px;
        right: -30px;
    }

    .mini-cart-popup::before,
    .mini-cart-popup::after {
        right: 38px;
    }
}

/* Margin */
.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

/* Margin Top */
.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mt-2 {
    margin-top: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mt-auto {
    margin-top: auto !important;
}

/* Margin End (Right in LTR) */
.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.25rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.me-3 {
    margin-right: 1rem !important;
}

.me-4 {
    margin-right: 1.5rem !important;
}

.me-5 {
    margin-right: 3rem !important;
}

.me-auto {
    margin-right: auto !important;
}

/* Margin Bottom */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

/* Margin Start (Left in LTR) */
.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.ms-3 {
    margin-left: 1rem !important;
}

.ms-4 {
    margin-left: 1.5rem !important;
}

.ms-5 {
    margin-left: 3rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

/* Padding */
.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

/* Padding Top */
.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.25rem !important;
}

.pt-2 {
    padding-top: 0.5rem !important;
}

.pt-3 {
    padding-top: 1rem !important;
}

.pt-4 {
    padding-top: 1.5rem !important;
}

.pt-5 {
    padding-top: 3rem !important;
}

/* Padding End (Right in LTR) */
.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.25rem !important;
}

.pe-2 {
    padding-right: 0.5rem !important;
}

.pe-3 {
    padding-right: 1rem !important;
}

.pe-4 {
    padding-right: 1.5rem !important;
}

.pe-5 {
    padding-right: 3rem !important;
}

/* Padding Bottom */
.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.25rem !important;
}

.pb-2 {
    padding-bottom: 0.5rem !important;
}

.pb-3 {
    padding-bottom: 1rem !important;
}

.pb-4 {
    padding-bottom: 1.5rem !important;
}

.pb-5 {
    padding-bottom: 3rem !important;
}

/* Padding Start (Left in LTR) */
.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.25rem !important;
}

.ps-2 {
    padding-left: 0.5rem !important;
}

.ps-3 {
    padding-left: 1rem !important;
}

.ps-4 {
    padding-left: 1.5rem !important;
}

.ps-5 {
    padding-left: 3rem !important;
}
.rounded-lg{
    border: 8px;
}
.aspict-ration-2-3{
    aspect-ratio: 2 / 3;
}
.brand-slide__cta{
    text-align:center;
}
.offer-nav-text{
     font-size:15px
}
/* Responsive for max-md:rounded-lg */
@media (max-width: 768px) {
    .hero__text{
        text-align : center;
    }
    .panel-side{
        display:none;  
    }
    .container.topbar__inner{
        padding:0;
    }
    .offer-nav-text{
        font-size:unset
    }
}


