/* =========================================
   1. GLOBAL RESET & FONTS
========================================= */
@import url('https://fonts.googleapis.com/css2?family=Spartan:wght@100;200;300;400;500;600;700;800;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; }
html { scroll-behavior: smooth; }

:root {
    --primary: #088178;
    --dark: #1a1a1a;
    --light: #fff;
    --grey: #f4f4f4;
}

body { width: 100%; overflow-x: hidden; background-color: #f9f9f9; }

h1, h2, h3 { color: var(--dark); line-height: 1.2; }
p { color: #555; font-size: 16px; margin-bottom: 20px; }

/* =========================================
   2. KEYFRAME ANIMATIONS
========================================= */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes holographic {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    50% { transform: translateX(10px); }
    75% { transform: translateX(-10px); }
    100% { transform: translateX(0); }
}

@keyframes slideDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* =========================================
   3. NAVBAR & HEADER
========================================= */
#header {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    padding: 10px 60px; /* Compact padding */
    background: #fff; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    z-index: 999; 
    position: sticky; 
    top: 0; 
    left: 0;
    height: 80px; /* Fixed height */
}

/* Constrain Logo Size */
#header .logo {
    width: 140px; 
    height: auto;
}

/* Navbar List */
#navbar { display: flex; align-items: center; justify-content: center; }
#navbar li { list-style: none; padding: 0 15px; position: relative; }

/* Links Styling */
#navbar li a { 
    text-decoration: none; 
    font-size: 14px; 
    font-weight: 700; 
    color: #282c3f; 
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 5px; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#navbar li a:hover, #navbar li a.active { color: #088178; }

/* Sliding Underline Effect */
#navbar li a::after {
    content: ""; width: 0%; height: 3px; background: #088178;; /* Pink underline */
    position: absolute; bottom: -28px; left: 0; transition: 0.3s;
}
#navbar li a:hover::after, #navbar li a.active::after { width: 100%; }

/* Mobile Icons */
#mobile { display: none; align-items: center; }
#close { display: none; }


/* =========================================
   MODERN LOGIN MODAL (Myntra Style)
========================================= */

/* Override specific modal width for this design */
.login-container {
    padding: 0; /* Remove default padding to let banner sit flush */
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    border-radius: 4px; /* Sharper corners like the reference */
}

/* Banner Image at Top */
.login-banner {
    width: 100%;
    height: 140px;
    background-color: #fceeea; /* Soft background color */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-banner img {
    height: 100%;
    width: auto;
    opacity: 0.9;
}

/* Modal Body */
.login-body {
    padding: 30px 40px;
}

.login-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}
.login-title span {
    font-weight: 400;
    font-size: 16px;
    color: #555;
}

/* Mobile Input Styling */
.mobile-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #d4d5d9;
    border-radius: 2px;
    padding: 10px 15px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.mobile-input-group:focus-within {
    border-color: #333; /* Dark border on focus */
}

.country-code {
    font-size: 14px;
    color: #333;
    font-weight: 600;
}

.divider {
    color: #d4d5d9;
    margin: 0 10px;
}

#mobile-number {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}
/* Remove number spinners */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; margin: 0; 
}

/* Terms Text */
.legal-text {
    font-size: 12px;
    color: #94969f;
    margin-bottom: 25px;
    line-height: 1.5;
}
.legal-text a {
    color: #ff3e6c; /* Pink links */
    font-weight: 700;
    text-decoration: none;
}

/* Continue Button */
.btn-continue {
    width: 100%;
    background-color: #ff3e6c;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 12px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: 0.3s;
}
.btn-continue:hover {
    background-color: #e62e5c;
    box-shadow: 0 4px 8px rgba(255, 62, 108, 0.2);
}

/* Help Link */
.help-link {
    margin-top: 20px;
    font-size: 12px;
    color: #333;
    text-align: left;
}
.help-link a {
    color: #ff3e6c;
    font-weight: 700;
    text-decoration: none;
}
/* =========================================
   4. PROFILE DROPDOWN & ICONS (New Section)
========================================= */

/* Icon Stack (User/Bag Icons + Text) */
.icon-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.icon-stack i {
    font-size: 16px;
    margin-bottom: 2px;
    color: #333;
}

.icon-stack span {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    text-transform: capitalize; /* "Profile" not "PROFILE" */
}

/* Profile Container */
.profile-dropdown-container {
    position: relative;
    padding: 0 15px;
    height: 80px; /* Match navbar height */
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* Hover Effect for Profile Container */
.profile-dropdown-container:hover {
    border-bottom: 4px solid #088178;;
}
/* Disable default link underline for profile */
.profile-dropdown-container a::after { display: none !important; }

/* The Dropdown Box */
.profile-dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%;
    right: -20px; /* Align slightly right */
    width: 280px;
    background-color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    z-index: 1001;
    padding: 25px 0 15px 0;
    cursor: default;
    border: 1px solid #f0f0f0;
}

.profile-dropdown-container:hover .profile-dropdown-content {
    display: block;
}

/* Welcome Section */
.profile-welcome {
    padding: 0 20px 15px 20px;
    border-bottom: 1px solid #eaeaec;
}

.profile-welcome h3 {
    font-size: 16px;
    font-weight: 700;
    color: #3e4152;
    margin-bottom: 5px;
}

.profile-welcome p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    text-transform: none;
}

/* Pink Login Button */
.login-signup-btn {
    background: #fff;
    color: #088178;;
    border: 1px solid #eaeaec;
    font-weight: 700;
    padding: 10px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 2px;
}
.login-signup-btn:hover { border-color: #ff3e6c; }

/* Menu Links */
.profile-menu-list { padding: 10px 0; }
.profile-menu-list a {
    display: block;
    padding: 8px 20px;
    font-size: 14px !important;
    color: #3e4152 !important;
    text-transform: none !important;
    font-weight: 400 !important;
}
.profile-menu-list a:hover {
    color: #000 !important;
    font-weight: 700 !important;
}

.badge-new {
    color: #088178;;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 5px;
}

.separator { height: 1px; background-color: #eaeaec; margin: 5px 0; }

/* =========================================
   5. MEGA MENU STYLES
========================================= */
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: none;
    padding: 30px 80px;
    z-index: 1000;
    border-top: 4px solid #088178;;
    justify-content: space-between;
}

.mega-dropdown:hover .mega-menu {
    display: flex;
    animation: fadeUp 0.3s ease forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.mega-column {
    flex: 1; 
    padding: 0 20px;
    border-right: 1px solid #f0f0f0;
}
.mega-column:last-child { border-right: none; }

.mega-column h3 {
    font-size: 14px;
    font-weight: 700;
    color: #ee5f73;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.mega-column ul li { padding: 5px 0 !important; }
.mega-column ul li a {
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #555 !important;
    display: block;
    text-transform: none !important;
}
.mega-column ul li a:hover {
    color: #000 !important;
    font-weight: 600 !important;
    transform: translateX(5px);
}
.mega-column ul li a::after { display: none !important; }

.highlight-col {
    background-color: #fafafa;
    margin: -30px 0 -30px 0;
    padding: 30px 20px;
}

/* =========================================
   6. LOGIN MODAL
========================================= */
.modal-overlay {
    display: none; 
    position: fixed; z-index: 2000; left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff; margin: 10% auto; padding: 40px;
    border-radius: 15px; width: 90%; max-width: 400px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.3); position: relative;
    animation: slideDown 0.4s ease;
}

.close-modal {
    color: #aaa; float: right; font-size: 28px; font-weight: bold;
    cursor: pointer; position: absolute; right: 20px; top: 10px;
}
.close-modal:hover { color: #000; }

.login-header h2 { margin-bottom: 5px; color: #1a1a1a; }
.login-header p { margin-bottom: 20px; font-size: 14px; }
.input-group { margin-bottom: 15px; text-align: left; }
.input-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 14px; }
.input-group input { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; outline: none; }
.input-group input:focus { border-color: var(--primary); }

.btn-login {
    width: 100%; padding: 12px; background: var(--primary); color: white;
    border: none; border-radius: 5px; font-size: 16px; font-weight: 600;
    cursor: pointer; transition: 0.3s;
}
.btn-login:hover { background-color: #066e66; }
#error-msg { color: red; font-size: 13px; margin-top: 10px; text-align: center; }

/* =========================================
   7. HERO SECTION
========================================= */
#hero {
    width: 100%; height: 90vh;
    background-image: url("main/hero-1.jpg");
    background-size: cover; background-position: top 25% right 0;
    display: flex; align-items: center; padding: 0 6%;
}

.hero-content h6 { color: #c0392b; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.hero-content h1 { font-size: 60px; margin-bottom: 20px; font-family: 'Playfair Display', serif; }
.hero-content h1 span { color: var(--primary); }

.hero-btns { display: flex; gap: 20px; margin-top: 30px; flex-wrap: wrap; }

.btn-main {
    padding: 14px 40px; background: transparent; border: 2px solid #1a1a1a;
    color: #1a1a1a; text-decoration: none; font-weight: 600; 
    transition: 0.4s ease; position: relative; z-index: 1; overflow: hidden;
}
.btn-main::before {
    content: ""; position: absolute; top: 0; left: 0; width: 0%; height: 100%;
    background: #1a1a1a; z-index: -1; transition: 0.4s;
}
.btn-main:hover { color: #fff; }
.btn-main:hover::before { width: 100%; }

.btn-explore {
    padding: 14px 40px; background: transparent; color: #1a1a1a;
    text-decoration: none; font-weight: 600; font-size: 16px;
    border-bottom: 2px solid #1a1a1a; display: inline-flex;
    align-items: center; gap: 10px; transition: 0.3s ease;
}
.btn-explore i {
    font-size: 12px; padding: 8px; border-radius: 50%;
    background-color: #f0f0f0; transition: 0.3s ease;
}
.btn-explore:hover { color: var(--primary); border-color: var(--primary); padding-left: 10px; }
.btn-explore:hover i { background-color: var(--primary); color: #fff; transform: rotate(360deg); }

/* =========================================
   8. TRENDING SLIDER
========================================= */
#trending {
    position: relative;
    padding: 80px 80px;
    overflow: hidden;
    background: linear-gradient(to bottom, #fdfdfd, #f5f5f7);
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

#trending .section-header {
    margin-bottom: 50px; text-align: center;
}
#trending .section-header h2 {
    font-size: 42px; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; color: #1a1a1a;
}
#trending .section-header p {
    color: #555; font-size: 16px; font-weight: 500;
}

.slider-wrapper { position: relative; width: 100%; }

.product-container {
    padding: 20px 10px;
    display: flex; overflow-x: auto; scroll-behavior: smooth; gap: 40px;
}
.product-container::-webkit-scrollbar { display: none; }

.product-card {
    flex: 0 0 auto;
    width: 320px; height: 520px;
    background: #fff; border: 1px solid #f0f0f0; border-radius: 8px;
    transition: 0.4s ease; position: relative; overflow: hidden;
}
.product-card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.12); transform: translateY(-5px); }

.product-image { position: relative; width: 100%; height: 400px; overflow: hidden; }
.product-thumb { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.product-card:hover .product-thumb { transform: scale(1.05); }

.discount-tag {
    position: absolute; background: #ff3e6c; color: #fff;
    padding: 6px 12px; font-size: 13px; font-weight: 700;
    left: 15px; bottom: 15px; z-index: 2; border-radius: 2px;
}

.wishlist-btn {
    position: absolute; top: 15px; right: 15px;
    background: #fff; border: none; width: 45px; height: 45px;
    border-radius: 50%; color: #333; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; opacity: 0; transform: translateX(20px); transition: 0.3s;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.product-card:hover .wishlist-btn { opacity: 1; transform: translateX(0); }
.wishlist-btn:hover { color: #ff3e6c; }

.card-btn {
    position: absolute; bottom: -60px; left: 0; width: 100%;
    padding: 15px; background: #fff; border: none;
    border-top: 1px solid #eee; font-weight: 700; text-transform: uppercase;
    font-size: 14px; cursor: pointer; transition: 0.3s;
    color: #088178; z-index: 9;
}
.card-btn:hover { background: #088178; color: #fff; }
.product-card:hover .card-btn { bottom: 0; }

.product-info { padding: 15px 20px; }
.product-brand { font-size: 18px; font-weight: 800; margin-bottom: 5px; color: #1a1a1a; }
.product-short-des { font-size: 14px; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 8px; }
.price { font-size: 18px; font-weight: 700; color: #1a1a1a; }
.actual-price { font-size: 13px; text-decoration: line-through; color: #aaa; margin-left: 8px; font-weight: 400; }

.slide-btn {
    border: none; width: 50px; height: 50px; border-radius: 50%;
    background: #fff; color: #1a1a1a; box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
    cursor: pointer; transition: 0.3s; font-size: 18px;
    display: flex; align-items: center; justify-content: center;
}
.slide-btn:hover { background: #088178; color: #fff; transform: translateY(-50%) scale(1.1); }
.pre-btn { left: 0px; }
.nxt-btn { right: 0px; }

/* =========================================
   9. PAGINATION & NEWSLETTER
========================================= */
#pagination { text-align: center; margin-top: 20px; }
#pagination a {
    text-decoration: none; background-color: #088178; padding: 15px 20px;
    border-radius: 4px; color: #fff; font-weight: 600; margin: 0 5px;
    transition: 0.3s ease;
}
#pagination a:hover { background-color: #066e66; transform: translateY(-3px); }

#newsletter {
    display: flex; justify-content: space-between; align-items: center;
    background-image: url("img/banner/b14.png"); background-color: #041e42;
    background-repeat: no-repeat; background-position: 20% 30%; margin-top: 40px;
    padding: 40px 80px;
}
#newsletter h4 { font-size: 22px; font-weight: 700; color: #fff; }
#newsletter p { font-size: 14px; font-weight: 600; color: #818ea0; }
#newsletter p span { color: #ffbd27; }

#newsletter .form { display: flex; width: 40%; }
#newsletter input {
    height: 3.125rem; padding: 0 1.25em; font-size: 14px; width: 100%;
    border: 1px solid transparent; border-radius: 4px; outline: none;
    border-top-right-radius: 0; border-bottom-right-radius: 0;
}
#newsletter button {
    background-color: #088178; color: #fff; white-space: nowrap;
    border-top-left-radius: 0; border-bottom-left-radius: 0; padding: 0 30px;
    border: none; font-weight: 600; cursor: pointer; transition: 0.3s;
}
#newsletter button:hover { background-color: #066e66; }

/* =========================================
   10. UNIQUE, FASHION, PRODUCTS, FOOTER
========================================= */
#unique-section { padding: 60px 8%; background-color: #f9f9f9; overflow: visible; }
.unique-wrapper { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.unique-visual { position: relative; flex: 1; min-width: 300px; max-width: 500px; }
.base-image { width: 100%; height: auto; border-radius: 20px; box-shadow: 20px 20px 0px #e0e0e0; display: block; }
.glass-card {
    position: absolute; bottom: -30px; right: -40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
    padding: 25px 35px; border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); min-width: 220px; z-index: 10;
    animation: float 4s ease-in-out infinite;
}
.glass-card h5 { font-size: 14px; color: #555; margin-bottom: 5px; }
.glass-card h3 { font-size: 22px; font-weight: 700; color: #1a1a1a; margin-bottom: 15px; }
.glass-card a { text-decoration: none; color: var(--primary); font-weight: 600; transition: 0.3s; }

.unique-text-content { flex: 1; min-width: 300px; }
.sub-text { font-size: 20px; color: #555; margin-bottom: 5px; }
.outline-text { font-size: 60px; font-weight: 900; color: transparent; -webkit-text-stroke: 1px #1a1a1a; line-height: 1; }
.bold-text {
    font-size: 60px; font-weight: 900; line-height: 1; margin-top: -10px;
    background: linear-gradient(45deg, #088178, #2a9d8f, #e9c46a, #088178);
    background-size: 300% 300%; -webkit-background-clip: text; background-clip: text;
    color: transparent; animation: holographic 5s ease infinite;
}
.bold-text i { font-size: 30px; vertical-align: middle; margin-left: 10px; color: #ffbd27; animation: spinSlow 10s linear infinite; }

#fashion-content { padding: 50px 0; overflow: hidden; }
.fashion-grid { display: flex; align-items: center; justify-content: space-between; padding: 0 10%; margin-bottom: 100px; position: relative; }
.text-side { width: 40%; z-index: 2; }
.text-side h3 { font-size: 40px; margin-bottom: 20px; }
.image-side { width: 55%; position: relative; }
.image-side img { width: 100%; box-shadow: 20px 20px 0px #e0e0e0; transition: transform 0.5s; }
.image-side img:hover { transform: scale(1.02); }
.overlap-reverse { justify-content: flex-start; margin-top: 50px; }
.image-side-lg { width: 70%; }
.image-side-lg img { width: 100%; height: 600px; object-fit: cover; transition: transform 0.5s; }
.image-side-lg img:hover { transform: scale(1.02); }
.text-overlay-card { width: 40%; background: #fff; padding: 60px 40px; position: absolute; right: 10%; top: 20%; box-shadow: -10px 10px 40px rgba(0,0,0,0.1); }
.text-overlay-card h3 { font-size: 36px; }
.text-overlay-card span { color: #a07777; font-family: 'Playfair Display', serif; font-style: italic; }
.action-wrap { display: inline-block; cursor: pointer; }
.shop-trigger { font-size: 18px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.red-line { height: 3px; width: 40px; background-color: #c0392b; margin-top: 5px; transition: width 0.4s ease; }
.action-wrap:hover .red-line { width: 100%; }

.section-p1 { padding: 40px 6%; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 40px; margin-bottom: 10px; }
.pro-container { display: flex; justify-content: space-between; flex-wrap: wrap; }
.pro { width: 23%; min-width: 250px; padding: 10px; border: 1px solid #cce7d0; border-radius: 20px; cursor: pointer; transition: 0.3s; position: relative; margin-bottom: 20px; background: #fff; }
.pro:hover { box-shadow: 0 20px 30px rgba(0,0,0,0.1); transform: translateY(-10px); }
.pro img { width: 100%; border-radius: 20px; }
.pro .des { padding: 10px 0; }
.pro .des span { color: #606063; font-size: 12px; }
.pro .des h5 { font-size: 14px; color: #1a1a1a; margin-top: 5px; }
.pro .star i { font-size: 12px; color: rgb(243, 181, 25); }
.pro h4 { font-size: 18px; font-weight: 700; color: #088178; margin-top: 5px; }
.cart-btn { width: 40px; height: 40px; line-height: 40px; text-align: center; border-radius: 50px; background-color: #e8f6ea; color: #088178; position: absolute; bottom: 20px; right: 10px; transition: 0.3s; }
.pro:hover .cart-btn { background-color: #088178; color: #fff; transform: rotate(360deg); }

footer { display: flex; flex-wrap: wrap; justify-content: space-between; background-color: #E3E6F3; padding: 60px 80px 20px 80px; margin-top: 40px; }
footer .col { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 20px; max-width: 300px; }
footer .logo { margin-bottom: 30px; width: 140px; mix-blend-mode: multiply; }
footer h4 { font-size: 16px; padding-bottom: 20px; font-weight: 700; }
footer p { font-size: 14px; margin: 0 0 8px 0; color: #465b52; }
footer p strong { color: #1a1a1a; font-weight: 600; }
footer a { font-size: 14px; text-decoration: none; color: #222; margin-bottom: 10px; transition: 0.3s ease; }
footer a:hover { color: #088178; padding-left: 5px; }
footer .follow i { color: #465b52; padding-right: 15px; cursor: pointer; font-size: 18px; transition: 0.3s; }
footer .follow i:hover { color: #088178; transform: translateY(-3px); }
footer .install .row { display: flex; gap: 10px; }
footer .install .row img { border: 1px solid #088178; border-radius: 6px; margin-bottom: 10px; width: 120px; }
footer .install img[alt="Payments"] { width: 100%; max-width: 200px; height: auto; margin-top: 10px; display: block; }
footer .copyright { width: 100%; text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid #cce7d0; }
footer .copyright strong { color: #088178; font-weight: 700; }

/* =========================================
   11. MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 799px) {
    .section-p1 { padding: 40px 40px; }
    #header { padding: 10px 20px; height: 60px; }
    
    #navbar {
        display: flex; flex-direction: column; align-items: flex-start;
        position: fixed; top: 0; right: -300px; height: 100vh; width: 300px;
        background-color: #E3E6F3; box-shadow: 0 40px 60px rgba(0,0,0,0.1);
        padding: 80px 0 0 20px; transition: 0.3s; z-index: 1000;
    }
    #navbar.active { right: 0; }
    
    #mobile { display: flex; align-items: center; }
    #mobile i { color: #1a1a1a; font-size: 24px; padding-left: 20px; }
    #close { display: initial; position: absolute; top: 30px; left: 30px; font-size: 24px; cursor: pointer; }
    #lg-bag { display: none; }

    /* Hero Fixes */
    #hero { height: auto; padding: 120px 40px 60px 40px; align-items: flex-start; }
    .hero-content h1 { font-size: 40px; }
    .hero-btns { justify-content: center; }

    /* Unique & Fashion Fixes */
    .unique-wrapper, .f-row { flex-direction: column; gap: 40px; }
    .unique-visual { width: 100%; margin: 0 auto; display: flex; justify-content: center; }
    
    .glass-card { 
        position: relative; right: auto; bottom: auto; left: auto; 
        margin-top: -30px; width: 90%; text-align: center; animation: none; 
    }
    
    .unique-text-content { text-align: center; }
    .outline-text, .bold-text { font-size: 40px; }
    
    .fashion-grid { flex-direction: column; padding: 0 5%; gap: 30px; }
    .text-side, .image-side, .image-side-lg, .text-overlay-card { width: 100%; position: static; }
    .text-overlay-card { box-shadow: none; padding: 20px 0; border-top: 1px solid #eee; }
    .overlap-reverse { margin-top: 0; flex-direction: column-reverse; }
    .image-side-lg img { height: auto; }
    
    .pro-container { justify-content: center; }
    .pro { width: 100%; }
    
    /* Trending Slider Mobile */
    #trending { padding: 40px 20px; }
    #trending .section-header h2 { font-size: 30px; }
    .product-container { gap: 15px; }
    .product-card { width: 260px; height: 420px; }
    .product-image { height: 320px; }
    .card-btn { bottom: 0; opacity: 1; padding: 10px; } 
    .wishlist-btn { opacity: 1; transform: translateX(0); }
    .slide-btn { display: none; }

    /* Newsletter */
    #newsletter { padding: 40px 20px; flex-direction: column; align-items: flex-start; }
    #newsletter .form { width: 100%; margin-top: 20px; }
    
    footer { padding: 40px 30px; }
    footer .col { width: 100%; margin-bottom: 40px; }
    
    /* Hide Mega Menu on Mobile */
    .mega-menu { display: none !important; }
}