body {
    margin: 0;
    font-family: Arial;
    background: #f4f9f9;
}

.header {
    background: linear-gradient(120deg, #00BFA6, #008C7A);
    padding: 15px;
    color: white;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: white;
}

.btn {
    background: #FF6B35;
    padding: 12px 20px;
    color: white;
    border-radius: 6px;
    text-decoration: none;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}
/*---header css----*/
/* ================= HEADER ================= */

.header {
    background: linear-gradient(120deg, #07141F, #0A1F2E);
    padding: 12px 20px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

/* MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu a {
    color: #2FE6E6;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-menu a:hover {
    color: #00A8B5;
}

/* LOGIN BUTTON */

.login-btn {
    background: linear-gradient(120deg, #00A8B5, #2FE6E6);
    padding: 8px 14px;
    border-radius: 6px;
    color: #07141F !important;
    font-weight: bold;
}

/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #0F2B3A;
    top: 35px;
    min-width: 220px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    overflow: hidden;
}

.dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #2FE6E6;
}

.dropdown-content a:hover {
    background: #143B4F;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ================= MOBILE ================= */

.hamburger {
    display: none;
    font-size: 28px;
    color: #2FE6E6;
    cursor: pointer;
}

/* Mobile View */

@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

@media (max-width: 768px) {

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #07141F, #0A1F2E);
        flex-direction: column;
        align-items: center;   /* ✅ CENTER EVERYTHING */
        justify-content: center;
        text-align: center;    /* ✅ CENTER TEXT */
        padding: 30px 0;
        display: none;
        gap: 18px;
    }

    .nav-menu a {
        font-size: 18px;
        padding: 10px 0;
        width: 100%;
    }

    .nav-menu.active {
        display: flex;
    }

    /* Fix dropdown alignment */
    .dropdown {
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        width: 100%;
        background: #0F2B3A;
        box-shadow: none;
        margin-top: 10px;
    }

    .dropdown-content a {
        text-align: center;
    }
}
}
/* ================= PREMIUM FOOTER ================= */

.footer {
    background: linear-gradient(135deg, #07141F, #0A1F2E);
    color: #e0ffff;
    padding: 80px 20px 30px;
    position: relative;
    overflow: hidden;
}

/* Glow background animation */
.footer::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,168,181,0.25), transparent 70%);
    top: -100px;
    right: -100px;
    animation: glowMove 8s infinite alternate ease-in-out;
}

@keyframes glowMove {
    from { transform: translateY(0px); }
    to { transform: translateY(40px); }
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
    color: #2FE6E6;
}

.footer-col p {
    line-height: 1.7;
    color: #b8e9ec;
}

.footer-logo {
    width: 90px;
    margin-bottom: 15px;
}

/* Animated Links */
.footer-col a {
    display: inline-block;
    margin-bottom: 8px;
    text-decoration: none;
    color: #e0ffff;
    position: relative;
    transition: 0.3s;
}

.footer-col a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #2FE6E6;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #2FE6E6;
}

.footer-col a:hover::after {
    width: 100%;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border-radius: 8px 0 0 8px;
    border: none;
    outline: none;
    background: #143B4F;
    color: white;
}

.newsletter-form input:focus {
    box-shadow: 0 0 10px #2FE6E6;
}

.newsletter-form button {
    padding: 12px 18px;
    border: none;
    border-radius: 0 8px 8px 0;
    background: linear-gradient(120deg, #00A8B5, #2FE6E6);
    color: #07141F;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #2FE6E6;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    margin-top: 50px;
    border-top: 1px solid rgba(47,230,230,0.2);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.footer-bottom a {
    color: #2FE6E6;
    font-weight: bold;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #00A8B5;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 600px) {

    .footer-container {
        grid-template-columns: 1fr;
        text-align: left;   /* ✅ LEFT ALIGN */
    }

    .footer-col {
        margin-bottom: 30px;
        text-align: left;   /* ✅ FORCE LEFT */
    }

    .footer-logo {
        margin: 0 0 15px 0;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: flex-start; /* ✅ LEFT */
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 8px;
    }

    .newsletter-form button {
        margin-top: 10px;
    }
}
/* ================= ABOUT HERO ================= */

/* ================= PREMIUM ABOUT HERO ================= */

.about-hero {
    padding: 130px 20px 110px;
    background: linear-gradient(135deg, #07141F, #0A1F2E);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle Glow Background */
.about-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,168,181,0.25), transparent 70%);
    top: -200px;
    right: -200px;
    filter: blur(40px);
    animation: floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    from { transform: translateY(0px); }
    to { transform: translateY(40px); }
}

/* Content */

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
}

/* Fade In Animation */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tag */

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(47,230,230,0.15);
    border: 1px solid rgba(47,230,230,0.3);
    color: #2FE6E6;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Bounce Heading */

.bounce-text {
    font-size: 44px;
    font-weight: 700;
    color: #2FE6E6;
    line-height: 1.3;
    margin-bottom: 25px;
    animation: smoothBounce 2.5s ease infinite;
}

/* Smooth Professional Bounce */
@keyframes smoothBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Paragraph */

.about-hero p {
    font-size: 18px;
    color: #b8e9ec;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* Scroll Down Arrow */

.scroll-down {
    font-size: 28px;
    color: #2FE6E6;
    text-decoration: none;
    display: inline-block;
    animation: arrowBounce 2s infinite;
    transition: 0.3s;
}

.scroll-down:hover {
    transform: scale(1.2);
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}
@media (max-width: 992px) {

    .about-hero {
        padding: 110px 20px 90px;
    }

    .bounce-text {
        font-size: 28px;
    }

    .about-hero p {
        font-size: 15px;
    }
}

@media (max-width: 600px) {

    .about-hero {
        padding: 90px 20px 70px;
    }

    .bounce-text {
        font-size: 22px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 6px 14px;
    }
}


/* ================= LIGHT ABOUT SECTION ================= */

.about-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8fcff, #eef6f8);
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Styling */

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 168, 181, 0.15);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.04);
}

/* Content Styling */

.about-tag {
    display: inline-block;
    background: #e6f7f9;
    color: #00A8B5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0A1F2E;
}

.about-content p {
    color: #4a5c66;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Highlights */

.about-highlights {
    margin-bottom: 25px;
}

.highlight {
    margin-bottom: 8px;
    color: #00A8B5;
    font-weight: 500;
}

/* Button */

.about-btn {
    display: inline-block;
    background: linear-gradient(120deg, #00A8B5, #2FE6E6);
    padding: 14px 28px;
    border-radius: 10px;
    color: #07141F;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,168,181,0.3);
}
@media (max-width: 992px) {

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-content h2 {
        font-size: 26px;
    }

    .about-content p {
        font-size: 15px;
    }
}
/* ================= VISION MISSION ================= */
/* ================= VISION & MISSION SECTION ================= */

.vision-mission {
    padding: 110px 20px;
    background: linear-gradient(180deg, #f9fdff 0%, #eef7f9 100%);
    position: relative;
}

/* Container */
.vm-container {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* ================= CARD ================= */

.vm-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;

    /* Premium layered shadow */
    box-shadow:
        0 12px 30px rgba(0, 168, 181, 0.08),
        0 25px 60px rgba(0, 0, 0, 0.05);

    transition: all 0.4s ease;
}

/* Top Gradient Accent */
.vm-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(120deg, #00A8B5, #2FE6E6);
}

/* Subtle Inner Glow */
.vm-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 40px rgba(0, 168, 181, 0.04);
    pointer-events: none;
}

/* Hover Lift Effect */
.vm-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(0, 168, 181, 0.18),
        0 40px 80px rgba(0, 0, 0, 0.08);
}

/* ================= ICON ================= */

.vm-icon {
    font-size: 42px;
    margin-bottom: 20px;
    display: inline-block;
    text-shadow: 0 10px 25px rgba(0, 168, 181, 0.25);
}

/* ================= HEADINGS ================= */

.vm-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #0A1F2E;
    font-weight: 600;
}

/* ================= TEXT ================= */

.vm-card p {
    color: #4a5c66;
    line-height: 1.9;
    font-size: 16px;
        text-align: left;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .vm-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .vm-card {
        padding: 35px;
        text-align: center;
    }

    .vm-card h3 {
        font-size: 22px;
    }

    .vm-icon {
        font-size: 38px;
    }
}

@media (max-width: 600px) {

    .vision-mission {
        padding: 80px 20px;
    }

    .vm-card {
        padding: 28px;
        border-radius: 18px;
    }

    .vm-card h3 {
        font-size: 20px;
    }

    .vm-card p {
        font-size: 15px;
    }
}

/* ================= VISION SECTION HEADER ================= */

.vm-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.vm-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #e6f7f9;
    color: #00A8B5;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.vm-header h2 {
    font-size: 36px;
    color: #0A1F2E;
    margin-bottom: 15px;
    font-weight: 700;
}

.vm-header p {
    color: #4a5c66;
    line-height: 1.8;
    font-size: 16px;
}

/* ================= DARK COMPACT CTA ================= */

/* ================= PREMIUM DARK CTA ================= */

.dark-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #07141F, #0A1F2E);
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Subtle floating glow */
.dark-cta::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0,168,181,0.25), transparent 70%);
    top: -180px;
    right: -180px;
    filter: blur(50px);
}

/* CTA Card */
.dark-cta-card {
    max-width: 950px;
    width: 100%;
    text-align: center;
    padding: 70px 60px;
    border-radius: 28px;

    background: rgba(15, 43, 58, 0.85);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(47,230,230,0.18);

    box-shadow:
        0 25px 70px rgba(0,168,181,0.18),
        inset 0 0 60px rgba(0,168,181,0.06);

    transition: all 0.4s ease;
}

.dark-cta-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 35px 90px rgba(0,168,181,0.25),
        inset 0 0 60px rgba(0,168,181,0.08);
}

/* Heading */
.dark-cta-card h2 {
    font-size: 34px;
    color: #2FE6E6;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Paragraph */
.dark-cta-card p {
    font-size: 17px;
    color: #b8e9ec;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Buttons */
.dark-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
}

/* Primary Button */
.dark-btn-primary {
    background: linear-gradient(120deg, #00A8B5, #2FE6E6);
    padding: 15px 36px;
    border-radius: 14px;
    color: #07141F;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dark-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,168,181,0.35);
}

/* Outline Button */
.dark-btn-outline {
    border: 2px solid #2FE6E6;
    padding: 15px 36px;
    border-radius: 14px;
    color: #2FE6E6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dark-btn-outline:hover {
    background: #2FE6E6;
    color: #07141F;
    transform: translateY(-5px);
}
@media (max-width: 992px) {

    .dark-cta {
        padding: 80px 20px;
    }

    .dark-cta-card {
        padding: 50px 30px;
        border-radius: 22px;
    }

    .dark-cta-card h2 {
        font-size: 26px;
    }

    .dark-cta-card p {
        font-size: 15px;
    }

    .dark-cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .dark-btn-primary,
    .dark-btn-outline {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {

    .dark-cta {
        padding: 70px 16px;
    }

    .dark-cta-card {
        padding: 40px 20px;
    }

    .dark-cta-card h2 {
        font-size: 22px;
    }

    .dark-cta-card p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ================= CONTACT SECTION ================= */

.contact-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfc 100%);
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.contact-info h2 {
    font-size: 32px;
    color: #0A1F2E;
    margin-bottom: 20px;
}

.contact-info p {
    color: #4a5c66;
    line-height: 1.8;
    margin-bottom: 25px;
}

.info-box {
    margin-bottom: 25px;
}

.info-box h4 {
    color: #00A8B5;
    margin-bottom: 8px;
    font-weight: 600;
}
.contact-form-wrapper {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 28px;
    box-shadow:
        0 25px 60px rgba(0,168,181,0.12),
        inset 0 0 40px rgba(0,168,181,0.05);
    border: 1px solid rgba(0,168,181,0.1);
}

/* Floating Label Style */

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d9f1f4;
    border-radius: 10px;
    background: transparent;
    outline: none;
    font-size: 15px;
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 14px;
    color: #7a8c96;
    pointer-events: none;
    transition: 0.3s ease;
    background: #ffffff;
    padding: 0 6px;
}

/* Floating Animation */

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    font-size: 12px;
    color: #00A8B5;
}

/* Input Focus Glow */

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00A8B5;
    box-shadow: 0 0 15px rgba(0,168,181,0.2);
}
.contact-btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(120deg, #00A8B5, #2FE6E6);
    color: #07141F;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,168,181,0.25);
}
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 992px) {

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-wrapper {
        padding: 40px 25px;
    }

    .contact-info h2 {
        font-size: 26px;
    }
}

@media (max-width: 600px) {

    .contact-section {
        padding: 80px 20px;
    }

    .contact-form-wrapper {
        border-radius: 20px;
    }
}
/* ================= CONTACT INFO CARDS ================= */

.contact-info h2 {
    font-size: 32px;
    color: #0A1F2E;
    margin-bottom: 15px;
}

.contact-info > p {
    color: #4a5c66;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Individual Info Cards */

.info-card {
    background: #ffffff;
    padding: 25px 28px;
    border-radius: 18px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;

    box-shadow:
        0 15px 35px rgba(0,168,181,0.08),
        0 5px 15px rgba(0,0,0,0.04);

    transition: all 0.35s ease;
}

/* Accent Line */

.info-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(120deg, #00A8B5, #2FE6E6);
}

/* Hover Effect */

.info-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 25px 50px rgba(0,168,181,0.18),
        0 10px 25px rgba(0,0,0,0.06);
}

/* Headings */

.info-card h4 {
    color: #00A8B5;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Text */

.info-card p {
    color: #4a5c66;
    line-height: 1.7;
}
/* ================= PREMIUM MAP SECTION ================= */

.map-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfc 100%);
}

.map-container {
    max-width: 1200px;
    margin: auto;
}
.map-header {
    text-align: center;
    margin-bottom: 60px;
}

.map-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #e6f7f9;
    color: #00A8B5;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.map-header h2 {
    font-size: 34px;
    color: #0A1F2E;
    margin-bottom: 15px;
}

.map-header p {
    color: #4a5c66;
    max-width: 650px;
    margin: auto;
    line-height: 1.8;
}
.map-card {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    padding: 25px;

    box-shadow:
        0 30px 70px rgba(0,168,181,0.12),
        0 10px 30px rgba(0,0,0,0.05);

    transition: 0.4s ease;
}

.map-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 40px 90px rgba(0,168,181,0.18),
        0 15px 40px rgba(0,0,0,0.08);
}

/* Map Wrapper */
/* MAP WRAPPER */

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

/* Make iframe fully responsive */

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Optional premium hover effect */

.map-card:hover .map-wrapper iframe {
    transform: scale(1.02);
    transition: 0.6s ease;
}
@media (max-width: 992px) {
    .map-wrapper {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .map-wrapper {
        height: 280px;
        border-radius: 16px;
    }
}
/* ================= HOME HERO ================= */

.home-hero {
    position: relative;
    min-height: 50vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
    overflow: hidden;
}

/* Dark overlay for contrast */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(7,20,31,0.85),
        rgba(10,31,46,0.75)
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeUp 1.2s ease forwards;
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(47,230,230,0.15);
    border: 1px solid rgba(47,230,230,0.35);
    color: #2FE6E6;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Title */
.hero-title {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    color: #d4f3f5;
    line-height: 1.8;
    margin-bottom: 40px;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-btn-primary {
    background: linear-gradient(120deg, #00A8B5, #2FE6E6);
    padding: 16px 38px;
    border-radius: 14px;
    color: #07141F;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,168,181,0.35);
}

.hero-btn-outline {
    border: 2px solid #2FE6E6;
    padding: 16px 38px;
    border-radius: 14px;
    color: #2FE6E6;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-btn-outline:hover {
    background: #2FE6E6;
    color: #07141F;
    transform: translateY(-5px);
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 992px) {

    .home-hero {
        min-height: 45vh;
        padding: 90px 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 14px;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}

@media (max-width: 600px) {

    .home-hero {
        min-height: 40vh;   /* ✅ smaller hero */
        padding: 80px 16px; /* tighter spacing */
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

}
/* ================= SHOP BY CATEGORY SECTION ================= */

.shop-category {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfc 100%);
    position: relative;
    overflow: hidden;
}

.category-container {
    max-width: 1200px;
    margin: auto;
}

/* ================= SECTION HEADER ================= */

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #e6f7f9;
    color: #00A8B5;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 38px;
    color: #0A1F2E;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: #4a5c66;
    max-width: 600px;
    margin: auto;
    line-height: 1.8;
    font-size: 16px;
}
.section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* desktop */
    gap: 30px;
}

/* Tablet */
@media (max-width: 992px) {
    .section-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile → 2 in a row */
@media (max-width: 768px) {
    .section-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
.section-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.section-grid .card {
    width: 23%; /* desktop 4 in row */
}

/* Tablet */
@media (max-width: 992px) {
    .section-grid .card {
        width: 31%;
    }
}

/* Mobile → 2 in row */
@media (max-width: 768px) {
    .section-grid .card {
        width: 48%;
    }
}
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 14px;
        padding: 0 10px;
    }
}
/* ================= CATEGORY GRID ================= */

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* ================= CATEGORY CARD ================= */

.category-card {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    display: block;
    box-shadow:
        0 20px 40px rgba(0,168,181,0.12),
        0 8px 20px rgba(0,0,0,0.05);

    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeCard 0.8s ease forwards;
}

/* Stagger Animation */
.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }
.category-card:nth-child(6) { animation-delay: 0.6s; }

/* Image */
.category-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: 0.6s ease;
}

/* Overlay */
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(7,20,31,0.9),
        rgba(7,20,31,0.2)
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.category-overlay h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
}

/* Hover Effects */
.category-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 35px 70px rgba(0,168,181,0.25),
        0 15px 30px rgba(0,0,0,0.08);
}

.category-card:hover img {
    transform: scale(1.08);
}

/* ================= ANIMATION ================= */

@keyframes fadeCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .category-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .category-card img {
        height: 220px;
    }
}

@media (max-width: 600px) {

    .shop-category {
        padding: 80px 20px;
    }

    @media (max-width: 600px) {

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .category-card img {
        height: 160px;
    }

    .category-overlay h3 {
        font-size: 16px;
    }
}

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .category-card img {
        height: 200px;
    }

    .category-overlay h3 {
        font-size: 18px;
    }
}
/* ================= PRODUCT SECTION ================= */

.product-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfc 100%);
}

.product-container {
    max-width: 1200px;
    margin: auto;
}
.product-header {
    text-align: center;
    margin-bottom: 70px;
}

.product-tag {
    display: inline-block;
    padding: 6px 18px;
    background: #e6f7f9;
    color: #00A8B5;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-header h2 {
    font-size: 36px;
    color: #0A1F2E;
    margin-bottom: 15px;
    font-weight: 700;
}

.product-header p {
    color: #4a5c66;
    max-width: 600px;
    margin: auto;
}

.product-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0,168,181,0.12),
        0 8px 20px rgba(0,0,0,0.05);

    transition: 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 35px 70px rgba(0,168,181,0.22);
}

.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 18px;
    color: #0A1F2E;
    margin-bottom: 10px;
}

.product-price {
    color: #00A8B5;
    font-weight: 600;
    margin-bottom: 15px;
}

.login-msg {
    color: #ff5e5e;
    font-size: 14px;
    margin-bottom: 15px;
}








.btn-outline {
    flex: 1;
    border: 2px solid #00A8B5;
    padding: 10px;
    border-radius: 10px;
    color: #00A8B5;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #00A8B5;
    color: #ffffff;
}
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-section {
        padding: 80px 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-buttons {
        flex-direction: column;
    }
}
/* ================= HOME CATEGORY PRODUCTS ================= */

/* ================= HOME CATEGORY PRODUCTS ================= */

.home-products {
    padding: 100px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfc 100%);
}

/* IMPORTANT: Scoped container */
.home-products .container {
    max-width: 1200px;
    margin: auto;
    display: block; /* ensures vertical stacking */
}

/* Each category section */
.home-products .category-block {
    margin-bottom: 80px;
    width: 100%;
}

/* ================= CATEGORY HEADER ================= */

.home-products .category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap; /* prevents breaking */
}

.home-products .category-header h2 {
    font-size: 28px;
    color: #0A1F2E;
    font-weight: 700;
}

.home-products .view-all {
    color: #00A8B5;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.home-products .view-all:hover {
    color: #07141F;
}

/* ================= PRODUCT GRID ================= */

.home-products .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ================= PRODUCT CARD ================= */

.home-products .product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 15px 35px rgba(0,168,181,0.12),
        0 5px 15px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.home-products .product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 60px rgba(0,168,181,0.25);
}

.home-products .product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.home-products .product-content {
    padding: 18px;
}

.home-products .product-content h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #0A1F2E;
}

/* Price */

.home-products .product-price {
    color: #00A8B5;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Login message */

.home-products .login-msg {
    color: #ff5e5e;
    margin-bottom: 12px;
    font-size: 14px;
}

/* ================= BUTTONS ================= */

.home-products .product-buttons {
    display: flex;
    gap: 10px;
}

.home-products .btn-primary {
    flex: 1;
    background: linear-gradient(120deg, #00A8B5, #2FE6E6);
    padding: 8px;
    border-radius: 8px;
    color: #07141F;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.home-products .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,168,181,0.25);
}

.home-products .btn-outline {
    flex: 1;
    border: 2px solid #00A8B5;
    padding: 8px;
    border-radius: 8px;
    color: #00A8B5;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.home-products .btn-outline:hover {
    background: #00A8B5;
    color: #ffffff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

    .home-products .category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .home-products .product-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .home-products {
        padding: 70px 20px;
    }

    .home-products .category-header h2 {
        font-size: 22px;
    }

    .home-products .product-image img {
        height: 200px;
    }
}
/* Large Tablets */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {

    .product-section {
        padding: 80px 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-buttons {
        flex-direction: column;
    }
}
/* ================= PRODUCT DETAILS ================= */

.product-details {
    padding: 120px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f4fbfc 100%);
}

.details-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.details-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,168,181,0.15);
}

.details-content h1 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #0A1F2E;
}

.product-description {
    color: #4a5c66;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Variant Buttons */

.variant-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.variant-btn {
    padding: 10px 20px;
    border: 2px solid #00A8B5;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    font-weight: 600;
    color: #00A8B5;
    transition: 0.3s ease;
}

.variant-btn.active,
.variant-btn:hover {
    background: linear-gradient(120deg, #00A8B5, #2FE6E6);
    color: #07141F;
}

/* Price */

.dynamic-price {
    font-size: 26px;
    color: #00A8B5;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Quantity */

.qty-section input {
    width: 80px;
    padding: 8px;
    margin-bottom: 20px;
}

/* Add Cart */

.add-cart-btn {
    padding: 12px 35px;
    background: linear-gradient(120deg, #00A8B5, #2FE6E6);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive */

@media (max-width: 992px) {

    .details-container {
        grid-template-columns: 1fr;
    }

    .details-content h1 {
        font-size: 26px;
    }

}
/* ================= CART ================= */

/* ================= CART PREMIUM ================= */

.cart-wrapper {
    padding: 120px 20px;
    background: linear-gradient(180deg,#ffffff,#f4fbfc);
}

.cart-container {
    max-width: 1200px;
    margin: auto;
}

.cart-heading {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #0A1F2E;
    font-weight: 700;
}

/* Grid Layout */
.cart-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Card */
.cart-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 
        0 20px 45px rgba(0,168,181,0.08),
        0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.cart-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,168,181,0.15);
}

/* Image */
.cart-img img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 15px;
}

/* Info */
.cart-info {
    flex: 1;
}

.cart-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: #0A1F2E;
}

.cart-info p {
    margin: 6px 0;
    color: #4a5c66;
}

.variant {
    font-weight: 600;
    color: #00A8B5;
}

.item-total {
    font-weight: 600;
    color: #00A8B5;
    margin-top: 10px;
}

/* Remove */
.remove-btn {
    background: #ff4d4d;
    color: white;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.remove-btn:hover {
    background: #d93636;
}

/* Summary Box */
.cart-summary-box {
    margin-top: 60px;
    text-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,168,181,0.1);
}

.cart-summary-box h2 {
    margin-bottom: 15px;
    color: #0A1F2E;
}

.grand-total {
    font-size: 32px;
    font-weight: 700;
    color: #00A8B5;
    margin-bottom: 25px;
}

.checkout-btn {
    background: linear-gradient(120deg,#00A8B5,#2FE6E6);
    padding: 14px 35px;
    border-radius: 12px;
    text-decoration: none;
    color: #07141F;
    font-weight: 600;
    transition: 0.3s;
}

.checkout-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,168,181,0.3);
}

/* Empty */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.shop-btn {
    background: linear-gradient(120deg,#00A8B5,#2FE6E6);
    padding: 12px 28px;
    border-radius: 10px;
    color: #07141F;
    text-decoration: none;
    font-weight: 600;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 768px){

.cart-card {
    flex-direction: column;
    text-align: center;
}

.cart-img img {
    width: 100px;
    height: 100px;
}

.cart-summary-box {
    padding: 30px 20px;
}

.cart-heading {
    font-size: 28px;
}

}
/* ================= CHECKOUT ================= */

.checkout-section {
    padding: 120px 20px;
    background: linear-gradient(180deg,#ffffff,#f4fbfc);
}

.checkout-container {
    max-width: 1200px;
    margin: auto;
}

.checkout-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #0A1F2E;
    font-weight: 700;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

/* LEFT */
.checkout-left {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,168,181,0.08);
}

.checkout-left h2 {
    margin-bottom: 25px;
    color: #0A1F2E;
}

.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #e1f2f5;
    font-size: 15px;
}

.checkout-form textarea {
    height: 100px;
    resize: none;
}

.place-order-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(120deg,#00A8B5,#2FE6E6);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.place-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,168,181,0.3);
}

/* RIGHT */
.checkout-right {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,168,181,0.08);
}

.checkout-right h2 {
    margin-bottom: 25px;
    color: #0A1F2E;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #4a5c66;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    color: #00A8B5;
}

/* Responsive */
@media(max-width: 992px){
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}
/* ================= ORDER SUCCESS ================= */

.order-success {
    padding: 150px 20px;
    background: linear-gradient(180deg,#ffffff,#f4fbfc);
    display: flex;
    justify-content: center;
}

.success-container {
    max-width: 700px;
    width: 100%;
}

.success-card {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow:
        0 25px 50px rgba(0,168,181,0.1),
        0 10px 25px rgba(0,0,0,0.05);
    animation: fadeInUp 0.6s ease;
}

.success-card h1 {
    color: #00A8B5;
    margin-bottom: 20px;
}

.success-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0A1F2E;
}

.success-card p {
    margin-bottom: 15px;
    color: #4a5c66;
}

.back-home-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: linear-gradient(120deg,#00A8B5,#2FE6E6);
    border-radius: 12px;
    text-decoration: none;
    color: #07141F;
    font-weight: 600;
    transition: 0.3s;
}

.back-home-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,168,181,0.3);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width:768px){
    .success-card {
        padding: 40px 20px;
    }
}

/* ===============================
   HOME PRODUCTS SECTION
================================ */

.home-products{
    padding:80px 0;
    background:#f8fbfd;
}

.category-block{
    margin-bottom:80px;
}

.category-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:35px;
    flex-wrap:wrap;
    gap:15px;
}

.category-header h2{
    font-size:28px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:6px;
}

.category-sub{
    font-size:14px;
    color:#64748b;
}

.view-all{
    font-weight:600;
    color:#14B8C4;
    text-decoration:none;
    transition:0.3s;
}

.view-all:hover{
    letter-spacing:1px;
}

/* ===============================
   PRODUCT GRID
================================ */

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.product-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    transition:0.35s ease;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(0,0,0,0.08);
}

/* Image */

.product-image{
    height:220px;
    overflow:hidden;
    background:#f1f5f9;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

/* Content */

.product-content{
    padding:22px;
}

.product-content h3{
    font-size:16px;
    font-weight:600;
    margin-bottom:12px;
    color:#0f172a;
}

.product-price{
    font-size:18px;
    font-weight:700;
    color:#14B8C4;
    margin-bottom:18px;
}

.login-msg{
    font-size:14px;
    color:#ef4444;
    margin-bottom:18px;
}

/* Buttons */



.btn-outline{
    border:1px solid #14B8C4;
    color:#14B8C4;
    padding:8px 16px;
    border-radius:10px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
}

.btn-outline:hover{
    background:#14B8C4;
    color:white;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:1200px){
    .product-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:992px){
    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .product-grid{
        grid-template-columns:1fr;
    }

    .category-header{
        flex-direction:column;
        align-items:flex-start;
    }
}
/* ===================================
   WHOLESALE LOCKED PRICE CTA (FIXED WIDTH)
=================================== */

.price-locked{
    display:inline-flex;            /* key fix */
    align-items:center;
    gap:8px;
    padding:8px 14px;
    margin-bottom:16px;
    border-radius:10px;
    background:linear-gradient(135deg,#f0f9ff,#e0f7fa);
    border:1px solid rgba(20,184,196,0.4);
    font-size:13px;
    font-weight:600;
    color:#0f172a;
    text-decoration:none;
    transition:all 0.25s ease;
}

/* Prevent stretching */
.product-content{
    display:flex;
    flex-direction:column;
    align-items:flex-start; /* important */
}

/* Hover */
.price-locked:hover{
    background:#14B8C4;
    color:white;
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(20,184,196,0.25);
}
/* ===================================
   RETAILER LOGIN INFO MESSAGE
=================================== */

.login-msg{
    display:flex;
    align-items:flex-start;
    gap:10px;
    background:linear-gradient(135deg,#f0f9ff,#ecfeff);
    border:1px solid rgba(20,184,196,0.3);
    padding:12px 14px;
    border-radius:12px;
    margin-bottom:18px;
    font-size:13px;
    color:#0f172a;
}

/* Icon */
.login-msg .lock-icon{
    font-size:16px;
    margin-top:2px;
}

/* Title */
.login-msg strong{
    display:block;
    font-size:13px;
    font-weight:600;
    color:#14B8C4;
    margin-bottom:2px;
}

/* Subtitle */
.login-msg small{
    font-size:12px;
    color:#64748b;
}
/* ===============================
   PRODUCT GRID PREMIUM DESIGN
================================ */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:30px;
}

/* Card */

.product-card{
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    transition:all 0.35s ease;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 45px rgba(0,0,0,0.08);
}

/* Image */

.product-image{
    height:220px;
    overflow:hidden;
    background:#f1f5f9;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

/* Content */

.product-content{
    padding:22px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-title{
    font-size:16px;
    font-weight:600;
    margin-bottom:12px;
    color:#0f172a;
    line-height:1.4;
}

/* Price */

.price-row{
    margin-bottom:18px;
}

.product-price{
    font-size:20px;
    font-weight:700;
    color:#14B8C4;
}

/* Login Box */

.login-box{
    background:#f8fafc;
    padding:10px 12px;
    border-radius:10px;
    font-size:13px;
    color:#64748b;
    margin-bottom:18px;
    border:1px dashed #14B8C4;
}

/* Buttons */


.btn-view{
    flex:1;
    text-align:center;
    padding:8px 0;
    border-radius:10px;
    border:1px solid #14B8C4;
    color:#14B8C4;
    font-size:14px;
    text-decoration:none;
    transition:0.3s;
}

.btn-view:hover{
    background:#14B8C4;
    color:white;
}

.btn-cart{
    flex:1;
    text-align:center;
    padding:8px 0;
    border-radius:10px;
    background:#14B8C4;
    color:white;
    font-size:14px;
    text-decoration:none;
    transition:0.3s;
}

.btn-cart:hover{
    background:#0ea5a8;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:992px){
    .product-image{
        height:200px;
    }
}

@media(max-width:600px){
    .product-grid{
        gap:20px;
    }

    .product-image{
        height:180px;
    }

    .product-content{
        padding:18px;
    }
}
/* ===============================
   CART PREMIUM DESIGN
================================ */

.cart-wrapper{
    padding:80px 0;
    background:#f8fbfd;
}

.cart-container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.cart-heading{
    font-size:32px;
    font-weight:700;
    margin-bottom:40px;
    color:#0f172a;
}

/* Layout */

.cart-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

/* Cart Item */

.cart-item{
    display:flex;
    gap:20px;
    align-items:center;
    background:white;
    padding:20px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    margin-bottom:20px;
    transition:0.3s;
}

.cart-item:hover{
    transform:translateY(-4px);
}

.cart-img img{
    width:100px;
    height:100px;
    object-fit:cover;
    border-radius:14px;
}

.cart-details{
    flex:1;
}

.cart-details h3{
    font-size:16px;
    margin-bottom:6px;
}

.variant{
    font-size:13px;
    color:#64748b;
    margin-bottom:8px;
}

.price-row{
    font-size:14px;
    display:flex;
    gap:20px;
    margin-bottom:8px;
}

.qty{
    color:#64748b;
}

.item-total{
    font-size:18px;
    font-weight:700;
    color:#14B8C4;
}

.remove-btn{
    font-size:18px;
    color:#ef4444;
    text-decoration:none;
    padding:6px 10px;
    border-radius:8px;
}

.remove-btn:hover{
    background:#fee2e2;
}

/* Summary */

.cart-summary{
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    position:sticky;
    top:100px;
    height:fit-content;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin-bottom:12px;
    font-size:14px;
}

.summary-total{
    display:flex;
    justify-content:space-between;
    font-size:18px;
    font-weight:700;
    margin:20px 0;
}

.btn-checkout{
    display:block;
    text-align:center;
    padding:12px;
    background:#14B8C4;
    color:white;
    border-radius:12px;
    text-decoration:none;
    margin-bottom:12px;
    transition:0.3s;
}

.btn-checkout:hover{
    background:#0ea5a8;
}

.btn-continue{
    display:block;
    text-align:center;
    padding:10px;
    border-radius:12px;
    border:1px solid #14B8C4;
    color:#14B8C4;
    text-decoration:none;
    transition:0.3s;
}

.btn-continue:hover{
    background:#14B8C4;
    color:white;
}

/* Empty Cart */

.empty-cart{
    text-align:center;
    padding:80px 20px;
}

.shop-btn{
    padding:12px 20px;
    background:#14B8C4;
    color:white;
    border-radius:12px;
    text-decoration:none;
}

/* Responsive */

@media(max-width:992px){
    .cart-layout{
        grid-template-columns:1fr;
    }

    .cart-summary{
        position:relative;
        top:auto;
    }
}

@media(max-width:600px){
    .cart-item{
        flex-direction:column;
        align-items:flex-start;
    }

    .cart-img img{
        width:100%;
        height:200px;
    }
}
/* ===============================
   SOFT REMOVE BUTTON
================================ */

.remove-btn{
    font-size:13px;
    font-weight:500;
    color:#64748b;
    text-decoration:none;
    padding:6px 10px;
    border-radius:8px;
    background:#f8fafc;
    border:1px solid #e2e8f0;
    transition:all 0.25s ease;
}

.remove-btn:hover{
    background:#f1f5f9;
    color:#0f172a;
    border-color:#cbd5e1;
}

/* ===============================
   SAAS HOME PRODUCTS SECTION
================================ */

.home-products{
    padding:100px 0;
    background:#f9fbfd;
}

/* Category Block */

.category-block{
    margin-bottom:100px;
}

/* Header */

.category-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    margin-bottom:40px;
    gap:20px;
    flex-wrap:wrap;
}

.category-label{
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#14B8C4;
}

.category-title h2{
    font-size:28px;
    font-weight:700;
    margin:8px 0;
    color:#0f172a;
}

.category-title p{
    font-size:14px;
    color:#64748b;
}

.view-all{
    font-size:14px;
    font-weight:600;
    color:#14B8C4;
    text-decoration:none;
    transition:0.3s;
}

.view-all:hover{
    transform:translateX(4px);
}

/* ===============================
   PRODUCT GRID
================================ */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
    gap:35px;
}

/* Card */

.product-card{
    background:white;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    transition:all 0.35s ease;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 60px rgba(0,0,0,0.08);
}

/* Image */

.product-image{
    height:230px;
    background:#f1f5f9;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

/* Content */

.product-content{
    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content h3{
    font-size:16px;
    font-weight:600;
    margin-bottom:14px;
    color:#0f172a;
    line-height:1.4;
}

/* Price */

.price-row{
    margin-bottom:20px;
}

.product-price{
    font-size:20px;
    font-weight:700;
    color:#14B8C4;
}

/* Locked Price */

.price-locked{
    display:inline-block;
    font-size:13px;
    padding:8px 12px;
    border-radius:10px;
    background:#f1f5f9;
    border:1px dashed #14B8C4;
    color:#64748b;
    text-decoration:none;
    margin-bottom:20px;
    transition:0.3s;
}

.price-locked:hover{
    background:#14B8C4;
    color:white;

}



.btn-secondary{
    flex:1;
    text-align:center;
    padding:9px 0;
    border-radius:12px;
    border:1px solid #14B8C4;
    color:#14B8C4;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
    transition:0.3s;
}

.btn-secondary:hover{
    background:#14B8C4;
    color:white;
}

/* ===============================
   RESPONSIVE
================================ */

@media(max-width:768px){

    .home-products{
        padding:60px 0;
    }

    .category-block{
        margin-bottom:70px;
    }

    .product-grid{
        gap:20px;
    }

    .product-image{
        height:190px;
    }
}
/* ===== Product Buttons Wrapper ===== */
.product-buttons{
    display:flex;
    gap:14px;
    margin-top:20px;
}

/* ===== Base Button ===== */
.product-buttons a{
    flex:1 1 48%;
    min-width:130px;
    padding:12px 20px;
    font-size:15px;
    font-weight:600;
    border-radius:12px;
    text-decoration:none;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:all 0.25s ease;
}

/* ===== Secondary ===== */
.btn-secondary{
    background:#f1f5f9;
    color:#334155;
    border:1px solid #e2e8f0;
}

.btn-secondary:hover{
    background:#e2e8f0;
    transform:translateY(-2px);
}

/* ===== Primary ===== */
.btn-primary{
    background:linear-gradient(135deg,#14B8C4,#0ea5b7);
    color:white;
    box-shadow:0 8px 20px rgba(20,184,196,0.3);
}

.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 28px rgba(20,184,196,0.45);
}

/* ===== Mobile Fix ===== */
@media(max-width:480px){

    .product-buttons{
        flex-direction:column;
    }

    .product-buttons a{
        width:100%;
        min-width:100%;
    }
}
/* ===============================
   GLOBAL TYPOGRAPHY SYSTEM
================================ */

:root {
    --primary: #14B8C4;
    --primary-dark: #0ea5a8;
    --dark: #0f172a;
    --text: #334155;
    --muted: #64748b;
    --bg-light: #f8fbfd;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: var(--bg-light);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Headings */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.5px;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 20px; }
p  { font-size: 15px; color: var(--muted); }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 14px;
    padding: 14px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(20,184,196,0.35);
}
.product-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.04),
        0 4px 10px rgba(0,0,0,0.02);
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 45px rgba(0,0,0,0.08),
        0 8px 20px rgba(0,0,0,0.05);
}
.section {
    padding: 100px 20px;
}

.section-sm {
    padding: 70px 20px;
}
.nav-menu a {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary);
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}
.nav-menu a {
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary);
    transition: 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}
.product-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}
.product-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}


/* Empty state */

.empty-state{
    text-align:center;
    padding:80px 20px;
}

.empty-state h3{
    font-size:22px;
    margin-bottom:10px;
}




/* Glow Effect */
.hero-bg-glow{
    position:absolute;
    width:600px;
    height:600px;
    background:radial-gradient(circle, rgba(20,184,196,0.25), transparent 70%);
    top:-200px;
    right:-200px;
    filter:blur(50px);
    animation:floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow{
    from{ transform:translateY(0px); }
    to{ transform:translateY(40px); }
}

.hero-inner{
    position:relative;
    z-index:2;
    max-width:1100px;
}

/* Breadcrumb */
.breadcrumb{
    font-size:13px;
    margin-bottom:20px;
    color:#94a3b8;
}

.breadcrumb a{
    color:#14B8C4;
    text-decoration:none;
    font-weight:500;
}

.breadcrumb span{
    margin:0 6px;
}

/* Badge */
.hero-badge{
    display:inline-block;
    padding:6px 16px;
    border-radius:50px;
    background:rgba(20,184,196,0.15);
    border:1px solid rgba(20,184,196,0.4);
    font-size:12px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}





/* Stats Row */
.hero-stats{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.hero-stats div{
    display:flex;
    flex-direction:column;
}

.hero-stats strong{
    font-size:22px;
    font-weight:700;
    color:#14B8C4;
}

.hero-stats span{
    font-size:13px;
    color:#94a3b8;
}

/* Responsive */
@media(max-width:768px){

    .category-hero{
        padding:90px 20px 70px;
    }

    .category-hero h1{
        font-size:28px;
    }

    .hero-stats{
        gap:30px;
    }
}

/* ===================================
   CLEAN CATEGORY HERO (FINAL FIX)
=================================== */

.cat-hero-clean{
    padding: 140px 20px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    text-align: center;
}

/* Inner Wrapper */
.cat-hero-inner{
    max-width: 850px;
    margin: 0 auto;
}

/* Tag */
.cat-hero-tag{
    display: inline-block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    background: rgba(20,184,196,0.15);
    border: 1px solid #14B8C4;
    color: #14B8C4;
    margin-bottom: 30px;
}

/* TITLE (FORCED WHITE) */
.cat-hero-title{
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff !important;
    line-height: 1.2;
}

/* Description */
.cat-hero-desc{
    font-size: 18px;
    color: #e2e8f0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px){

    .cat-hero-clean{
        padding: 100px 20px;
    }

    .cat-hero-title{
        font-size: 30px;
    }

    .cat-hero-desc{
        font-size: 15px;
    }
}
/* ===================================
   FORCE FIX PRODUCT BUTTON ROW
=================================== */

.product-buttons{
    display: flex !important;
    gap: 12px;
    margin-top: 18px;
    width: 100%;
}

/* Force equal width */
.product-buttons a{
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.25s ease;
}

/* Outline Button */
.product-buttons .btn-outline{
    border: 2px solid #14B8C4 !important;
    color: #14B8C4 !important;
    background: transparent !important;
}

.product-buttons .btn-outline:hover{
    background: #14B8C4 !important;
    color: #ffffff !important;
}

/* Primary Button */
.product-buttons .btn-primary{
    background: linear-gradient(135deg,#14B8C4,#0ea5a8) !important;
    color: #ffffff !important;
    border: none !important;
}

.product-buttons .btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20,184,196,0.35);
}

/* If only one button exists (not logged in) */
.product-buttons a:only-child{
    flex: 1 1 100%;
}

/* ===================================
   PRODUCT CARD STRUCTURE FIX
=================================== */

.product-card{
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s ease;
}

.product-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/* IMAGE */

.product-image{
    height: 220px;
    overflow: hidden;
}

.product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */

.product-content{
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;               /* important */
}

/* Title */

.product-content h3{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
}

/* Price */

.product-price{
    font-size: 20px;
    font-weight: 700;
    color: #14B8C4;
    margin-bottom: 14px;
}

/* Login Message */

.login-msg{
    font-size: 14px;
    color: #ef4444;
    margin-bottom: 14px;
}

/* ===================================
   BUTTON ROW FIX
=================================== */

.product-buttons{
    display: flex;
    gap: 12px;
    margin-top: auto;      /* pushes buttons to bottom */
}

/* Force equal width */

.product-buttons a{
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
    white-space: nowrap;
}

/* Outline */

.btn-outline{
    border: 2px solid #14B8C4;
    color: #14B8C4;
    background: transparent;
}

.btn-outline:hover{
    background: #14B8C4;
    color: #ffffff;
}

/* Primary */

.btn-primary{
    background: linear-gradient(135deg,#14B8C4,#0ea5a8);
    color: #ffffff;
}

.btn-primary:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(20,184,196,0.35);
}

/* If only one button */

.product-buttons a:only-child{
    flex: 1 1 100%;
}

/* ===================================
   GRID FIX (Equal Height Cards)
=================================== */

.product-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
    gap: 30px;
}

/* Responsive */

@media (max-width: 768px){
    .product-image{
        height: 190px;
    }
}
/* ===================================
   FORCE 3 PRODUCTS PER ROW
=================================== */

/* ===================================
   PRODUCT GRID RESPONSIVE
=================================== */

.product-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ===== Tablet ===== */
@media (max-width: 992px){
    .product-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ===== Mobile ===== */
@media (max-width: 600px){
    .product-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-card{
        border-radius: 14px;
    }

    .product-image{
        height: 200px;
    }

    .product-content{
        padding: 18px;
    }

    .product-content h3{
        font-size: 15px;
    }

    .product-price{
        font-size: 18px;
    }
}
@media (max-width: 480px){

    .product-buttons{
        flex-direction: column;
        gap: 10px;
    }

    .product-buttons a{
        width: 100%;
    }
}
/* ===================================
   PREMIUM WHY CHOOSE US SECTION
=================================== */

.why-premium{
    padding: 120px 20px;
    background: linear-gradient(180deg,#ffffff,#f8fbfd);
}

.why-container{
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */

.why-header{
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.why-tag{
    display: inline-block;
    padding: 6px 18px;
    background: #e6f7f9;
    color: #14B8C4;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.why-header h2{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.why-header p{
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

/* Grid */

.why-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */

.why-card{
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.05),
        0 5px 15px rgba(0,0,0,0.03);
    transition: 0.35s ease;
}

.why-card:hover{
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(20,184,196,0.15);
}

/* Icon */

.why-icon{
    font-size: 36px;
    margin-bottom: 20px;
}

/* Title */

.why-card h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0f172a;
}

/* Text */

.why-card p{
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 992px){
    .why-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){
    .why-premium{
        padding: 80px 20px;
    }

    .why-header h2{
        font-size: 26px;
    }

    .why-grid{
        grid-template-columns: 1fr;
    }
}
/* ===============================
   FMCG SEARCH SECTION
================================ */

.fmcg-search-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

/* Wrapper */
.search-wrapper {
    max-width: 900px;
    margin: auto;
}

/* ===============================
   SEARCH FORM
================================ */

.fmcg-search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    overflow: hidden;
    border: 1px solid rgba(20,184,196,0.2);
    box-shadow: 0 20px 40px rgba(15,23,42,0.05);
    transition: 0.3s ease;
}

.fmcg-search-form:hover {
    transform: translateY(-3px);
}

/* Category Dropdown */
.search-category {
    border: none;
    padding: 15px 18px;
    font-size: 14px;
    background: #f1f7f9;
    outline: none;
    border-right: 1px solid #e6eef3;
    cursor: pointer;
}

/* Input */
.fmcg-search-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-size: 15px;
}

/* Button */
.fmcg-search-form button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border: none;
    padding: 16px 28px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.fmcg-search-form button:hover {
    transform: scale(1.05);
}

/* ===============================
   QUICK CATEGORY LINKS
================================ */

.search-quick-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.search-quick-links a {
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
    background: rgba(20,184,196,0.1);
    color: var(--primary-dark);
    transition: 0.3s ease;
}

.search-quick-links a:hover {
    background: var(--primary);
    color: #fff;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {

    .fmcg-search-form {
        flex-direction: column;
        border-radius: 20px;
    }

    .search-category {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e6eef3;
    }

    .fmcg-search-form input {
        width: 100%;
    }

    .fmcg-search-form button {
        width: 100%;
        border-radius: 0 0 20px 20px;
    }
}
/* ================= SEARCH HERO ================= */

.search-hero {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #0b3b5a 100%);
    padding: 100px 20px 80px;
    text-align: center;
    color: #fff;
}

.search-hero-content {
    position: relative;
    max-width: 850px;
    margin: auto;
}

/* Badge */
.search-badge {
    background: rgba(20,184,196,0.15);
    color: #7dd3fc;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

/* Heading */
.search-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 20px 0 12px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

/* Subtitle */
.search-hero p {
    color: #e2e8f0;
    font-size: 16px;
    margin-bottom: 30px;
}

/* ================= SEARCH BAR ================= */

.search-hero-form {
    display: flex;
    max-width: 720px;
    margin: auto;
    background: #ffffff;
    border-radius: 60px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

/* Input */
.search-hero-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    outline: none;
    font-size: 15px;
    background: #ffffff;   /* Changed from grey */
}

/* Button */
.search-hero-form button {
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    color: #fff;
    border: none;
    padding: 0 32px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.search-hero-form button:hover {
    transform: scale(1.05);
}
.min-order-warning {
    background: #fff3cd;
    color: #856404;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 14px;
    text-align: center;
}

.disabled-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}
.min-order-info {
    margin-top: 10px;
    padding: 10px;
    background: #e6f7f9;
    border-radius: 8px;
    font-size: 14px;
    color: #0ea5a8;
}
.product-image {
    position: relative;
}

.discount-badge-img {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0ea5a8;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 6px;
    font-weight: 600;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.mrp {
    text-decoration: line-through;
    color: #888;
    font-size: 14px;
}

.selling-price {
    color: #0ea5a8;
    font-weight: 700;
    font-size: 18px;
}

.you-save {
    font-size: 12px;
    color: #16a34a;
    margin-bottom: 8px;
}

.out-of-stock {
    background: #ffe5e5;
    color: #d8000c;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
}
/* ===============================
   ANNOUNCEMENT SCROLL BAR
================================ */

.announcement-bar {
    background: linear-gradient(90deg, #0f172a, #0b3b5a);
    color: #e2e8f0;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.announcement-track {
    display: inline-block;
    white-space: nowrap;
    animation: scrollText 20s linear infinite;
    font-size: 14px;
    font-weight: 500;
}

.announcement-track span {
    margin: 0 20px;
}

/* Smooth continuous scroll */
@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hover pause */
.announcement-bar:hover .announcement-track {
    animation-play-state: paused;
}
.product-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* PRICE BOX */
.price-box {
    margin-bottom: 6px;
}

.mrp-line {
    font-size: 13px;
    color: #888;
}

.mrp-value {
    text-decoration: line-through;
    margin-left: 5px;
}

.selling-line {
    font-size: 15px;
    margin-top: 4px;
}

.selling-label {
    font-weight: 500;
    color: #444;
}

.selling-price {
    font-weight: 700;
    color: #0ea5a8;
    margin-left: 6px;
    font-size: 18px;
}

/* Savings */
.savings-info {
    margin-top: 4px;
    font-size: 13px;
    color: #16a34a;
    font-weight: 500;
}

/* GST Note */
.gst-note {
    font-size: 11px;
    color: #777;
    margin-top: 4px;
}

/* Discount Badge */
.discount-badge-img {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0ea5a8;
    color: #fff;
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 6px;
    font-weight: 600;
}

/* Out of stock */
.out-of-stock {
    background: #ffe5e5;
    color: #d8000c;
    padding: 6px 10px;
    font-size: 13px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 600;
}
/* ==========================================
   MOBILE APP OPTIMIZATION FILE
   For FMCGTP Mobile View
========================================== */

@media (max-width: 768px) {

    /* ================= GLOBAL ================= */

    body {
        background: #f2f6f8;
    }

    h1 { font-size: 24px; }
    h2 { font-size: 20px; }
    h3 { font-size: 16px; }

    .section,
    .home-products,
    .product-section,
    .cart-wrapper,
    .checkout-section {
        padding: 60px 16px;
    }

    /* ================= HEADER ================= */

    .header {
        padding: 12px 16px;
    }

    .logo img {
        height: 38px;
    }

    .nav-menu {
        top: 60px;
        padding: 20px 0;
    }

    /* ================= HERO ================= */

    .home-hero {
        min-height: 65vh;
        padding: 80px 16px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        width: 100%;
        text-align: center;
        min-height: 44px;
    }

    /* ================= PRODUCT GRID ================= */

    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 18px;
    }

    .product-card {
        border-radius: 14px;
    }

    .product-image {
        height: 170px;
    }

    .product-content {
        padding: 14px;
    }

    .product-title {
        font-size: 14px;
        line-height: 1.3;
    }

    .selling-price {
        font-size: 16px;
    }

    .product-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 14px;
    }

    .product-buttons a {
        width: 100%;
        min-height: 44px;
        font-size: 14px;
    }

    /* ================= SEARCH ================= */

    .fmcg-search-form {
        flex-direction: column;
        border-radius: 16px;
    }

    .search-category {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e6eef3;
    }

    .fmcg-search-form input {
        width: 100%;
        padding: 14px;
        font-size: 14px;
    }

    .fmcg-search-form button {
        width: 100%;
        padding: 14px;
        min-height: 44px;
        border-radius: 0 0 16px 16px;
    }

    /* ================= CART ================= */

    .cart-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
        border-radius: 14px;
    }

    .cart-img img {
        width: 100%;
        height: 180px;
    }

    .cart-summary {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 20px 20px 0 0;
        padding: 20px;
        background: white;
        box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
        z-index: 100;
    }

    .cart-wrapper {
        padding-bottom: 140px; /* prevent overlap */
    }

    .btn-checkout {
        min-height: 44px;
    }

    /* ================= CHECKOUT ================= */

    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .checkout-left,
    .checkout-right {
        padding: 20px;
        border-radius: 14px;
    }

    .place-order-btn {
        min-height: 44px;
    }

    /* ================= ANNOUNCEMENT BAR ================= */

    .announcement-track {
        font-size: 12px;
    }

}


/* ================= REMOVE HOVER ON TOUCH DEVICES ================= */

@media (hover: none) {

    .product-card:hover,
    .why-card:hover,
    .category-card:hover,
    .cart-item:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

}
/* ================================
   PREMIUM SEARCH RESULT HEADER
================================ */

.search-result-header {
    background: linear-gradient(180deg,#ffffff,#f8fbfd);
    padding: 35px 0;
    border-bottom: 1px solid #eef2f6;
}

.result-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* LEFT SIDE */

.result-left h2 {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.result-left p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* Keyword Tag */

.keyword {
    background: rgba(20,184,196,0.15);
    color: #14B8C4;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* RIGHT SIDE */

.clear-search {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #14B8C4;
    color: #14B8C4;
    transition: 0.3s ease;
}

.clear-search:hover {
    background: #14B8C4;
    color: #fff;
}

/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    .result-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .result-left h2 {
        font-size: 20px;
    }

    .result-left p {
        font-size: 13px;
    }
}
.variant-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e5e7eb;
}

/* Prevent shrinking */
.variant-field {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

/* Fixed widths */
.variant-field.small {
    width: 110px;
}

.variant-field.medium {
    width: 160px;
}

/* MRP + Selling wider */
.variant-field input[name="mrp[]"],
.variant-field input[name="selling_price[]"] {
    width: 150px;
}

/* 🔥 FORCE STOCK LONG */
.variant-field input[name="stock[]"] {
    width: 160px !important;
    min-width: 160px;
    padding: 10px 12px;
    border: 2px solid #10b981;
    background: #ecfdf5;
    font-weight: 600;
}

/* Common input style */
.variant-field input,
.variant-field select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    background: #ffffff;
}

/* Remove button */
.variant-row button {
    height: 40px;
    padding: 0 15px;
    border-radius: 8px;
    border: none;
    background: #ef4444;
    color: #fff;
    cursor: pointer;
}
/* ===============================
   PREMIUM ORDERS PAGE (FRONTEND)
================================ */

.orders-section{
    padding:80px 0;
    background:#f8fafc;
}

.orders-table-wrapper{
    background:white;
    border-radius:20px;
    padding:35px;
    box-shadow:0 20px 50px rgba(0,0,0,0.05);
}

.orders-table{
    width:100%;
    border-collapse:collapse;
}

.orders-table th{
    text-align:left;
    padding:18px;
    font-size:13px;
    letter-spacing:0.5px;
    text-transform:uppercase;
    color:#6b7280;
    border-bottom:1px solid #e5e7eb;
}

.orders-table td{
    padding:20px 18px;
    border-bottom:1px solid #f1f5f9;
    font-size:15px;
}

.orders-table tr:hover{
    background:#f1f9ff;
    transition:0.3s ease;
}

/* Order ID styling */
.order-id{
    font-weight:600;
    color:#0f172a;
}

/* Order Total highlight */
.order-total{
    font-weight:600;
    color:#0f766e;
}

/* Status Pills */
.status-pill{
    padding:6px 14px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
}

.status-pill.pending{
    background:#fef3c7;
    color:#92400e;
}

.status-pill.confirmed{
    background:#dbeafe;
    color:#1e40af;
}

.status-pill.delivered{
    background:#d1fae5;
    color:#065f46;
}

.status-pill.cancelled{
    background:#fee2e2;
    color:#991b1b;
}

/* Buttons */
.small-btn{
    padding:7px 14px;
    font-size:12px;
    border-radius:10px;
}

/* Empty State */
.empty-orders{
    text-align:center;
    padding:60px 20px;
}

/* Mobile */
@media(max-width:768px){

    .orders-table-wrapper{
        padding:20px;
    }

    .orders-table thead{
        display:none;
    }

    .orders-table,
    .orders-table tbody,
    .orders-table tr,
    .orders-table td{
        display:block;
        width:100%;
    }

    .orders-table tr{
        background:white;
        margin-bottom:20px;
        border-radius:16px;
        padding:20px;
        box-shadow:0 10px 25px rgba(0,0,0,0.05);
    }

    .orders-table td{
        border:none;
        padding:8px 0;
        display:flex;
        justify-content:space-between;
    }

}
/* ======================================
   MOBILE FIX – ORDERS PAGE
====================================== */

@media(max-width:768px){

    /* Reduce hero height */
    .about-hero{
        padding:60px 20px;
        text-align:center;
    }

    .about-hero-content h1{
        font-size:26px;
        line-height:1.3;
    }

    .about-hero-content p{
        font-size:14px;
    }

    /* Table Card Layout */
    .orders-table{
        border-collapse:separate;
        border-spacing:0 15px;
    }

    .orders-table thead{
        display:none;
    }

    .orders-table tr{
        display:block;
        background:#ffffff;
        padding:18px;
        border-radius:16px;
        box-shadow:0 8px 20px rgba(0,0,0,0.05);
        margin-bottom:18px;
    }

    .orders-table td{
        display:flex;
        justify-content:space-between;
        align-items:center;
        padding:8px 0;
        border:none;
        font-size:14px;
    }

    .orders-table td::before{
        content:attr(data-label);
        font-weight:600;
        color:#6b7280;
        font-size:13px;
    }

    .order-actions{
        flex-direction:column;
        align-items:stretch;
        gap:8px;
        margin-top:10px;
    }

    .order-actions a{
        width:100%;
        text-align:center;
    }

    .orders-table-wrapper{
        padding:15px;
    }

}
/* ==========================================
   🔥 FINAL GLOBAL MOBILE FIX (OVERRIDE)
   Place this at VERY END of CSS file
========================================== */

@media (max-width: 768px){

    /* ================= GLOBAL RESET ================= */

    body {
        overflow-x: hidden;
    }

    .container,
    .product-container,
    .cart-container,
    .checkout-container,
    .footer-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    h1 { font-size: 24px !important; }
    h2 { font-size: 20px !important; }
    h3 { font-size: 16px !important; }

    /* ================= HEADER ================= */

    .header {
        padding: 12px 16px !important;
    }

    .logo img {
        height: 40px !important;
    }

    /* ================= HERO SECTIONS ================= */

    .home-hero,
    .about-hero,
    .cat-hero-clean {
        padding: 80px 16px !important;
    }

    .hero-title,
    .cat-hero-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .hero-subtitle,
    .cat-hero-desc {
        font-size: 14px !important;
    }

    /* ================= PRODUCT GRID ================= */

    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .product-card {
        border-radius: 14px !important;
    }

    .product-image {
        height: 180px !important;
    }

    .product-content {
        padding: 16px !important;
    }

    .product-title {
        font-size: 14px !important;
    }

    .product-price,
    .selling-price {
        font-size: 16px !important;
    }

    /* Buttons Stack */
    .product-buttons {
        flex-direction: column !important;
        gap: 10px !important;
    }

    .product-buttons a {
        width: 100% !important;
        min-height: 44px;
    }

    /* ================= CART ================= */

    .cart-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .cart-item {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .cart-img img {
        width: 100% !important;
        height: 180px !important;
    }

    .cart-summary {
        position: relative !important;
        top: auto !important;
    }

    /* ================= CHECKOUT ================= */

    .checkout-grid {
        grid-template-columns: 1fr !important;
    }

    .checkout-left,
    .checkout-right {
        padding: 20px !important;
    }

    /* ================= ORDERS PAGE ================= */

    .orders-table thead {
        display: none !important;
    }

    .orders-table tr {
        display: block !important;
        background: white;
        margin-bottom: 16px;
        padding: 16px;
        border-radius: 14px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    }

    .orders-table td {
        display: flex !important;
        justify-content: space-between;
        padding: 6px 0 !important;
        border: none !important;
        font-size: 14px;
    }

    .order-actions {
        flex-direction: column !important;
        gap: 8px;
    }

    .order-actions a {
        width: 100%;
        text-align: center;
    }

    /* ================= FOOTER ================= */

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

}
/* ======================================
   ORDER DETAILS PAGE – MOBILE FIX
====================================== */

@media (max-width: 768px){

    /* Section spacing */
    .section{
        padding:60px 16px !important;
    }

    /* Page Title */
    .section h1{
        font-size:22px !important;
        margin-bottom:15px;
    }

    /* Download Invoice Button */
    .section a{
        display:inline-block;
        width:100%;
        text-align:center;
        margin-top:10px;
        padding:12px 0 !important;
        font-size:14px;
        border-radius:10px !important;
    }

    /* ================= TABLE → CARD LAYOUT ================= */

    .saas-table{
        border-collapse:separate;
        border-spacing:0 15px;
        width:100%;
    }

    .saas-table thead{
        display:none; /* hide header on mobile */
    }

    .saas-table tr{
        display:block;
        background:#ffffff;
        padding:16px;
        border-radius:16px;
        box-shadow:0 10px 25px rgba(0,0,0,0.05);
        margin-bottom:15px;
    }

    .saas-table td{
        display:flex;
        justify-content:space-between;
        padding:6px 0;
        border:none;
        font-size:14px;
    }

    /* Add labels */
    .saas-table td:nth-child(1)::before{ content:"Product"; font-weight:600; color:#6b7280; }
    .saas-table td:nth-child(2)::before{ content:"Price"; font-weight:600; color:#6b7280; }
    .saas-table td:nth-child(3)::before{ content:"Qty"; font-weight:600; color:#6b7280; }
    .saas-table td:nth-child(4)::before{ content:"Total"; font-weight:600; color:#6b7280; }

    /* Total Section */
    .section h3{
        margin-top:20px !important;
        padding:15px;
        background:#f1f9ff;
        border-radius:12px;
        font-size:18px !important;
        text-align:center;
        color:#0f766e;
    }

}
/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0F2B3A;
    min-width: 230px;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    padding: 10px 0;
    z-index: 999;
}

.dropdown-content a {
    padding: 10px 15px;
    color: white;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background: #143B4F;
}

.dropdown.active .dropdown-content {
    display: block;
}

/* Arrow animation */
.arrow {
    display: inline-block;
    transition: 0.3s;
}

.dropdown.active .arrow {
    transform: rotate(180deg);
}

/* Mobile fix */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        box-shadow: none;
    }
}

/* ================= QUANTITY CONTROLS ================= */

.qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.qty-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Round premium buttons */
.qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(120deg, #14B8C4, #0EA5B7);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 10px rgba(20,184,196,0.3);
}

.qty-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(20,184,196,0.5);
}

.qty-btn:active {
    transform: scale(0.95);
}

/* Quantity number */
.qty-number {
    min-width: 28px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: #0F172A;
    background: #F1F5F9;
    padding: 6px 10px;
    border-radius: 8px;
}

/* ================= REMOVE BUTTON ================= */

.remove-btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    background: #FEE2E2;
    color: #B91C1C;
    font-weight: 500;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.25s ease;
}

.remove-btn:hover {
    background: #EF4444;
    color: #fff;
}

/* ================= CART MESSAGE ================= */

.cart-message {
    background: #FFF3CD;
    color: #856404;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 18px;
    text-align: center;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(120deg, #2FE6E6, #00A8B5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    margin-top: 6px;
    font-size: 13px;
    color: #8ACFD5;
    letter-spacing: 0.3px;
}
.cart-badge {
    background: linear-gradient(135deg, #14B8C4, #0EA5A4);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    min-width: 22px;
    text-align: center;
}
.invoice-btn {
    display: inline-block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 25px;
    background: linear-gradient(135deg, #00B3FF, #22C55E);
    color: #ffffff;
    text-decoration: none !important;   /* 🔥 removes underline */
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 179, 255, 0.3);
}

.invoice-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 179, 255, 0.5);
    background: linear-gradient(135deg, #0099dd, #16a34a);
    text-decoration: none !important;   /* 🔥 prevents underline on hover */
}

/* =========================================
   PRODUCT CARD – PREMIUM QUANTITY DESIGN
========================================= */

.product-buttons{
    margin-top:15px;
}

/* Wrapper */
.quantity-cart-wrapper{
    display:flex;
    align-items:center;
    gap:12px;
}

/* ===== Quantity Selector ===== */

.qty-selector{
    display:flex;
    align-items:center;
    height:42px;
    border-radius:50px;
    overflow:hidden;
    background:#ffffff;
    border:1px solid #e2e8f0;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}

/* + and - buttons */
.qty-btn{
    width:42px;
    height:42px;
    border:none;
    cursor:pointer;
    font-size:20px;
    font-weight:700;
    color:#ffffff;
    background:linear-gradient(120deg,#00A8B5,#2FE6E6);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.25s ease;
}

/* Hover effect */
.qty-btn:hover{
    transform:scale(1.08);
    box-shadow:0 6px 18px rgba(0,168,181,0.4);
}

/* Click effect */
.qty-btn:active{
    transform:scale(0.95);
}

/* Quantity input */
.qty-input{
    width:45px;
    text-align:center;
    border:none;
    font-size:15px;
    font-weight:600;
    background:#ffffff;
    color:#07141F;
}

/* Remove arrows */
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button{
    -webkit-appearance:none;
    margin:0;
}

.qty-input:focus{
    outline:none;
}

/* ===== Add To Cart Button ===== */

.quantity-cart-wrapper .btn-primary{
    flex:1;
    height:42px;
    border:none;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    color:#07141F;
    background:linear-gradient(120deg,#00A8B5,#2FE6E6);
    box-shadow:0 8px 22px rgba(0,168,181,0.35);
    transition:all 0.25s ease;
}

/* Hover */
.quantity-cart-wrapper .btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(0,168,181,0.45);
}

/* Active */
.quantity-cart-wrapper .btn-primary:active{
    transform:scale(0.98);
}

/* ===== Mobile Layout ===== */

@media(max-width:600px){

    .quantity-cart-wrapper{
        flex-direction:column;
        align-items:stretch;
    }

    .qty-selector{
        width:100%;
        justify-content:center;
    }

    .quantity-cart-wrapper .btn-primary{
        width:100%;
    }
}
/* ===== CATEGORY PAGE ===== */

.category-hero{
    background:#f8f9fb;
    padding:50px 0 30px;
    border-bottom:1px solid #eee;
}

.category-hero-inner{
    text-align:center;
}

.category-hero h1{
    font-size:34px;
    font-weight:700;
    margin-bottom:8px;
}

.category-hero p{
    color:#666;
    font-size:15px;
}

.category-hero h1::after{
    content:'';
    display:block;
    width:60px;
    height:3px;
    background:#00A8B5;
    margin:15px auto 0;
    border-radius:4px;
}

/* ===== Product Grid Fix ===== */

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin-top:40px;
}
/* ===== FORCE 3 PRODUCTS PER ROW ===== */

.product-grid{
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px;
    margin-top: 40px;
}

/* Tablet */
@media (max-width: 992px){
    .product-grid{
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile */
@media (max-width: 576px){
    .product-grid{
        grid-template-columns: 1fr !important;
    }
}
/* ===== Cart Top Actions ===== */

.cart-top-actions{
    display:flex;
    justify-content:flex-end;
    margin-bottom:20px;
}

/* Premium Soft Button */
.clear-cart-btn{
    background: linear-gradient(135deg, #f8f9fb, #eef1f5);
    color: #444;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #e0e4ea;
    transition: all 0.3s ease;
    display:inline-flex;
    align-items:center;
    gap:6px;
}

/* Hover Effect */
.clear-cart-btn:hover{
    background: #ffecec;
    color: #d63333;
    border-color: #ffd6d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(214, 51, 51, 0.15);
}
.back-btn{
    display:inline-block;
    padding:6px 14px;
    background:#f1f5f9;
    color:#111;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.back-btn:hover{
    background:#e2e8f0;
    transform:translateX(-3px);
}
