/* ------------------ Reset / Base ------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg: #0E0F1A;
    /* Deep Dark Blue-Black (Background) */
    --panel: #1B1C28;
    /* Dark Panel for Cards/Sections */
    --muted: #2E2F3A;
    /* Muted Gray-Blue for borders, lines */
    --text: #E4E6EB;
    /* Soft White-Gray (Readable text) */
    --heading: #FFFFFF;
    /* Pure White for Bold Headings */
    --accent: #4ECCA3;
    /* Neon Mint Green (Main Brand Accent) */
    --highlight: #FF6B6B;
    /* Vibrant Coral Red (Hover, Offers, Sale) */
}



html,
body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    /* sticky footer layout */
    display: flex;
    flex-direction: column;
    color: #111;
    /* default text color */
    background: #fff;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: sans-serif, poppins;
    font-weight: 800;
    margin: 0 0 .5rem;
}

p,
a,
.cta,
.input,
.textarea,
.btn {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:root {
    --header-h: 90px;
}

/* keep navbar LTR even if page RTL */
html[dir="rtl"] .site-header {
    direction: ltr;
}

/* ------------------ Header / Navbar ------------------ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    padding: 0 5%;
    background: transparent;
    backdrop-filter: blur(6px);
    transition: all .3s ease;
    max-width: 1500px;
    margin: 0 auto;
}

.navbar.scrolled {
    max-width: 100%;
    background: rgba(0, 0, 0, .85);
}

.brand {
    display: inline-flex;
    align-items: center;
    margin-right: auto;
}

.logo-img {
    height: 90px;
    display: block;
}

.nav-links {
    display: flex;
}

.nav-links ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 400;
    color: var(--heading);
    text-decoration: none;
    font-weight: 600;
    transition: color .3s;
}

.nav-links ul li a:hover {
    text-decoration: underline 2px var(--accent);
    color: var(--accent);
}

/* Active link */
.nav-links ul li a.active {
    color: var(--accent);
    text-decoration: underline 2px var(--accent);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: .3s;
}

/* Body offset so content doesn't hide under fixed header */
main {
    flex: 1;
    padding-top: var(--header-h);
}


/* ------------------ Hero ------------------ */
.hero {
    padding-top: 200px !important;
    padding-bottom: 400px !important;
    position: relative;
    min-height: calc(100vh - var(--header-h));
    display: grid;
    place-items: center;
    text-align: center;
    padding: 80px 0;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(.7);
}

.title {
    font-size: 4rem;
    color: var(--heading);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--heading);
    margin-bottom: 30px;
}

.cta {
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    transition: all .3s;
}

.cta+.cta {
    margin-left: 10px;
}

.cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .3);
}

.cta.secondary {
    background: transparent;
}

/* ------------------ Category ------------------ */
.category-heading {
    text-align: center;
    margin: 40px 0;
}

.category-heading h2 {
    font-size: 55px;
    color: transparent;
    -webkit-text-stroke: 2px var(--accent);
    text-shadow: 0 0 6px rgba(174, 229, 226, .7), 0 0 12px rgba(174, 229, 226, .5);
}

.category-item {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    text-align: center;
}

.category-image {
    width: 200px;
    transition: transform .3s;
}

.category-item:hover .category-image {
    transform: translateY(-4px);
}

.category-item p {
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    background: rgba(0, 0, 0, .3);
    padding: 5px 10px;
    border-radius: 5px;
    border: 2px solid var(--accent);
    opacity: 0;
    transition: opacity .3s;
}

.category-item:hover p {
    opacity: 1;
}

/* ------------------ About ------------------ */
#about-1,
#about-2 {
    margin: 30px 0;
}

.about-cll-1 {
    background: url(/assets/images/about-1-.jpeg) center/cover no-repeat;
    width: 100%;
    height: 470px;
    filter: brightness(.7);
}

.about-cll-4 {
    background: url(/assets/images/about-2-.jpg) center/cover no-repeat;
    width: 100%;
    height: 470px;
    filter: brightness(.7);
}

.about-cll-2,
.about-cll-3 {
    padding: 10px;
}

.about-cll-2 h3,
.about-cll-3 h3 {
    font-size: 45px;
    color: #000;
}

.about-cll-2 p,
.about-cll-3 p {
    margin-top: 30px;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 1.2px;
    margin-bottom: 30px;
    color: #676666;
}

.btn {
    padding: 10px 20px;
    border-radius: 30px;
    color: var(--heading);
    background: var(--accent);
    border: 2px solid var(--heading);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15.5px;
    cursor: pointer;
    transition: all .3s;
}

.btn:hover {
    background-color: var(--highlight);
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .3);
}

.btn i {
    transition: transform .3s;
}

.btn:hover i {
    transform: translateX(5px);
}

/* ------------------ Products ------------------ */
.headings {
    margin: 30px 0;
    text-align: center;
}

.headings h6 {
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 10px;
}

.headings h2 {
    font-size: 45px;
    color: #000;
}

.product-item {
    border: 2px solid #000;
    padding: 10px;
    border-radius: 10px;
    margin: 20px 0 40px;
}

.product-item img {
    width: 100%;
    display: block;
}

.product-item h4 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
}

.product-item h5 {
    color: #000;
    text-decoration: underline;
    font-size: 15px;
    margin-bottom: 10px;
}

.product-item h6 {
    color: var(--accent);
    width: 50px;
    font-size: 15px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.product-btn {
    padding: 8px 15px;
    border: 2px solid var(--accent);
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    transition: .5s ease;
}

.product-btn:hover {

    background: var(--highlight);
    color: var(--heading);
    border-color: var(--highlight);
}

/* ------------------ New Arrival ------------------ */
.New-arrival-headings h2 {
    text-align: center;
    font-size: 45px;
    color: #000;
    margin: 30px 0 50px;
}

.arival-cll-1 {
    background: url(/assets/images/NEW-Arrival.png) center/cover no-repeat;
    width: 100%;
    height: 630px;
}

.arival-cll-2 {
    padding: 10px;
}

.arival-cll-2 h3 {
    font-size: 45px;
    color: #0C2A4C;
    margin-bottom: 10px;
}

.arival-cll-2 h4 {
    font-size: 15px;
    color: #000;
}

.arival-cll-2 h5 {
    color: #0C2A4C;
    text-decoration: underline;
    font-size: 20px;
    padding: 10px;
    margin-bottom: 20px;
}

.arival-cll-2 p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 1.2px;
    margin-bottom: 30px;
    color: #000;
}

/* ------------------ Gallery ------------------ */
.fw-Gallery__grid {
    width: min(90%);
    margin-inline: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.gallery {
    text-align: center;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #000;
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 18px 40px;
}

.heading {
    color: var(--bg);
    margin: 0 0 18px;
    letter-spacing: .04em;
    font-size: 28px;
    font-weight: 700;
}

/* Top grid: info + map */
.top-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 18px;
    margin-bottom: 18px;
}

/* Cards */
.info-card,
.map-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .1);
}

.info-card {
    padding: 18px;
}

.map-card {
    min-height: 230px;
    overflow: hidden;
}

.map-card iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Info rows */
.brand {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 18px;
    letter-spacing: .02em;
}

.info-row {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    padding: 8px 0;
    border-bottom: 1px dashed #e6f1ee;
}

.info-row:last-child {
    border-bottom: 0;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Form grid */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .1);
    padding: 18px;
}

.full {
    grid-column: 1 / -1;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--bg);
    letter-spacing: .06em;
    font-weight: 700;
}

.input,
.textarea {
    width: 100%;
    border: 1px solid #d9e7e4;
    background: #ffffff;
    color: #2b454b;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.input::placeholder {
    color: var(--bg);
}

.textarea::placeholder {
    color: var(--bg);
}

.input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent);
}

.textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent);
}

/* Submit button */
.contact-btn {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 12px 22px;
    background: var(--accent);
    color: var(--heading);
    border: 0;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: .5s ease;
}

.contact-btn:hover {
    color: var(--heading);
    background: var(--highlight);
}

.btn:active {
    transform: translateY(1px);
}

/* Social icons */
.socials {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sbtn {
    width: 120px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
    transition: transform .1s, filter .15s;
}

.socials .fa-brands {
    transition: .5s ease;
}

.socials .fa-brands:hover {
    transform: translateY(-0px);
}

.sbtn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.fb {
    background: #0866FF;
}

.insta {
    background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}

.tik {
    background: #010101;
}

.in {
    background: #0A66C2;
}


/* Honeypot (hidden) */
.hp {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}




/* ------------------ Footer ------------------ */
.fw-footer {
    background: #0f0f10;
    color: #d9d9db;
    padding: 48px 0 0;
    margin-top: 70px;
}

.fw-footer a {
    color: #d9d9db;
    text-decoration: none;
}

.fw-footer a:hover {
    color: var(--accent);
}

.fw-footer__grid {
    width: min(90%);
    margin-inline: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.fw-col .fw-title {
    color: #fff;
    font-size: 25px;
    margin: 0 0 12px;
}

.fw-list,
.fw-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fw-list li {
    line-height: 2;
}

.fw-contact li {
    line-height: 1.8;
}

.fw-brand {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 12px;
    font-weight: 700;
}

.fw-brand img {
    width: 120px;
    object-fit: contain;
}

.fw-about {
    line-height: 1.7;
    margin: 0 0 10px;
}

.fa-brands {
    transition: .5s ease;
}

.fa-brands:hover {
    transform: translateY(-5px);
}

.social {
    margin-top: 10px;
    font-size: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.fw-map {
    margin-top: 10px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    background: #111;
}

.fw-map iframe {
    width: 100%;
    height: 160px;
    border: 0;
    display: block;
}

.fw-bottom {
    border-top: 1px solid #1f1f22;
    margin-top: 32px;
    padding: 16px 20px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    width: min(90%);
    margin-inline: auto;
    color: #aaa;
    font-size: 14px;
}

.fw-bottom p {
    margin: 0;
}

.fw-bottom p a {
    color: var(--highlight);
    text-decoration: underline;
}

.fw-bottom a {
    color: #aaa;
}

.fw-bottom a:hover {
    color: var(--accent);
}

.fw-social {
    display: flex;
    gap: 14px;
}





/* pages */
/* checkout-pages */
.hero-image {
    position: absolute;
    background: url(/assets/images/breadcrums-images.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    inset: 0;
    width: 100%;
    height: 80vh;
    z-index: -1;
    filter: brightness(.7);
}
.bread-links p a{
    color: #000000;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    place-items: center;
    text-align: center;
}
.bread-links span{
    color: #000000;
    margin-left: 10px;
    margin-right: 10px;
}
.bread-links a.active {
    color: var(--highlight);
    text-decoration: underline 2px var(--highlight);
}
.checkout-container {
    display: flex;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    background-color: var(--heading);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* Agar aap is container ko phir bhi center mein dikhana chahte hain bina body styles ke,
       toh aap ismein 'margin: 20px auto;' add kar sakte hain */
    margin: 20px auto; /* Yeh container ko horizontally center karega */
}

/* Left Section: Form */
.checkout-form-section {
    flex: 1;
    padding: 40px;
}

.form-title, .payment-title {
    color: #333;
    border-bottom: 2px solid var(--heading);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Size input ke liye style */
form input[type="number"],
form input[type="text"][name="size"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input:focus {
    outline: none; 
    border-color: #4ECCA3; /* Variable ki jagah direct color code */
    box-shadow: 0 0 0 3px #4ECCA3; /* Variable ki jagah direct color code */
}

.payment-option {
    margin-bottom: 20px;
}

.place-order-btn {
    background-color: #4ECCA3; /* Variable ki jagah direct color code */
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.place-order-btn:hover {
    background-color: #3da383; /* Variable ki jagah direct color code */
}

/* Right Section: Order Summary */
.checkout-summary-section {
    flex: 1;
    padding: 40px;
    background-color: #fafafa;
    border-left: 1px solid #eee;
}

.summary-title {
    color: #333;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.main-product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-gallery {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-gallery img {
    width: 30%;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.price-details {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.price-item, .total-price {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total-price {
    font-weight: bold;
    font-size: 1.2em;
    color: #222;
}

