@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fafafa;
    color: #222;
    overflow-x: hidden;
}

a {
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    font-size: 12px;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    color: #FFBABE;
}

.announcement-bar {
    background-color: #111;
    color: #853C54;
    text-align: center;
    padding: 10px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
}

/* Header UI */
.main-header {
    background: #853C54;
    /* border-bottom: 1px solid #f0f0f0; */
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
}

.nav-links a {

    color: white;
    margin-right: 30px;
    font-weight: 500;
}

.nav-links a:hover {
    color: #853C54;
}

.logo a {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 6px;
}

.header-icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
}

.icon-link {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #111;
    color: #853C54;
    font-size: 9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: #853C54;
    box-shadow: 5px 0 15px rgba(0,0,0,0.05);
    z-index: 250;
    display: flex;
    flex-direction: column;
    transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-nav-drawer.open { left: 0; }
.drawer-header {
    padding: 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.close-drawer { background: transparent; border: none; font-size: 20px; cursor: pointer; }
.mobile-drawer-links { display: flex; flex-direction: column; padding: 30px; gap: 25px; }
.mobile-drawer-links a { font-size: 15px; font-weight: 500; }
.drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); z-index: 240; display: none; }
.drawer-overlay.open { display: block; }

/* 1. Hero Layout */
.hero-section {
    height: 75vh;
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.4)), url('./Img/Untitled\ design.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.hero-content{
    margin-top: 200px;
}
.hero-content h2 {
    color: white;
    font-size: 46px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 300;
    background-color: #853c546f;
    border-radius: 20px;
}

.hero-content p {
    color: white;
    font-size: 20px;
    margin-bottom: 35px;
    letter-spacing: 1px;
    max-width: 600px;
    line-height: 1.6;
    background-color: #853c546f;
    border-radius: 20px;
    padding: 4px;
}

.btn-primary {
    background: #853c546f;
    color: white;
    padding: 14px 40px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s;
    border-radius: 20px;
}

/* .btn-primary:hover {
    background: #444;
} */

/* 2. Our Story Layout */
.story-section {
    background: white;
    padding: 80px 20px;
    border-bottom: 1px solid #f5f5f5;
}

.story-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.story-block h2 {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
}

.story-block h3 {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #777;
}

.story-block p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* 3. Bubble Intro Segment */
.collection-intro {
    background: #853C54;
    padding: 60px 20px;
    text-align: center;
}

.intro-content {
    max-width: 750px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 20px;
    letter-spacing: 4px;
    margin-bottom: 15px;
    color: white;
}

.intro-content p {
    font-size: 14px;
    line-height: 1.7;
    color: white;
}

/* 4 & 5. Store Architecture */
.store-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.section-header h2 {
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 5px 15px;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #999;
}

.filter-btn.active, .filter-btn:hover {
    color: #FFBABE;
    border-bottom: 1px solid #111;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.product-card {
    background: #853C54;
    display: flex;
    flex-direction: column;
    border: 1px solid #fdfdfd;
    border-radius: 0px 0px 30px 30px;

}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f7f7f7;
}

.product-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 30px 30px 0px 0px;
}

.hover-actions {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    transition: bottom 0.3s ease;
}

.product-card:hover .hover-actions { bottom: 0; }

.action-btn {
    flex: 1;
    background: #FFBABE;
    color: white;
    border: none;
    padding: 15px 5px;
    font-size: 11px;
    letter-spacing: 1px;
    cursor: pointer;
    text-transform: uppercase;
}

/* .action-btn:hover { background: #333; } */

.product-info {
    padding: 20px 10px;
    text-align: center;
}

.product-title {
    font-size: 13px;
    margin-bottom: 8px;
    color: white;
}

.product-price {
    font-weight: 600;
    font-size: 13px;
    color: white;
}

/* 6. Why NISSA Icon Layout */
.features-section {
    background: #853C54;
    padding: 60px 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item i {
    font-size: 24px;
    color: #555;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    color: white;
}

/* 7. Gift Frame Block */
.gift-section {
    padding: 90px 20px;
    text-align: center;
    background: hsl(53, 100%, 93%);
}

.gift-content max-width: 600px;
.gift-content h2 { font-size: 32px; font-weight: 300; margin-bottom: 15px; }
.gift-content p { font-size: 14px; color: #666; margin-bottom: 40px; line-height: 1.6; }
.gift-cta h3 { font-size: 14px; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; }
.btn-underline { border-bottom: 1px solid #111; padding-bottom: 5px; color: #111; font-weight: 600; }

/* Side Cart Base Drawer Styles */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background: #853C54;
    box-shadow: -5px 0 15px rgba(0,0,0,0.05);
    z-index: 200;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.cart-sidebar.open { right: 0; }
.cart-header { padding: 25px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.close-cart { background: transparent; border: none; font-size: 20px; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 25px; }
.empty-message { text-align: center; color: #777; margin-top: 40px; }
.cart-item { display: flex; gap: 15px; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #f5f5f5; align-items: center; }
.cart-item img { width: 70px; height: 90px; object-fit: cover; }
.item-details { flex: 1; }
.item-details h4 { font-size: 13px; margin-bottom: 5px; }
.remove-item-btn { background: transparent; border: none; color: #cc4444; cursor: pointer; font-size: 11px; margin-top: 5px; text-transform: uppercase; }
.cart-footer { padding: 25px; border-top: 1px solid #eee; }
.cart-total { display: flex; justify-content: space-between; font-weight: 600; margin-bottom: 20px; }
.checkout-btn { width: 100%; background: #111; color: #853C54; border: none; padding: 16px; font-weight: 600; letter-spacing: 1px; cursor: pointer; }
.cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); z-index: 150; display: none; }
.cart-overlay.open { display: block; }

/* Quick View Architecture */
.modal { position: fixed; top: 70px; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); color: white; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 20px; }
.modal.open { opacity: 1; pointer-events: auto; }
.modal-content { background: #853C54; width: 100%; max-width: 800px; padding: 30px; position: relative; max-height: 90vh; overflow-y: auto; border-radius: 20px; }
.close-modal { position: absolute; top: 15px; right: 15px; background: transparent; border: none; font-size: 22px; cursor: pointer; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.modal-img-container img { width: 100%; max-height: 450px; object-fit: cover;  border-radius: 20px;}
.modal-info-container { display: flex; flex-direction: column; justify-content: center; }
.modal-info-container h2 { font-size: 22px; margin-bottom: 10px; font-weight: 400; }
.modal-info-container .modal-price { font-size: 16px; font-weight: 600; margin-bottom: 15px; }
.modal-info-container p { font-size: 13px; line-height: 1.6; color: white; margin-bottom: 20px; }
.modal-meta-list { font-size: 12px; margin-bottom: 20px; list-style-position: inside; color: white; line-height: 1.8; }

/* Footer */
footer { background: #853C54; padding: 60px 30px 30px; border-top: 1px solid #eee; }
.footer-container { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center;}
.footer-col h4 { font-size: 13px; letter-spacing: 2px; margin-bottom: 20px; text-transform: uppercase; }
.footer-col p { font-size: 13px; color: white; line-height: 1.6; }
.footer-col .tagline { font-weight: 600; color: #111; margin-bottom: 5px; text-transform: uppercase; font-size: 11px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: whit; }
.footer-bottom { max-width: 1400px; margin: 50px auto 0; padding-top: 20px; border-top: 1px solid #eee; text-align: center; font-size: 11px; color: #aaa; }

/* ==========================================================================
   BREAKPOINTS: tablet layout (iPad)
   ========================================================================== */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .story-container { gap: 30px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .product-img { height: 300px; }
}

/* ==========================================================================
   BREAKPOINTS: mobile viewports
   ========================================================================== */
@media (max-width: 600px) {
    .header-container { padding: 15px 20px; }
    .logo a { font-size: 22px; letter-spacing: 3px; }
    .hero-section { height: 60vh; }
    .hero-content h2 { font-size: 32px; border-radius: 10px; }
    .story-container { grid-template-columns: 1fr; gap: 40px; }
    .story-block h2,h3 { text-align: center;}
    .section-header { flex-direction: column; gap: 15px; align-items: flex-start; }
    .filter-controls { width: 100%; display: flex; overflow-x: auto; padding-bottom: 5px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .product-img { height: 220px; }
    /* .hover-actions { position: static; display: flex; flex-direction: column; }
    .action-btn.quick-view-btn { display: none; } */
    .features-grid { grid-template-columns: 1fr; gap: 25px; }
    .modal-grid { grid-template-columns: 1fr; }
    .cart-sidebar { width: 100%; right: -100%; }
    .footer-container { grid-template-columns: 1fr; gap: 30px; text-align: center;}
    .hero-content{margin-top: 0px;}
    .modal{top: 80px;}
}


.hero-section1{
    background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.4)), url('./Img/123.PNG') center/cover no-repeat;

}
.hero-content1{
    margin-top: 0px;
    font-weight:bold;
    padding: 40px;
}
footer{
    color: white;
}
footer p{
    color: #FFBABE;
}
.footer-col p{
    color: #FFBABE;
}
.fa-solid::before , .fa-ban::before{
    color: #FFBABE;
}
.drawer-header h3{
    color: white;
}
.fa-xmark::before{
    color: white;
}