/*! SNOOQ · indian aesthetic — main stylesheet */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #faf7f2;
    font-family: 'Outfit', sans-serif;
    color: #2c241e;
    line-height: 1.4;
    overflow-x: hidden;
    width: 100%;
}

::selection {
    background: #c8512b;
    color: #faf7f2;
}

.container {
    padding: 1.2rem 1.2rem 5rem;
    max-width: 100%;
    margin: 0 auto;
}

/* === MOBILE HEADER === */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 1rem;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #b65f3a;
    text-transform: uppercase;
    cursor: pointer;
}

.logo span {
    font-size: 1rem;
    font-weight: 300;
    color: #7d5f4b;
    margin-left: 0.3rem;
}

.right-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a3f38;
    cursor: pointer;
    position: relative;
}

.icon-btn:hover {
    color: #b65f3a;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #b65f3a;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    min-width: 20px;
    text-align: center;
}

/* === FULLSCREEN MOBILE MENU === */
.menu-overlay {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #faf7f2;
    z-index: 1000;
    border-bottom: 2px solid #b65f3a;
    padding: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.menu-overlay.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.menu-cat p {
    font-weight: 600;
    color: #b65f3a;
    margin-bottom: 0.5rem;
}

.menu-cat ul {
    list-style: none;
}

.menu-cat li {
    margin-bottom: 0.8rem;
}

.menu-cat a {
    text-decoration: none;
    color: #2c241e;
    transition: 0.2s;
}

.menu-cat a:hover {
    color: #b65f3a;
    padding-left: 5px;
}

.menu-account {
    margin-top: 2rem;
    border-top: 1px solid #dacfc4;
    padding-top: 1.5rem;
}

.account-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.account-row a {
    text-decoration: none;
    color: #4a3f38;
    transition: 0.2s;
}

.account-row a:hover {
    color: #b65f3a;
}
.admin-link {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #dacfc4;
    text-align: center;
}

.admin-link a {
    color: #b65f3a;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.admin-link a:hover {
    color: #2c241e;
}
/* === CATEGORY SCROLL === */
.category-scroll {
    display: flex;
    overflow-x: auto;
    gap: 0.8rem;
    padding: 1rem 0 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
    display: none;
}

.cat-item {
    background: #ffffff;
    border: 1px solid #e2d6ca;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4a3f38;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.2s;
}

.cat-item i {
    color: #b65f3a;
}

.cat-item.active {
    background: #b65f3a;
    color: white;
}

.cat-item.active i {
    color: white;
}

/* === HERO === */
.hero {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 1rem 0 2.5rem;
    background: linear-gradient(145deg, #f0e8de, #faf7f2);
    padding: 1.5rem 1.2rem;
    border-radius: 40px;
    border: 1px solid #e2d6ca;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-text h1 span {
    display: block;
    font-weight: 300;
    font-size: 0.5em;
    color: #b65f3a;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.hero-desc {
    font-size: 1rem;
    color: #5f4c3d;
    margin: 1rem 0 1.5rem;
    border-left: 3px solid #b65f3a;
    padding-left: 1.2rem;
}

.btn {
    background: #b65f3a;
    border: none;
    color: white;
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 5px 5px 0 #7d5f4b;
    transition: 0.2s;
    border-radius: 0;
}

.btn:hover {
    background: #2c241e;
    box-shadow: 5px 5px 0 #b65f3a;
    transform: translate(-2px, -2px);
}

.btn-outline {
    background: none;
    border: 1px solid #4a3f38;
    padding: 0.6rem 1.8rem;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 1rem;
    transition: 0.2s;
}

.btn-outline:hover {
    background: #b65f3a;
    color: white;
    border-color: #b65f3a;
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 280px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 20px 20px 30px -12px rgba(110,70,40,0.3);
    background: #e2d6ca;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === SECTION TITLES === */
.section-title {
    font-size: 2rem;
    font-weight: 500;
    margin: 2.5rem 0 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-bottom: 2px solid #b65f3a;
    padding-bottom: 0.6rem;
}

.section-title span {
    background: #b65f3a;
    color: white;
    font-size: 0.8rem;
    padding: 0.2rem 1rem;
    border-radius: 30px;
    margin-left: auto;
}

/* === FILTER SECTION === */
.filter-section {
    background: #ffffff;
    border: 1px solid #e2d6ca;
    border-radius: 60px;
    padding: 0.8rem 1.2rem;
    margin: 1.5rem 0 1.8rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
}

.filter-label {
    font-weight: 600;
    color: #b65f3a;
    font-size: 0.9rem;
    margin-right: 0.3rem;
}

.filter-chip {
    background: #f0e8de;
    border: none;
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a3f38;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}

.filter-chip:hover {
    background: #b65f3a;
    color: white;
}

.filter-chip.active {
    background: #b65f3a;
    color: white;
}

.filter-chip i {
    margin-right: 0.3rem;
    font-size: 0.8rem;
}

.filter-clear {
    color: #7d5f4b;
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
    white-space: nowrap;
    padding: 0.4rem 0.8rem;
}

/* === PRODUCT GRID === */
.product-grid, .all-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin: 1.5rem 0 2rem;
}

.product-item {
    background: #ffffff;
    border: 1px solid #e8ddd2;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.2s;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-3px);
    border-color: #b65f3a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #7d5f4b;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    z-index: 2;
}

.badge.offer {
    background: #c73b2b;
}

.badge.new {
    background: #2b6c5e;
}

.badge.bestseller {
    background: #b65f3a;
}

.product-image {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #f0e8de;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1rem 0.8rem 1.2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.price {
    font-size: 1rem;
    color: #7d5f4b;
    margin-bottom: 0.8rem;
}

.old-price {
    text-decoration: line-through;
    color: #b19782;
    font-size: 0.85rem;
    margin-right: 0.3rem;
}

.shop-action {
    background: transparent;
    border: 1px solid #4a3f38;
    padding: 0.4rem 1.2rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s;
    margin-top: auto;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.shop-action:hover {
    background: #b65f3a;
    color: white;
    border-color: #b65f3a;
}

/* === BANNER - IMAGE FULL BOX WITH TEXT OVERLAY === */
.fashion-banner {
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #b65f3a;
    box-shadow: 5px 5px 0 #7d5f4b;
    position: relative;
    height: 300px;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 2rem 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.banner-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.banner-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.banner-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.banner-tags span {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
}

/* === INFINITE SCROLLER === */
.infinite-scroll-section {
    margin: 2.5rem 0;
    overflow: hidden;
    background: #e5dbd0;
    padding: 1.5rem 0;
    border-top: 2px solid #b65f3a;
    border-bottom: 2px solid #b65f3a;
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: scrollLoop 18s linear infinite;
}

.scroll-item {
    display: flex;
    align-items: center;
    background: #faf7f2;
    padding: 0.5rem 1.5rem;
    margin-right: 2rem;
    border: 1px solid #4a3f38;
    border-radius: 40px;
    gap: 0.8rem;
    white-space: nowrap;
}

.scroll-item i {
    color: #b65f3a;
}

@keyframes scrollLoop {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === LOOKBOOK === */
.lookbook-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0 3rem;
}

.lookbook-card {
    background: #efe7de;
    border: 1px solid #b65f3a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 5px 0 #7d5f4b;
}

.lookbook-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #d6c9bc;
}

.lookbook-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lookbook-content {
    padding: 1.5rem;
}

.lookbook-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.lookbook-content i {
    font-size: 2rem;
    color: #b65f3a;
    margin-bottom: 0.5rem;
}

/* === FEATURE ROW === */
.feature-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin: 2.5rem 0;
}

.feature-block {
    background: #f0e9e0;
    padding: 1.8rem 1.5rem;
    border: 1px solid #c7ab8b;
    border-radius: 20px;
    text-align: center;
}

.feature-block i {
    font-size: 2rem;
    color: #b65f3a;
    margin-bottom: 0.5rem;
}

.feature-block h4 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feature-block button {
    margin-top: 1rem;
    background: none;
    border: 1px solid #4a3f38;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
}

.feature-block button:hover {
    background: #b65f3a;
    color: white;
}

/* === BOTTOM POPUP === */
.bottom-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 2px solid #b65f3a;
    padding: 0.6rem 1.5rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}

.bottom-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #4a3f38;
    cursor: pointer;
    transition: 0.2s;
    padding: 0.3rem 0;
}

.bottom-icon i {
    font-size: 1.4rem;
}

.bottom-icon span {
    font-size: 0.7rem;
    margin-top: 0.2rem;
    font-weight: 500;
}

.bottom-icon:hover {
    color: #b65f3a;
    transform: translateY(-2px);
}

.bottom-icon.active {
    color: #b65f3a;
}

/* === NEWSLETTER & FOOTER === */
.newsletter {
    background: #f0e9e0;
    padding: 2rem 1.5rem;
    margin: 2.5rem 0;
    border: 1px solid #b65f3a;
    border-radius: 20px;
}

.newsletter h3 {
    font-size: 1.8rem;
    text-align: center;
    text-transform: uppercase;
}

.newsletter-flex {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.newsletter-flex input {
    padding: 1rem 1.2rem;
    background: #fdfbf8;
    border: 1px solid #4a3f38;
    border-radius: 30px;
    font-size: 1rem;
    outline: none;
}

.newsletter-flex button {
    background: #b65f3a;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.2s;
}

.newsletter-flex button:hover {
    background: #2c241e;
}

footer {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding: 1.5rem 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.socials {
    display: flex;
    gap: 1.5rem;
}

.socials i {
    font-size: 1.5rem;
    color: #4a3f38;
    cursor: pointer;
    transition: 0.2s;
}

.socials i:hover {
    color: #b65f3a;
}

/* === BREADCRUMB === */
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
    font-size: 0.85rem;
    color: #7d5f4b;
}

.breadcrumb a {
    color: #7d5f4b;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #b65f3a;
}

/* === LOADING SPINNER === */
.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f0e8de;
    border-top: 3px solid #b65f3a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* === TABLET UPGRADES === */
@media screen and (min-width: 600px) {
    .container { padding: 1.5rem 2rem 5rem; }
    .product-grid, .all-products-grid { grid-template-columns: repeat(3, 1fr); }
    .lookbook-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-row { grid-template-columns: repeat(3, 1fr); }
    .hero { flex-direction: row; align-items: center; }
    .hero-text h1 { font-size: 3.5rem; }
    .fashion-banner { height: 350px; }
    .banner-content h2 { font-size: 2.5rem; }
}

/* === DESKTOP UPGRADES === */
@media screen and (min-width: 1024px) {
    .container { max-width: 1200px; }
    .product-grid, .all-products-grid { grid-template-columns: repeat(4, 1fr); }
    .hero-text h1 { font-size: 4rem; }
}