@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;700;800&display=swap');

/* --- BASIC RESET --- */
/* --- BASIC RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; 
    /* Yahan poori website ka font change kar diya */
    font-family: 'Barlow', Arial, sans-serif; 
}
body { background-color: #f0f0f0; }
/* --- HEADER STYLING --- */
header {
    background-color: #1a1a1a;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img { height: 40px; }
.logo span { font-size: 20px; font-weight: bold; letter-spacing: 1px; }

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

/* --- MAIN & PRODUCT CARD --- */
main {
    padding: 30px 20px;
    max-width: 500px;
    margin: 0 auto;
}

h2 { text-align: center; margin-bottom: 20px; font-size: 24px; }

.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card h3 { margin-bottom: 5px; font-size: 20px; }

/* --- PRODUCT IMAGE SLIDER CSS --- */
.product-gallery {
    width: 100%;
    margin-bottom: 15px;
}

.main-image-container {
    width: 100%;
    margin-bottom: 12px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.main-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 0; 
}

.thumbnail-container {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
}

.thumbnail-container img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.thumbnail-container img.active {
    border-color: #4a00e0;
    box-shadow: 0 0 5px rgba(74, 0, 224, 0.4);
}

.thumbnail-container img:hover { opacity: 0.8; }


/* ======================================================== */
/* --- NEW UPDATED SECTIONS (PRICE, URGENCY, VARIANTS) --- */
/* ======================================================== */

/* --- PRICE & DISCOUNT BLOCK --- */
.price-block {
    margin: 10px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 18px;
}
.selling-price {
    color: #4a00e0; /* Purple */
    font-size: 24px;
    font-weight: bold;
}
.save-badge {
    background: #fff;
    border: 1px solid #4a00e0;
    color: #4a00e0;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 3px;
}

/* --- URGENCY / FOMO BOX --- */
.urgency-box {
    background: #f9f9f9;
    padding: 10px 12px;
    border-radius: 5px;
    margin: 10px 0;
    border: 1px solid #eee;
}
.urgency-box p {
    font-size: 14px;
    margin: 3px 0;
    color: #555;
}
.urgency-box .stock-text { color: #333; }
.urgency-box .viewer-text { color: #777; }
.urgency-box i { color: #666; margin-right: 5px; }

/* --- VARIANT BUTTONS STYLING --- */
.variant-section {
    margin: 15px 0;
}
.variant-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    font-size: 15px;
}
.variant-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.variant-btn {
    background-color: white;
    color: #4a00e0;
    border: 1px solid #4a00e0;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.2s ease;
}
.variant-btn.active-variant {
    background-color: #4a00e0;
    color: white;
    border-color: #4a00e0;
}
.variant-btn:hover:not(.active-variant) {
    background-color: #f0f0ff;
}

/* ======================================================== */


/* --- MAIN ORDER BUTTON --- */
.btn-order-main {
    display: block;
    width: 100%;
    background: black;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    text-align: center;
}
.btn-order-main:hover { background: #333; }


/* --- POPUP CSS --- */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow-y: auto;
    padding: 20px 0;
}

.modal-content {
    background-color: #ffffff;
    margin: 20px auto;
    padding: 0;
    border-radius: 12px;
    width: 95%;
    max-width: 450px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.modal-header {
    background: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.modal-header h2 { font-size: 18px; margin: 0; display: flex; align-items: center; gap: 10px;}
.close-modal {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.product-summary {
    background: #fafafa;
    padding: 15px;
    margin: 15px;
    border-radius: 8px;
    border: 1px solid #eee;
}
.product-summary h3 { font-size: 16px; margin: 0 0 5px 0; line-height: 1.4; }

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    width: fit-content;
    border-radius: 5px;
    margin-top: 10px;
    background: white;
}
.qty-selector button {
    background: none;
    border: none;
    padding: 5px 15px;
    font-size: 18px;
    cursor: pointer;
    color: #555;
}
.qty-selector span { padding: 0 15px; font-weight: bold; min-width: 20px; text-align: center; }

.price-summary {
    background: #e9e9e9;
    padding: 15px;
    margin: 0 15px 15px 15px;
    border-radius: 8px;
}
.price-summary .row { display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 14px; color: #555; }
.price-summary .total { font-weight: bold; color: #000; font-size: 16px; border-top: 1px solid #ccc; padding-top: 8px; margin-top: 8px; }

form { padding: 0 15px 20px 15px; }
form h4 { text-align: center; margin-bottom: 15px; font-size: 16px; }
label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 5px; margin-top: 12px; color: #333; }
.required { color: red; }

.input-group {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 6px;
    border: 1px solid #ddd;
    transition: 0.2s;
}
.input-group:focus-within {
    border-color: #000;
    background: #fff;
}
.input-group .icon {
    padding: 12px 12px;
    color: #666;
    font-size: 16px;
    background: transparent;
    min-width: 40px;
    text-align: center;
}
.input-group input, .input-group select {
    width: 100%;
    padding: 12px 12px 12px 0;
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
}

.btn-complete-order {
    width: 100%;
    background: black;
    color: white;
    padding: 15px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    cursor: pointer;
}
.btn-complete-order:hover { background: #333; }


/* --- MOBILE RESPONSIVE --- */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    .logo {
        margin-bottom: 15px;
        width: 100%;
        justify-content: center;
    }
    .logo span { font-size: 18px; }
    nav {
        width: 100%;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    nav a {
        margin: 0;
        font-size: 14px;
    }
    main { padding: 15px; }
    .card { padding: 15px; }
    .thumbnail-container img {
        width: 60px;
        height: 60px;
    }
}

/* --- TOP NOTIFICATION BAR --- */
.top-bar {
    background-color: #0d0d0d; 
    color: #ffffff;
    text-align: center;
    padding: 10px 10px; 
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #333;
}
.top-bar span { margin: 0 5px; }
.top-bar .divider { color: #555; margin: 0 8px; }
@media screen and (max-width: 480px) {
    .top-bar { font-size: 10px; padding: 6px 5px; letter-spacing: 0.5px; }
    .top-bar .divider { margin: 0 4px; }
}

.product-demo{
    margin-top:20px;
}

.demo-img{
    width:100%;
    display:block;
    margin-bottom:12px;
    border-radius:8px;
}

.product-description{
    background:#fff;
    padding:20px;
    border-radius:8px;
    margin-top:15px;
}

.product-description h2{
    font-size:28px;
    text-align:center;
    margin-bottom:15px;
}

.product-description h3{
    margin-top:25px;
    margin-bottom:10px;
    color:#222;
}

.product-description p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:12px;
}

.order-highlight{
    background:#fff7ea;
    border:2px solid #ff9800;
    padding:20px;
    border-radius:10px;
    margin-top:25px;
    text-align:center;
}

.order-highlight h3{
    color:#ff6600;
    margin-bottom:10px;
}

.trust-section{
    background:#fff;
    margin-top:30px;
    border-top:1px solid #eee;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px 18px;
    border-bottom:1px solid #eee;
}

.trust-item i{
    font-size:42px;
    color:#444;
    min-width:50px;
    text-align:center;
}

.trust-item h3{
    margin:0;
    font-size:30px;
    font-weight:700;
    color:#222;
}

.trust-item p{
    margin:6px 0 0;
    font-size:22px;
    color:#666;
}

@media(max-width:768px){

.trust-item{
    padding:18px 15px;
}

.trust-item i{
    font-size:34px;
}

.trust-item h3{
    font-size:18px;
}

.trust-item p{
    font-size:15px;
}

}

/* --- PRODUCT DESCRIPTION STYLING --- */
.product-description { margin: 15px 0; }
.product-description h2 { font-size: 22px; margin-bottom: 12px; color: #333; display: block; }
.product-description h3 { font-size: 18px; margin-top: 15px; margin-bottom: 8px; color: #333; }
.product-description p { font-size: 14px; color: #444; line-height: 1.6; margin-bottom: 8px; }

/* Order Highlight Box */
.order-highlight {
    background: #f9f9f9;
    padding: 15px;
    border-left: 4px solid #ff6f00;
    margin: 20px 0;
    border-radius: 4px;
}
.order-highlight h3 { margin-top: 0; color: #333; }
.order-highlight p { margin: 5px 0; }

/* --- TRUST SECTION (Icons wala) --- */
.trust-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fafafa;
    padding: 10px 12px;
    border-radius: 6px;
}
.trust-item i {
    font-size: 24px;
    color: #4a4a4a;
    width: 30px;
    text-align: center;
}
.trust-item h4 { margin: 0; font-size: 15px; color: #333; }
.trust-item p { margin: 2px 0 0 0; font-size: 13px; color: #777; }

/* Mobile par Trust section clean dikhe */
@media screen and (max-width: 480px) {
    .trust-item { padding: 8px 10px; }
    .trust-item i { font-size: 20px; width: 25px; }
}

/* ========================================== */
/* --- CONTACT PAGE STYLES --- */
/* ========================================== */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    text-align: center;
    padding: 50px 20px;
}
.contact-hero h1 {
    font-size: 34px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}
.contact-hero p {
    font-size: 16px;
    color: #ccc;
    max-width: 500px;
    margin: 0 auto;
}

/* Main Content Wrapper */
.contact-wrapper {
    max-width: 600px;
    margin: -30px auto 50px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* White Form Box */
.contact-box {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Contact Info (Icons) */
.contact-info-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 25px;
}
.contact-info-item {
    text-align: center;
}
.contact-info-item i {
    font-size: 22px;
    color: #4a00e0;
    display: block;
    margin-bottom: 5px;
}
.contact-info-item a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

/* Form Title */
.contact-box h2 {
    font-size: 24px;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
}

/* Form Inputs */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}
.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    font-family: inherit;
}
.contact-form input:focus, 
.contact-form textarea:focus {
    border-color: #4a00e0;
    box-shadow: 0 0 5px rgba(74, 0, 224, 0.2);
}
.contact-form textarea {
    resize: vertical;
}

/* Submit Button */
.contact-form button {
    background: #ff6f00;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}
.contact-form button:hover {
    background: #e65c00;
}

  /* footer */

/* ================= FOOTER ================= */

/* =================================================== */
/* --- FOOTER STYLING (Perfect 3 Column) --- */
/* =================================================== */

footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    /* Side ka gap hatane ke liye left/right 0 rakho */
    padding: 40px 0 15px 0; 
    font-family: 'Barlow', sans-serif;
    border-top: 4px solid #4a00e0; /* Line ko thoda mota kiya */
    
    /* 🔥 YE LINE ADD KARO (Gap hatane ke liye) */
    margin-top: 0; 
    width: 100%;

   
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    padding-left: 0px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}
/* Heading ke neeche chhoti purple line */
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #ff6f00;
}

.footer-col .about-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #aaa;
}

/* Contact Info Icons */
.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}
.contact-info .info-item i {
    color: #4a00e0;
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Quick Links List */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Social Media Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}
.social-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}
.social-links a i {
    font-size: 18px;
    width: 25px;
    text-align: center;
}
.social-links a i.fa-facebook-f { color: #1877f2; }
.social-links a i.fa-instagram { color: #e4405f; }
.social-links a i.fa-youtube { color: #ff0000; }

/* Copyright Bottom Bar */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 15px;
    font-size: 13px;
    color: #666;
}

/* --- MOBILE RESPONSIVE (Footer) --- */
@media screen and (max-width: 768px) {
    .footer-col {
        padding: 0 20px 20px 20px;
    }
}
 .footer-col {
    flex: 1;
    min-width: 200px;
    padding: 0 20px 20px 20px; /* 🔥 सबसे जरूरी: ऊपर, दाएँ, नीचे, बाएँ 20px gap */
}
    .footer-col h3 {
        font-size: 18px;
    }
    .footer-col h3::after {
        width: 30px;
    }

    /* backgroun image index */

    main {
    padding: 100px 20px; /* Height badha di */
    max-width: 100%;
    margin: 0 auto;
    /* 🆕 YEH LINES ADD KARO */
    background-image: url('../images/home1.jpg');
    background-size: cover;
    background-position: center;
    color: white; /* Text ko white karo taaki image par dikhe */
}
/* } */