@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
    --bg:#F8F3EE;
    --white:#ffffff;

    --navy:#1E2A5A;
    --navy-dark:#121B3D;

    --rose:#C58B73;
    --rose-light:#E5C1B3;

    --text:#374151;
    --border:#E8D8CF;

    --gradient:
    linear-gradient(
    90deg,
    #D9A18B 0%,
    #C58B73 35%,
    #7A5A7A 70%,
    #1E2A5A 100%
    );
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
    font-family:'Poppins',sans-serif;
}

body{
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

/* ==========================================
   DESKTOP NAVBAR STYLES
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
}

.logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Horizontal Alignment for Links & Icons */
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1E2A5A;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #C58B73;
}

/* Cart Badge */
.cart-link {
  position: relative;
}

#cart-count {
  background: #C58B73;
  color: #fff;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 2px;
}

/* Admin Button */
.btn-admin {
  background: #1E2A5A;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background 0.3s ease;
}

.btn-admin:hover {
  background: #2b1055;
}

.menu-toggle, .close-menu {
  display: none;
  font-size: 24px;
  color: #1E2A5A;
  cursor: pointer;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE MENU (< 1024px)
   ========================================== */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .close-menu {
    display: block;
    position: absolute;
    top: 20px;
    right: 25px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen by default */
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px 30px;
    gap: 20px;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
  }

  /* Slide-in class triggered via JS */
  .nav-links.active {
    right: 0;
  }

  /* Dimmed Background Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  .overlay.show {
    opacity: 1;
    visibility: visible;
  }
}
/* Background Overlay for Mobile Menu */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 9998;
}

#overlay.active {
    display: block;
}

/* ==========================================================================
   HERO & SECTIONS
   ========================================================================== */

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:140px 20px 80px;
}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-size:4rem;
    color:var(--navy);
    line-height:1.2;
}

.hero p{
    margin:25px 0;
    font-size:1.15rem;
    color:#6B7280;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}
/* ================= SHIVAAY AI CHATBOT STYLES ================= */

/* 1. Toggle Button (Bottom-Right Floating Bar) */
button.chatbot-toggle-btn {
    position: fixed !important;
    bottom: 25px !important;
    right: 25px !important;
    width: auto !important; /* Override global width 100% */
    max-width: fit-content !important;
    background: #131921 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    z-index: 10000 !important;
    transition: transform 0.2s ease, background 0.2s ease !important;
}

button.chatbot-toggle-btn:hover {
    transform: scale(1.05) !important;
    background: #232f3e !important;
}

/* 2. Chat Window Container */
.chat-container {
    position: fixed !important;
    bottom: 85px !important;
    right: 25px !important;
    width: 360px !important;
    max-width: 90vw !important;
    height: 480px !important;
    background: #ffffff !important;
    border: 1px solid #d5d9d9 !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    display: none; /* JS will toggle flex */
    flex-direction: column !important;
    overflow: hidden !important;
    z-index: 10001 !important;
}

/* 3. Header Styling */
.chat-header {
    background: #131921;
    color: #ffffff;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bot-avatar {
    width: 32px;
    height: 32px;
    background: #febd69;
    color: #131921;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
}

.bot-title {
    font-size: 15px;
    font-weight: 600;
}

.bot-status {
    font-size: 11px;
    color: #00f2fe;
}

button.close-chat-btn {
    background: none !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 22px !important;
    cursor: pointer !important;
    width: auto !important;
    padding: 0 !important;
    line-height: 1 !important;
}

/* 4. Messages Feed Area */
.chat-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f7f9fa;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.message {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 1.4;
}

.message.bot {
    background: #ffffff;
    color: #0f1111;
    border: 1px solid #e7e7e7;
    align-self: flex-start;
    border-top-left-radius: 2px;
}

.message.user {
    background: #ffd814;
    color: #0f1111;
    align-self: flex-end;
    border-top-right-radius: 2px;
    font-weight: 500;
}

/* 5. Input Field Area */
.chat-input-area {
    display: flex;
    padding: 10px;
    border-top: 1px solid #e7e7e7;
    background: #ffffff;
    gap: 8px;
    align-items: center;
}

.chat-input-area input {
    flex: 1;
    margin: 0 !important;
    padding: 9px 12px !important;
    border: 1px solid #888c8c !important;
    border-radius: 20px !important;
    font-size: 13.5px !important;
    outline: none !important;
}

.chat-input-area input:focus {
    border-color: #e77600 !important;
}

button.chat-send-btn {
    background: #131921 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 14px !important;
    padding: 0 !important;
}
/* BUTTONS */
.btn,
button{
    padding:14px 30px;
    border:none;
    border-radius:12px;
    background:var(--gradient);
    color:white;
    text-decoration:none;
    cursor:pointer;
    font-weight:600;
    transition:.4s;
}

.btn:hover,
button:hover{
    transform:translateY(-4px);
    box-shadow: 0 10px 25px rgba(197,139,115,.35);
}

section{
    padding:90px 8%;
}

section h2{
    text-align:center;
    font-size:3rem;
    color:var(--navy);
    margin-bottom:40px;
}

/* ABOUT */
.about p{
    max-width:900px;
    margin:auto;
    text-align:center;
    font-size:18px;
    line-height:1.8;
}

/* WORK */
.work-grid{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.card{
    width:350px;
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow: 0 15px 35px rgba(197,139,115,.25);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card h3{
    padding:18px;
    text-align:center;
    color:var(--navy);
}

/* PRICING */
.pricing-container{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:30px;
}

.price-card{
    width:320px;
    background:white;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.price-card:hover{
    transform:translateY(-10px);
}

.price-card h3{
    color:var(--rose);
}

.price-card h1{
    color:var(--navy);
    margin:15px 0;
    font-size:2.8rem;
}

.featured{
    border:2px solid var(--rose);
}

/* TESTIMONIALS */
.testimonial-box{
    max-width:800px;
    margin:20px auto;
    background:white;
    padding:25px;
    border-left:5px solid var(--rose);
    border-radius:15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.testimonial-box p{
    font-size:18px;
    line-height:1.8;
}

.testimonial-box h4{
    margin-top:15px;
    color:var(--navy);
}

/* CONTACT */
.contact{
    padding:80px 20px;
}

.contact h2{
    text-align:center;
    margin-bottom:40px;
    font-size:3rem;
}

.contact form{
    max-width:900px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact input,
.contact textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:15px;
    font-size:16px;
    outline:none;
}

.contact textarea{
    min-height:180px;
    resize:vertical;
}

.contact button{
    width:220px;
    padding:16px;
    border:none;
    border-radius:12px;
    cursor:pointer;
}

/* ==========================================================================
   REVIEW LAYOUT
   ========================================================================== */

.review-layout-desktop {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 90% !important;
    max-width: 1200px !important;
    margin: 50px auto !important;
    padding: 0 !important;
}

.review-layout-desktop .stats-section, 
.review-layout-desktop .form-section {
    width: 100% !important;
    max-width: 100% !important;
    background: #ffffff !important;
    padding: 35px !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06) !important;
    box-sizing: border-box !important;
    display: block !important;
}

.star-rating-selector {
    display: flex;
    gap: 8px;
    font-size: 30px;
    color: #ccc;
    margin: 10px 0;
}
.star-btn {
    cursor: pointer;
    transition: 0.2s;
}
.star-btn.active, .star-btn:hover {
    color: #f1c40f;
}

@media (min-width: 850px) {
    .review-layout-desktop {
        flex-direction: row !important;
        align-items: stretch !important;
        justify-content: space-between !important;
        gap: 40px !important;
    }

    .review-layout-desktop .stats-section {
        flex: 4.2 !important;
        margin-bottom: 0 !important;
    }

    .review-layout-desktop .form-section {
        flex: 5.8 !important;
        margin-bottom: 0 !important;
    }
}

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.form-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}
.form-group label {
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 14px;
}
.form-group input, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    font-size: 14px;
}

/* CHECKOUT & CART */
.checkout-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.billing-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.btn-checkout {
    background: linear-gradient(135deg, #2b1055, #7597de);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.btn-checkout:hover {
    opacity: 0.9;
}

#cart-count{
    background:var(--rose);
    color:white;
    padding:3px 8px;
    border-radius:50%;
    font-size:12px;
}

.cart-page{
    max-width:1200px;
    margin:120px auto;
    padding:20px;
}

.cart-table{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:15px;
    overflow:hidden;
}

.cart-table th{
    background:var(--gradient);
    color:white;
    padding:18px;
}

.cart-table td{
    padding:18px;
    border-bottom:1px solid #eee;
}

.cart-summary{
    margin-top:30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

/* AUTH & LOGIN */
.auth-container{
    max-width:450px;
    margin:140px auto;
    padding:30px;
    background:white;
    border-radius:20px;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.auth-container h2{
    text-align:center;
    margin-bottom:20px;
    color:var(--navy);
}

.auth-container input{
    width:100%;
    padding:15px;
    margin:10px 0;
    border:1px solid var(--border);
    border-radius:12px;
}

footer{
    text-align:center;
    padding:30px;
    margin-top:50px;
    background:white;
    border-top:1px solid var(--border);
}

/* ==========================================================================
   RESPONSIVE GLOBAL MEDIA QUERIES
   ========================================================================== */
@media(max-width:768px){
    .navbar{
        transform: translateY(0) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
    }
    
    .logo img{
        height:45px;
    }

    .menu-toggle{
        display:block;
        font-size:26px;
        color:var(--navy);
        cursor:pointer;
    }

    .close-menu {
        display: block;
        align-self: flex-end;
        font-size: 24px;
        color: var(--navy);
        cursor: pointer;
        margin-bottom: 10px;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:280px;
        height:100vh;
        background:#fff;
        display:flex;
        flex-direction:column;
        padding:25px;
        gap:20px;
        transition:.4s ease;
        box-shadow:-5px 0 15px rgba(0,0,0,.15);
        z-index: 9999;
    }

    .nav-links.active{
        right:0;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .card, .price-card{
        width:100% !important;
    }

    section{
        padding:80px 20px;
    }

    .contact{
        padding:60px 15px;
    }

    .contact h2{
        font-size:2rem;
    }

    .contact button{
        width:100%;
    }
}
/* ===========================================
   CART PAGE
=========================================== */

body{
    font-family:'Poppins',sans-serif;
    background:#f5f5f7;
}

/* Header */

.cart-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 60px;

    background:#fff;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    position:sticky;

    top:0;

    z-index:999;

}

.logo img{

    width:65px;

}

.cart-title h2{

    color:#1E2A5A;

    font-size:32px;

}

.continue-shopping a{

    text-decoration:none;

    color:#fff;

    background:#1E2A5A;

    padding:12px 22px;

    border-radius:8px;

    transition:.3s;

}

.continue-shopping a:hover{

    background:#C58B73;

}

/* Main */

.cart-wrapper{

    width:92%;

    max-width:1400px;

    margin:40px auto;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:35px;

}

/* Left */

.cart-left{

    background:#fff;

    border-radius:15px;

    padding:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.cart-left h3{

    margin-bottom:25px;

    color:#1E2A5A;

}

/* Right */

.summary-card{

    background:#fff;

    padding:30px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    position:sticky;

    top:100px;

}

.summary-card h2{

    margin-bottom:20px;

    color:#1E2A5A;

}

.summary-row{

    display:flex;

    justify-content:space-between;

    margin:20px 0;

    font-size:18px;

}

.total{

    font-size:22px;

    font-weight:bold;

}

/* Checkout */

.checkout-btn{

    display:block;

    text-align:center;

    background:linear-gradient(90deg,#C58B73,#1E2A5A);

    color:#fff;

    padding:16px;

    border-radius:10px;

    text-decoration:none;

    margin-top:30px;

    font-size:18px;

    transition:.3s;

}

.checkout-btn:hover{

    transform:translateY(-3px);

}

/* Cart Items */

.cart-item-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px;

    border-bottom:1px solid #eee;

}

.cart-item-title{

    font-size:20px;

    color:#1E2A5A;

    font-weight:600;

}

.cart-item-price{

    font-size:22px;

    font-weight:bold;

    color:#C58B73;

}

/* Qty */

.qty-controls{

    display:flex;

    align-items:center;

    gap:10px;

    margin-top:12px;

}

.btn-qty{

    width:36px;

    height:36px;

    border:none;

    background:#1E2A5A;

    color:#fff;

    border-radius:8px;

    cursor:pointer;

}

.qty-count{

    font-size:18px;

    min-width:25px;

    text-align:center;

}

.btn-remove{

    border:none;

    background:#d9534f;

    color:#fff;

    padding:8px 14px;

    border-radius:6px;

    cursor:pointer;

}

/* Empty */

.empty-cart{

    text-align:center;

    padding:60px;

}

.empty-cart img{

    width:180px;

    margin-bottom:20px;

}

.shop-btn{

    display:inline-block;

    margin-top:20px;

    background:#1E2A5A;

    color:#fff;

    text-decoration:none;

    padding:12px 25px;

    border-radius:8px;

}

/* Recommended */

.recommended-section{

    width:92%;

    max-width:1400px;

    margin:70px auto;

}

.recommended-section h2{

    color:#1E2A5A;

    margin-bottom:30px;

}

.recommend-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.recommend-card{

    background:#fff;

    padding:25px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.recommend-card img{

    width:100%;

    border-radius:12px;

}

.recommend-card h3{

    margin:18px 0 10px;

}

.recommend-card p{

    color:#C58B73;

    font-size:22px;

    font-weight:bold;

}

.recommend-card button{

    margin-top:20px;

    width:100%;

    padding:14px;

    border:none;

    border-radius:10px;

    background:linear-gradient(90deg,#C58B73,#1E2A5A);

    color:#fff;

    cursor:pointer;

}

/* Footer */

.cart-footer{

    background:#1E2A5A;

    color:#fff;

    margin-top:70px;

    padding:50px;

}

.footer-container{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.footer-container a{

    display:block;

    color:#fff;

    text-decoration:none;

    margin-top:10px;

}

.cart-footer hr{

    margin:35px 0;

}

.copyright{

    text-align:center;

}

/* Mobile */

@media(max-width:900px){

.cart-wrapper{

grid-template-columns:1fr;

}

.cart-header{

flex-direction:column;

gap:20px;

padding:20px;

}

.summary-card{

position:static;

}
/* ===== CHECKOUT PAGE ===== */

.checkout-page{
    width:90%;
    max-width:1400px;
    margin:40px auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
}

.billing-card,
.summary-card,
.support-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.billing-card h2,
.summary-card h2{
    color:#1E2A5A;
    font-size:32px;
    margin-bottom:25px;
}

.input-group{
    display:flex;
    flex-direction:column;
    margin-bottom:20px;
}

.input-group label{
    font-size:15px;
    font-weight:600;
    margin-bottom:8px;
    color:#333;
}

.input-group input,
.input-group textarea{
    width:100%;
    padding:14px 16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:.3s;
    box-sizing:border-box;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:#1E2A5A;
    box-shadow:0 0 10px rgba(30,42,90,.15);
}

.cart-item-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    margin:18px 0;
    font-size:18px;
}

.total{
    font-size:24px;
    font-weight:bold;
    color:#1E2A5A;
}

.checkout-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:12px;
    background:#1E2A5A;
    color:#fff;
    font-size:18px;
    cursor:pointer;
    margin-top:20px;
    transition:.3s;
}

.checkout-btn:hover{
    background:#C58B73;
}

.coupon-box{
    margin:25px 0;
}

.coupon-input{
    display:flex;
    gap:10px;
}

.coupon-input input{
    flex:1;
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
}

.coupon-input button{
    padding:12px 22px;
    border:none;
    border-radius:10px;
    background:#1E2A5A;
    color:#fff;
    cursor:pointer;
}

.payment-info{
    margin:30px 0;
}

.payment-icons{
    display:flex;
    gap:18px;
    font-size:30px;
    margin-top:12px;
    color:#1E2A5A;
}

.support-card{
    margin-top:30px;
}

@media(max-width:900px){

.checkout-page{

grid-template-columns:1fr;

}

/* ======================================
   BILLING FORM
====================================== */

.checkout-page{
    width:90%;
    max-width:1400px;
    margin:50px auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    align-items:start;
}

.checkout-left{
    width:100%;
}

.checkout-right{
    width:100%;
}

.billing-card{
    background:#ffffff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.billing-card h2{
    color:#1E2A5A;
    font-size:36px;
    margin-bottom:30px;
    text-align:center;
}

#billingForm{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.input-group{
    display:flex;
    flex-direction:column;
}

.input-group label{
    font-size:15px;
    font-weight:600;
    color:#333;
    margin-bottom:8px;
}

.input-group input,
.input-group textarea{

    width:100%;

    padding:15px 18px;

    border:1px solid #dcdcdc;

    border-radius:12px;

    font-size:16px;

    font-family:'Poppins',sans-serif;

    transition:.3s;

    outline:none;

    box-sizing:border-box;

    background:#fafafa;

}

.input-group textarea{

    resize:vertical;

    min-height:120px;

}

.input-group input:focus,
.input-group textarea:focus{

    border-color:#1E2A5A;

    background:#fff;

    box-shadow:0 0 12px rgba(30,42,90,.15);

}

.input-group input::placeholder,
.input-group textarea::placeholder{

    color:#999;

}

@media(max-width:992px){

.checkout-page{

grid-template-columns:1fr;

}

.billing-card{

padding:25px;

}

.billing-card h2{

font-size:28px;

}
.toast-message{

position:fixed;

right:30px;

top:30px;

padding:15px 25px;

background:#1E2A5A;

color:#fff;

border-radius:10px;

opacity:0;

transform:translateY(-20px);

transition:.3s;

z-index:9999;

}

.toast-message.show{

opacity:1;

transform:translateY(0);

}

.toast-message.success{

background:#28a745;

}

.toast-message.error{

background:#dc3545;

}

.toast-message.warning{

background:#ff9800;

}

.review-actions{

display:flex;

gap:10px;

flex-wrap:wrap;

margin-top:15px;

}

.review-actions button{

padding:8px 14px;

border:none;

border-radius:8px;

cursor:pointer;

font-size:14px;

}
}
}
