﻿body{
     font-family: 'Baloo 2', cursive;
}

/*Category*/
.category-section {
    position: relative;
    background: #FFF0CC;
    padding: 80px 0 60px;
    overflow: hidden;
}
.category-slider .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 100%; 
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 70px;
    color: #000;
}

.category-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.category-card {
    text-align: center;
    transition: .4s;
}
.category-card a{
    text-decoration:none;
    color:#111;
}

.category-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;

    border-radius: 35px;
    clip-path: polygon(
        15% 0%, 85% 0%,
        100% 15%, 100% 85%,
        85% 100%, 15% 100%,
        0% 85%, 0% 15%
    );

    transition: .4s;
}

.category-card h4 {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 600;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

/* Decorative Images */

.floating {
    position: absolute;
    z-index: 1;
}

.rocket {
    width: 75px;
    left: 20px;
    top: 1%;
}

.boy {
    width: 100px;
    right: 20px;
    top: 0;
}

.panda {
    width: 180px;
    left: -20px;
    bottom: 50px;
}
/* Container that hides the extra 5 boxes */
.slider-container {
    width: calc(((150px + 35px) * 6) - 35px); 
    overflow: hidden;
    margin: 0 auto;
    flex-shrink: 0;
}

/* The actual long row of 11 boxes */
.slider-track {
    display: flex;
    gap: 35px;
    transition: transform 0.5s ease-in-out; /* Smooth sliding effect */
}

/* Ensure buttons don't shrink */
.slider-btn {
    flex-shrink: 0;
    z-index: 10;
}

/* Bottom Wave */

.wave-divider {
    position: absolute;
    left: 0;
    bottom: -1%;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 160px;
}


/*Bundle section*/
.bundles-section {
    padding: 60px 0;
    text-align: center;
    background: #ffffff;
}
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

/* Slider Viewport Window Wrapper */
.slider-window {
    width: 100%;
    overflow: hidden;
    cursor: pointer;
    user-select: none; /* Prevents text highlighting during drag */
}

/* The horizontal long line track holding all items */
.slide-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth snapping bounce effect */
    will-change: transform;
}

/* Forces exactly 5 items into view based on the width minus gaps */
.bundle-card {
    flex: 0 0 calc((100% - (20px * 4)) / 5);
    text-align: center;
    box-sizing: border-box;
}

.card-img-container {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    overflow: hidden;
    background: #f7f7f7;
    margin-bottom: 15px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}


.bundle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

/* Hover Zoom effect matching your scale request */
.bundle-card:hover .bundle-img {
    transform: scale(1.1);
}

.bundle-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 10px 0 5px;
    color: #333;
}
.bundle-card .price {
    font-weight: 700;
    color: #ff5722;
    font-size: 1.1rem;
}

/*Top pics*/
.promo-section { padding: 50px 0; background: #fff; }

.promo-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* LEFT BANNER */
.promo-banner {
    flex: 0 0 45%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.promo-banner img {
    width: 100%;
    display: block;
    border-radius: 30px;
}

.banner-content {
    position: absolute;
    top: 50px;
    left: 40px;
}

.banner-content h2 { font-size: 3rem; margin: 8px 0; color: #111;}
.shop-now-btn {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
}
.top-picks-text{
    color:#666;
    text-align:center;
    margin-bottom:30px;
}

/* RIGHT PRODUCT GRID */
.promo-products { flex: 1; }
.grid-title { 
   font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-align:center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-item {
    text-align: center;
    position: relative;
}

/* Dotted Border Box for Image */
.prod-img-box {
    border: 2px dashed #f39c12; /* Match the orange dotted line in your pic */
    border-radius: 25px;
    padding: 10px;
    margin-bottom: 15px;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.prod-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Tags & Typography */
.discount-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e67e22;
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 10px;
    z-index: 2;
}

.product-item h5 { font-size: 0.9rem; color: #444; margin: 10px 0 5px; }
.price { color: #e74c3c; font-weight: bold; font-size: 1rem; }
.old-price { 
    text-decoration: line-through; 
    color: #aaa; 
    font-size: 0.8rem; 
    margin-left: 5px; 
}

/*steel box*/
.lunchbox-section {
    padding: 60px 0;
    background-color: #ffffff;
    text-align: left; /* Left aligned titles like your screenshot */
}

.section-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111111;
    margin: 0 0 8px 0;
}

.section-sub-text {
    font-size: 1.05rem;
    color: #666666;
    margin: 0 0 40px 0;
}

/* 4 COLUMN GRID CONFIGURATION */
.lunchbox-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Forces exactly 4 cards in a row */
    gap: 35px 20px; /* 35px spacing between rows, 20px spacing between columns */
}

.lunchbox-card {
    text-align: left; /* Image/text alignments match screenshot */
    position: relative;
}

/* THE ORANGE DASHED BORDER WINDOW */
.image-frame {
    border: 2px dashed #ffb703; /* Bright dash-line borders */
    border-radius: 28px;
    padding: 12px;
    margin-bottom: 15px;
    aspect-ratio: 1 / 1; /* Keeps every image container perfectly square */
    overflow: hidden; /* Clips the images safely when scaling to 1.1 */
    position: relative;
    background-color: #ffffff;
}

/* IMAGE SETTINGS */
.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    display: block;
}

/* SECOND IMAGE POSITIONING */
.image-frame .hover-img {
    position: absolute;
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    opacity: 0; /* Keeps hover image hidden naturally */
    z-index: 2;
}

/* EFFECT HOVER: SCALE 1.1 + SOURCE IMAGE SWAP AT ONCE */
.lunchbox-card:hover .image-frame img {
    transform: scale(1.1); /* Magnifies the image 10% */
}

.lunchbox-card:hover .image-frame .hover-img {
    opacity: 1; /* Cross-fades the alternate image into view */
}

/* BADGES (ORANGE & YELLOW-GREY FOR SOLD OUT) */
.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #ff6f22; /* Vibrant orange badge */
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 12px;
    z-index: 3;
}

.discount-badge.sold-out {
    background-color: #e2a014; /* Darker yellow/orange tone for Sold Out items */
}

/* TYPOGRAPHY */
.lunchbox-card h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: #111111;
    margin: 0 0 6px 0;
    line-height: 1.4;
}

.price-container {
    margin: 0;
    font-size: 0.95rem;
}

.saleprice {
    color: #ff5722; /* Pinkish-red price */
    font-weight: 700;
    margin-right: 6px;
}

.mrp-text {
    color: #777777;
    font-size: 0.78rem;
}

.mrp-text .line-strike {
    text-decoration: line-through;
}

/* Responsive breakpoint for tablets */
@media (max-width: 992px) {
    .lunchbox-grid {
        grid-template-columns: repeat(2, 1fr); /* drops down to 2 columns on tablets */
    }
}

/*Why choose*/

.features-section {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* CENTERED HEADER CONTROLS */
.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #111111;
    margin: 0 0 12px 0;
}

.features-header p {
    font-size: 1.05rem;
    color: #666666;
    margin: 0;
}

/* SPLIT FLEX ROW BLOCK */
.features-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* LEFT COLUMN: ORGANIC BLOB IMAGE */
.features-image-wrapper {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blob-image {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    /* Uses CSS border-radius mapping to recreate your exact asymmetrical organic blob shape */
    border-radius: 42% 58% 40% 60% / 45% 45% 55% 55%;
    object-fit: cover;
}

/* RIGHT COLUMN: LIST STACK */
.features-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px; /* Vertical gap between item segments */
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 25px; /* Spacing between icon and its right texts */
}

/* CREAM ROUNDED SQUARE ICON BOXES */
.feature-icon-box {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    background-color: #fef4db; /* Light cream yellow color match */
    border-radius: 20px;       /* Smooth squircle corner styling */
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 18px;
}

/* SVG Line Icons inside Boxes */
.feature-icon-box svg {
    width: 100%;
    height: 100%;
    color: #333333; /* Clean dark gray stroke outline */
}

/* FEATURE ITEM TEXT DESCRIPTION block */
.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111111;
    margin: 0 0 8px 0;
}

.feature-text p {
    font-size: 1rem;
    color: #444444;
    line-height: 1.55;
    margin: 0;
}

/* RESPONSIVE DESIGN BREAKPOINTS */
@media (max-width: 992px) {
    .features-row {
        flex-direction: column; /* Stack vertically on smaller monitors/tablets */
        gap: 40px;
    }
    .features-image-wrapper {
        width: 100%;
    }
    .blob-image {
        max-width: 380px;
    }
}

/*Reviews*/

.reviews-section {
    position: relative;
    background-color: #f39c12; /* Your exact rich orange color choice */
    padding-bottom: 100px;
    margin-top: 100px; /* Leaves clean breathing room below the section above */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
}

/* FIX 1: CRITICAL REWRITE FOR THE TOP WAVE DIVIDER */
/* This builds a seamless curving arc using border-radius that will never break or break layout bounds */
.reviews-wave-top {
    position: absolute;
    top: -80px; /* Slides it upwards into the white section above */
    left: -10%;
    width: 120%; /* Bleeds off screen slightly to guarantee no edge lines appear */
    height: 120px;
    background-color: #f39c12;
    border-radius: 50% 50% 0 0; /* Creates the perfect smooth organic wave curve */
    z-index: 1;
}

.reviews-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
    z-index: 2; /* Forces headings and card layouts to sit firmly above the base background shapes */
}

/* CENTER HEADER TIMINGS */
.reviews-header {
    text-align: center;
    margin-bottom: 110px; /* Essential gap so profile bubbles don't slam into headings */
}

.reviews-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #111111;
    margin: 0 0 12px 0;
}

.reviews-header p {
    font-size: 1.1rem;
    color: #222222;
    font-weight: 500;
    margin: 0;
}

/* THREE CARD FLEXBOX LAYOUT CONTAINER */
.reviews-cards-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
}

/* FIX 2: STABLE PARENT CONTAINER FOR ABSOLUTE AVATARS */
.review-card {
    flex: 1;
    position: relative; /* CRUCIAL: Anchors absolute child tags inside this specific bounding box boundary */
    background-color: #d81b60; /* Deep Pink/Magenta background choice */
    border-radius: 35px;
    box-sizing: border-box;
    margin-top: 20px;
}

/* FIXED POSITION AVATAR ELEMENT */
.avatar-container {
    position: absolute;
    top: -55px; /* Safely balances exactly 50% outside the upper card block perimeter */
    left: 50%;
    transform: translateX(-50%); /* Keeps circles perfectly locked to center line metrics */
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 5px solid #d81b60; /* Thick matching card-border wrap padding layer */
    overflow: hidden; /* Clips incoming source image elements flawlessly into round configurations */
    background-color: #ffffff; /* Fallback base background highlight color */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Forces standard portraits to span entire box cleanly without layout squishing */
    display: block;
}

/* CARD INNER TEXT LAYOUT WRAPPERS */
.card-body {
    padding: 75px 30px 40px 30px; /* Generous 75px top spacing pushes text layout nicely clear of profile bubbles */
    text-align: left;
    box-sizing: border-box;
}

.parent-name {
    font-size: 1rem;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    margin: 0 0 5px 0;
}

.star-rating {
    color: #ffca28; /* Warm gold icon star colors */
    font-size: 1.1rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.feedback-text {
    font-size: 0.95rem;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* RESPONSIVE HANDLING RULES */
@media (max-width: 992px) {
    .reviews-cards-row {
        flex-direction: column; /* Stack vertically cleanly for tablet devices */
        gap: 95px; /* Expands spatial grid layouts so stacked profile elements never collide */
    }
}

/*Contact page*/
/* GLOBAL RESETS */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    color: #333333;
}

/* CONTAINER AND LAYOUT STRUCTURES */
.contact-section {
    padding: 80px 0;
    position: relative;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px; /* Spacing gap between left info panel and right form box */
}

/* LEFT COLUMN DETAILS ARCHITECTURE */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #111111;
    margin: 0 0 15px 0;
}

.contact-info p {
    font-size: 1.05rem;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.info-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* CREAM RETAINED ROUNDED SQUIRCLE EMBLEMS */
.info-icon-box {
    width: 52px;
    height: 52px;
    background-color: #fff0cc; /* Pale soft warm cream yellow highlight tint */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon-box svg {
    width: 24px;
    height: 24px;
    color: #e76c00; /* Signature dark orange brand color */
}

.info-text span {
    display: block;
    font-size: 0.88rem;
    color: #777777;
    font-weight: 500;
    margin-bottom: 2px;
}

.info-text strong {
    font-size: 1.08rem;
    color: #111111;
}

/* RIGHT COLUMN INPUT PANEL BOX */
.contact-form-wrapper {
    flex: 1;
    background-color: #fefbf4; /* Warm-white content card base */
    border: 2px solid #fff0cc;
    border-radius: 32px;
    padding: 45px;
    box-shadow: 0 12px 35px rgba(231, 108, 0, 0.03);
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

/* DESIGN FOR ASP LOGO STYLED LABELS */
.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #444444;
    margin-bottom: 8px;
}

/* FORM TEXTBOX RULES */
.form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 2px solid #e2e2e2;
    border-radius: 15px;
    background-color: #ffffff;
    color: #333333;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    border-color: #e76c00; /* Focus ring shifts to warm orange theme accent */
    box-shadow: 0 0 0 4px rgba(231, 108, 0, 0.08);
}

/* TEXTAREA SPECIFIC VARIATION OVERRIDE RULES */
textarea.form-input {
    resize: vertical;
    font-family: inherit;
}

/* SOLID ACTION COMPONENT ACTIONS BUTTON */
.submit-button {
    width: 100%;
    background-color: #d81b60; /* Matches deep magenta review cards base hue */
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(216, 27, 96, 0.25);
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.submit-button:hover {
    background-color: #c2185b;
}

.submit-button:active {
    transform: scale(0.99);
}

/* CALLBACK FEEDBACK MESSAGE CONTAINER TYPOGRAPHY RULES */
.status-message {
    display: block;
    margin-top: 18px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

/* TABLET AND LAPTOP DISPLAY CONVERSIONS */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column; /* Fall down vertically cleanly on narrow views */
        gap: 50px;
    }
    .contact-info h2 {
        font-size: 2.2rem;
    }
    .contact-form-wrapper {
        padding: 30px;
    }
}

/*Product page*/
.sidebar{
    width:300px;
    flex-shrink:0;
    position:sticky;
    top:5%; /* Adjust if your header height differs */

    max-height:100vh;
    overflow-y:auto;

    scrollbar-width:none;      /* Firefox */
    -ms-overflow-style:none;  

    padding-right:20px;
    border-right:1px dashed #ff8c00;
}
.sidebar::-webkit-scrollbar{
    display:none;              /* Chrome/Safari */
}

.collection-page{
    display:flex;
    gap:50px;
    padding:50px;
    align-items:flex-start;
}

.sidebar h2{
    margin-bottom:30px;
}

.category-list{
    list-style:none;
    padding:0;
}

.category-list li{
    margin-bottom:15px;
}

.category-list a{
    text-decoration:none;
    color:#333;
}

.filter-title{
    margin-top:50px;
}

.filter-box{
    margin-top:25px;
}

.filter-box h4{
    margin-bottom:15px;
}

.filter-box label{
    display:block;
    margin-bottom:10px;
}

.products-section{
    flex:1;
    min-width:0;
}

.top-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.view-icons{
    display:flex;
    gap:10px;
}

.view-icons button{
    width:45px;
    height:45px;
    border:none;
    background:#ef7d00;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
}

.top-bar select{
    padding:12px 18px;
    border:1px dashed #ef7d00;
    border-radius:10px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(180px,1fr));
    gap:30px;
}

.product-card{
    text-align:center;
}

.product-image{
    position:relative;
    overflow:hidden;
    border-radius:25px;
    border:1px dashed #ef7d00;
}

.product-image img{
    width:100%;
    display:block;
    transition:.4s;
}

.hover-img{
    position:absolute;
    inset:0;
    opacity:0;
}

.product-card:hover .hover-img{
    opacity:1;
}

.product-card:hover .main-img{
    opacity:0;
}

.badge{
    position:absolute;
    top:15px;
    left:15px;
    background:#ef7d00;
    color:#fff;
    padding:8px 14px;
    border-radius:20px;
    z-index:2;
    font-size:12px;
}

.action-icons{
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    gap:10px;
    opacity:0;
    transition:.3s;
}

.product-card:hover .action-icons{
    opacity:1;
}

.action-icons a{
    width:42px;
    height:42px;
    background:#ef7d00;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
}

.product-card h4{
    margin-top:15px;
    font-size:20px;
}

.price{
    color:#ff5722;
    font-weight:700;
    margin-top:8px;
}

.mrp{
    color:#777;
    margin-top:5px;
}

.products-footer{
    text-align:center;
    margin-top:50px;
    color:#555;
}

@media(max-width:992px){

    .collection-page{
        flex-direction:column;
    }

    .sidebar{
        width:100%;
        position:static;
        height:auto;
        overflow:visible;
        border-right:none;
        padding-right:0;
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:576px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .top-bar{
        flex-direction:column;
        gap:15px;
    }
}

.bread img{
    width:100%;
    height:auto;
    object-fit:cover;
}

/*Login modal*/
.auth-modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    z-index:99999;
}

.auth-content{
    width:420px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.close-modal{
    position: absolute;
  font-size: 25px;
  cursor: pointer;
  right: 3%;
  top: 2%;
}

.auth-tabs{
    display:flex;
    gap:10px;
    margin-bottom:25px;
}

.tab-btn{
    flex:1;
    border:none;
    padding:12px;
    cursor:pointer;
    border-radius:8px;
}

.tab-btn.active{
    background:#ffe6abba;
    color:#111;
}

.auth-input{
    width:100%;
    margin-bottom:15px;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
}

.auth-btn{
    width:100%;
    background:#8a133f;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    cursor:pointer;
}

/*Productdetails page*/
.product-detail-wrap{
    margin-top:40px;
}

.product-gallery{
    text-align:center;
}

.main-product-img{
    width:100%;
    max-height:550px;
    object-fit:cover;
    border-radius:15px;
    border:1px solid #eee;
}

.thumbnail-wrap{
    display:flex;
    justify-content:center;
    gap:12px;
    margin-top:15px;
}

.thumb-img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    border:2px solid #ddd;
    transition:.3s;
}

.thumb-img:hover{
    border-color:#ff5c00;
}

.active-thumb{
    border-color:#ff5c00;
}

.product-info{
    padding-left:30px;
}

.category{
    color:#777;
    font-size:14px;
}

.product-title{
    font-size:36px;
    font-weight:700;
    margin:10px 0;
}

.price-section{
    margin:0px 0;
}

.sale-price{
    font-size:40px;
    font-weight:700;
    color:#ff5c00;
}

.mrp-price{
    text-decoration:line-through;
    color:#888;
    font-size:22px;
}

.discount{
    background:#28a745;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    margin-left:15px;
    font-size:14px;
}

.size-btn{
    display:inline-block;
    padding:10px 20px;
    border:1px solid #ddd;
    border-radius:8px;
    margin:5px;
    background:#fff;
    color:#000;
    text-decoration:none;
}

.size-btn:hover{
    background:#000;
    color:#fff;
}

.qty-box{
   display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 10px;
}

.qty-input{
    width:120px;
    margin-top:10px;
}

.btn-area{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.btn-add-cart{
    background:#000;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:8px;
    font-weight:600;
}

.btn-buy-now{
    background:#ff5c00;
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:8px;
    font-weight:600;
}

.btn-buy-now:hover{
    color:#fff;
}

.product-description{
    margin-top:40px;
}

.product-description h4{
    font-weight:700;
    margin-top:20px;
}

.product-description p{
    line-height:1.1;
    color:#555;
}

@media(max-width:991px){

    .product-info{
        padding-left:0;
        margin-top:30px;
    }

    .product-title{
        font-size:28px;
    }

    .sale-price{
        font-size:30px;
    }

    .btn-area{
        flex-direction:column;
    }

    .btn-add-cart,
    .btn-buy-now{
        width:100%;
        text-align:center;
    }
}