:root {
  --primary-red: #870201;
  --primary-black: #090915;
  --primary-gold: #c09852;
  --font-main: 'Arial', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
}

body {
  background-color: #fff;
  color: var(--primary-black);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--primary-red);
}
  
/* header */
header {
 background: #f2f3f5 !important;
  color: var(--primary-gold);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, nav center with flex trick */
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

/* Logo left */
.logo {
  display: flex;
  align-items: center;
  flex: 1; /* takes minimal space */
}

.logo-img {
  height: 80px;
  width: auto;
  margin: 0;
}

/* Nav centered */
nav {
  flex: 2;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  color:  #870201;
  font-weight: bold;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #c48f35;
}

/* Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  height: 3px;
  width: 25px;
  background-color:#870201;
  margin: 4px 0;
}

@media screen and (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #f2f3f5 !important;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 15px;
    border-radius: 8px;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  header {
    justify-content: space-between; /* logo left, menu toggle right */
  }

  nav {
    flex-basis: 100%;
    justify-content: center;
    order: 2;
    /* margin-top: 10px; */
  }
}

/* footer css */
/* Base Footer Styles */
.footer {
  background: #090915; 
  color: #ffffff;
  padding: 40px 20px;
  font-size: 14px;
  animation: fadeUp 1s ease-in-out;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 10px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 10px;
  color: #c09852;
}

.footer-col p,
.footer-col a {
  color: #ffffff;
  text-decoration: none;
  line-height: 1.6;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff176;
  transform: scale(1.05);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
  color: #fff;
  font-size: 13px;
  opacity: 0.8;
}

/* Fade-in Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
    flex: 1 1 100%; /* full width on mobile */
  }

  .footer-logo {
    margin-bottom: 15px;
    height: 60px; /* slightly smaller on mobile */
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 16px; /* adjust for small screens */
  }

  .footer-col p,
  .footer-col a {
    font-size: 14px;
  }
}

/* Extra small devices (<480px) */
@media (max-width: 480px) {
  .footer {
    padding: 30px 15px;
    font-size: 13px;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 14px;
  }

  .footer-logo {
    height: 50px;
  }

  .footer-bottom {
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .footer-logo {
    margin-bottom: 15px;
  }
}

/* Animation */
.footer {
  animation: fadeUp 1s ease-in-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-container div {
    margin-bottom: 20px;
  }
}

    /* ===== PAGE HEADER ===== */
    .page-header {
      background: linear-gradient(135deg, #8b5e34 0%, #c09852 35%, #f5d38a 70%, #d9a441 100%);
      color: white;
      text-align: center;
      padding: 80px 20px;
      position: relative;
      overflow: hidden;
    }

    .page-header h1 {
      font-size: 3rem;
      margin: 0;
      animation: fadeDown 1s ease;
    }

    .page-header p {
      margin-top: 10px;
      font-size: 1.2rem;
      opacity: 0.9;
      animation: fadeUp 1s ease;
    }

    /* decorative circle */
    .page-header::before {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      top: -50px;
      left: -50px;
    }

    .page-header::after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      bottom: -100px;
      right: -100px;
    }

    /* ===== ABOUT SECTION ===== */
.about-section{
    padding: 60px 15px; 
     padding-left: 40px;   /* top-bottom + side space */
}

/* TEXT */
.about-text{
    text-align: center;   /* center text */
    margin: auto;
}

.about-text h2{
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.about-text p{
    font-size: 18px;
    line-height: 30px;
    color: #000000;
}

/* IMAGE */
.about-image img{
    width: 100%;
    max-width: 380px;     /* image control */
    height: auto;
    border-radius: 10px;
    margin: auto;         /* center image */
    display: block;
}

/* MOBILE */
@media(max-width:768px){
    .about-section{
        padding: 30px 10px;
    }

    .about-text h2{
        font-size: 26px;
    }

    .about-text p{
        font-size: 16px;
        line-height: 26px;
    }

    .about-image{
        margin-top: 20px;
    }
}
    /* ===== RESPONSIVE ===== */
/* ===== MOBILE OPTIMIZED LAYOUT ===== */
/* Remove all extra space on mobile */
/*  */
/* Index page */

/* Hero Section */
.hero{
    min-height:70vh;
    background:linear-gradient(135deg, #8b5e34 0%, #c09852 35%, #f5d38a 70%, #d9a441 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:20px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.hero::after{
    content:"";
    position:absolute;
    top:0; left:0;
    width:100%; height:100%;
    background:radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: moveBackground 20s linear infinite;
    z-index:0;
}

@keyframes moveBackground{
    0%{transform:translate(0,0);}
    50%{transform:translate(50px,50px);}
    100%{transform:translate(0,0);}
}

.hero-content{
    max-width:850px;
    position:relative;
    z-index:1;
}

.hero-tag{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(5px);
    color:#fff;
    padding:10px 22px;
    border-radius:30px;
    margin-bottom:20px;
    font-weight:600;
    animation: fadeUp 1s ease forwards;
}

.hero h1{
    font-size:4rem;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
    text-shadow:0 3px 10px rgba(0,0,0,0.25);
    animation: fadeUp 1.2s ease forwards;
    
}

.hero p{
    font-size:1.3rem;
    margin-bottom:35px;
    text-shadow:0 2px 8px rgba(0,0,0,0.2);
    animation: fadeUp 1.4s ease forwards;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    animation: fadeUp 1.6s ease forwards;
    
}

.btn-primary{
    background:#870201;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
     border:2px solid #fff;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.btn-secondary{
    background:#870201;
    color:#fff;
    border:2px solid #fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.btn-primary:hover{
    background:#fff;
    color:#8b5e34;
    transform:translateY(-4px);
}

.btn-secondary:hover{
    background:#fff;
    color:#8b5e34;
    transform:translateY(-4px);
}

/* Sections & Scroll Animation */
.animate-section{
    opacity:0;
    transform: translateY(50px);
    transition: 1s ease-out;
    padding:50px 20px;
}

.animate-section.show{
    opacity:1;
    transform: translateY(0);
}

/* Section Headings */
section h2{
    color:#870201;
    text-align:center;
    font-size:2.2rem;
    margin-bottom:30px;
}

/* About, Mission, Vision, Products */
section p, section ul{
    text-align:center;
    max-width:800px;
    margin:0 auto 25px auto;
    font-size:1.1rem;
}

.products{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap:20px;
}

.product-card{
    border:1px solid #c09852;
    border-radius:12px;
    padding:25px;
    text-align:center;
    transition: transform 0.3s, box-shadow 0.3s;
    background:rgba(255,255,255,0.05);
}

.product-card:hover{
    transform: translateY(-10px);
    box-shadow:0 15px 25px rgba(0,0,0,0.25);
}

/* Buttons */
button{
    background-color:#c09852;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    background-color:#f5d38a;
    color:#111;
}

/* Hero Fade-up Animation */
@keyframes fadeUp{
    0%{opacity:0; transform:translateY(30px);}
    100%{opacity:1; transform:translateY(0);}
}

/* Responsive */
@media(max-width:480px){
    .hero h1{
        font-size:1.9rem;
    }

    .hero p{
        font-size:1rem;
    }

    .hero-tag{
        font-size:14px;
        padding:8px 18px;
    }

    .btn-primary,
    .btn-secondary{
        padding:12px 25px;
        font-size:14px;
    }
}

/* Mission & Vision Section */
/* Mission & Vision Section */
 .icon i {
  font-size: 50px;

  background: linear-gradient(135deg, #8b5e34 0%, #c09852 35%, #f5d38a 70%, #d9a441 100%);
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title{
    text-align: center;
    color: #870201; /* text white on dark background */
    font-size: 2.2rem;
    padding: 20px 0;
    background:#f4e9e9; /* full section header bg */
  
    /* margin-bottom: 30px; */
}

/* Wrapper Background */
.mission-vision-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background:#f4e9e9; /* full section bg */
    padding: 40px 20px;
   
    justify-content: center;
}

/* Mission & Vision Boxes */
.mission-box,
.vision-box{
    flex: 1 1 calc(50% - 20px);
    background: #fff; /* box background white for contrast */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

/* Icons */
.icon{
    font-size: 45px;
    margin-bottom: 15px;
}


/* Text inside boxes */
.mission-box h3,
.vision-box h3{
    color: #870201;
    margin-bottom: 15px;
}

.mission-box p,
.vision-box p{
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* Responsive */
@media (max-width: 768px){
    .mission-box,
    .vision-box{
        flex: 1 1 100%;
    }
}

/* Business Benefits */
/* Business Benefits - Modern Card Style */
/* Business Benefits - 3 per row, center 2 in last row */
.business-benefits{
    max-width: 1100px;
    margin: 50px auto;
    padding: 50px 20px;
    background: #f8f8f8;
    border-radius: 20px;
    text-align: center;
}

.business-benefits h2{
    font-size: 2.4rem;
    color: #870201;
    margin-bottom: 40px;
}

/* Cards container */
.business-benefits ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* default align left */
    gap: 25px;
    padding: 0;
    list-style: none;
}

/* Individual Card */
.business-benefits li{
    flex: 1 1 calc(33.33% - 16px); /* 3 per row */
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Icon Circle */
.business-benefits li::before{
    content: "✔";
    background: #870201;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Text inside card */
.business-benefits li span{
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
    text-align: left;
}

/* Hover effect */
.business-benefits li:hover{
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Center last row if less than 3 cards */
.business-benefits ul li:nth-last-child(-n+2):nth-child(odd) {
    margin-left: auto;
    margin-right: auto;
}


@media(max-width:1024px){
    .business-benefits ul li{
        flex: 1 1 calc(50% - 12px); 
    }
}

@media(max-width:768px){
    .business-benefits ul{
        justify-content: center;
    }
    .business-benefits ul li{
        flex: 1 1 100%; /* 1 per row mobile */
    }
}
/* ===== business end ===== */


/* ===== Contact Section ===== */
.icon-contact{
    font-size: 18px;
    margin-right: 15px;   /* text पासून space */
    vertical-align: middle; /* text alignment */
    color: #d4a017;        /* icon color */
}

.contact-section{
    padding:60px 0;
    background:#f5f5f5;
}

/* ===== 2 Cards Layout ===== */
.contact-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:40px;
}

/* ===== Contact Box ===== */
.contact-box{
    flex:1;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.contact-box:hover{
    transform:translateY(-5px);
}

.contact-box h2{
    margin-bottom:25px;
    font-size:32px;
    font-weight:700;
}

/* ===== Form ===== */
.contact-form input,
.contact-form textarea{
    width:100%;
    border:none;
    border-bottom:1px solid #ccc;
    padding:12px 0;
    margin-bottom:25px;
    background:transparent;
    outline:none;
}

.contact-form textarea{
    height:100px;
    resize:none;
}

.contact-form button{
    background:linear-gradient(45deg,#d4a017,#ffcc33);
    color:#000;
    border:none;
    padding:12px 30px;
    font-weight:bold;
    border-radius:6px;
    cursor:pointer;
}

/* ===== Map ===== */
/* ===== Container ===== */
.contact-section{
    padding:60px 0;
    background:#f5f5f5;
}

/* Flex for 2 cards */
.contact-container{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
    justify-content:space-between;
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Contact Box */
.contact-box{
    flex:1 1 45%; /* grow, shrink, basis */
    min-width:300px;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.contact-box:hover{
    transform:translateY(-5px);
}

.contact-box h2{
    margin-bottom:25px;
    font-size:32px;
    font-weight:700;
}

/* Contact Form Inputs */
.contact-form input,
.contact-form textarea{
    width:100%;
    border:none;
    border-bottom:1px solid #ccc;
    padding:12px 0;
    margin-bottom:25px;
    background:transparent;
    outline:none;
}

.contact-form textarea{
    height:100px;
    resize:none;
}

.contact-form button{
    background:linear-gradient(45deg,#d4a017,#ffcc33);
    color:#000;
    border:none;
    padding:12px 30px;
    font-weight:bold;
    border-radius:6px;
    cursor:pointer;
}

/* Map */
.map-box{
    width:100%;
    max-width:1200px;
    margin:40px auto 0;
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.map-box h2{
    margin-bottom:20px;
    font-size:28px;
    font-weight:700;
}

.map-box iframe{
    width:100% !important;  /* important to override flex issues */
    height:300px;
    border:0;
    border-radius:12px;
}

/* WhatsApp */
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#25D366;
    color:#fff;
    font-size:26px;
    padding:12px 16px;
    border-radius:50%;
    text-decoration:none;
    z-index:999;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width:768px){
    .contact-container{
        flex-direction:column;
        gap:20px;
    }

    .contact-box{
        flex:1 1 100%;
        padding:20px;
    }

    .map-box{
        padding:20px;
    }

    .contact-box h2,
    .map-box h2{
        font-size:24px;
        text-align:center;
    }
}


/* ===== contact end ===== */

   /* ===== ABOUT SECTION ===== */
   /* ===== ABOUT SECTION ===== */
    .about-container {
      max-width: 1200px;
      margin: 50px auto;
      padding: 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
     
    }

    /* .about-text {
      flex: 1 1 500px;
      min-width: 300px;
      animation: fadeInLeft 1.2s ease forwards;
      opacity: 0;
    } */

    .about-text h2 {
      color: #2c3e50;
      font-size: 2.2rem;
      margin-bottom: 20px;
    }

    .about-text p {
      font-size: 1.1rem;
      color: #555;
      line-height: 1.8;
    }

    /* .about-image {
      flex: 1 1 400px;
      min-width: 250px;
      animation: fadeInRight 1.2s ease forwards;
      opacity: 0;
    } */

    .about-image img {
      width: 100%;
      height: auto;
      border-radius: 15px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .about-image img:hover {
      transform: scale(1.05);
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }

    @keyframes fadeDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
/* ===== end about ===== */


/* ===== BUSINESS SECTION ===== */
.business-section {
  background: #fff;
  padding: 60px 20px;
}

.business-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.business-container h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.main-text {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

/* Business Grid */
.business-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.business-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  width: calc(33.333% - 20px);
  max-width: 350px;
  box-sizing: border-box;
}

.business-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.business-box h3 {
  color: #1e3c72;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.business-box p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Tablet */
@media screen and (max-width: 768px) {
  .business-container h2 {
    font-size: 2rem;
  }

  .business-box {
    width: calc(50% - 15px);
  }
}

/* Mobile */
@media screen and (max-width: 480px) {
  .business-box {
    width: 100%;
  }

  .business-container h2 {
    font-size: 1.8rem;
  }

  .main-text {
    font-size: 1rem;
  }
}
/* products */

/* Container */
.products-container {
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 15px;
    margin-top:20px;
}

/* Row */
.products-row {
    display:flex;
    flex-wrap:wrap;
    margin:-12px;
}

/* Columns */
.products-col {
    padding:12px;
    width:100%;
}

@media (min-width:768px){
    .products-col-md-6 { width:50%; }
}

@media (min-width:992px){
    .products-col-lg-4 { width:33.33%; }
}

/* CARD */
.products-card {
    border-radius:10px;
    overflow:hidden;
    transition:0.3s ease;
    background:#fff;
    display:flex;
    flex-direction:column;
    height:100%;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.products-card:hover {
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(192,152,82,0.25);
}

/* IMAGE */
.products-card-img {
    width:100%;
    height:250px;
    object-fit:contain;
    background:#f8f8f8;
    padding:10px;
}

/* BODY */
.products-card-body {
    padding:15px;
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

/* TITLE FIXED HEIGHT */
.products-card-title {
    font-size:18px;
    font-weight:600;
    color:#870201;
    min-height:50px;
    margin-bottom:10px;
}

/* TEXT */
.products-card-text {
    color:#000000;
    font-size:15px;
    line-height:1.6;
    flex-grow:1;
}

/* BUTTONS WRAPPER */
.products-card-buttons {
    margin-top:15px;
    display:flex;
    gap:10px;
}

/* BUTTON */
.products-btn {
    flex:1;
    text-align:center;
    background:#c09852;
    color:#fff;
    padding:10px 15px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
    font-size:14px;
     border:1px solid #870201;
}

.products-btn:hover {
    background:#870201;
}

/* products end  */

/* Login page css*/

.login-container-wrapper{
    width:100%;
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

/* MAIN CARD */
.login-container{
    width:100%;
    max-width:1000px;
    min-height:550px;
    display:flex;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

/* LEFT SIDE */
.login-left{
    width:45%;
    padding:60px 50px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.login-left h2{
    color:#870201;
    font-size:32px;
    margin-bottom:10px;
}

.login-left p{
    color:#777;
    margin-bottom:30px;
}

/* INPUT */
.input-group{
    margin-bottom:20px;
}

.input-group input{
    width:100%;
    height:50px;
    border:none;
    background:#f6f4ef;
    border-radius:12px;
    padding:0 15px;
    outline:none;
    font-size:14px;
}

/* BUTTON */
button{
    width:100%;
    height:50px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    background:linear-gradient(
        135deg,
        #8b5e34 0%,
        #c09852 35%,
        #f5d38a 70%,
        #d9a441 100%
    );
    color:#870201;
    font-size:16px;
    font-weight:600;
    transition:0.3s;
}

button:hover{
    transform:translateY(-3px);
}

/* LINKS */
.links{
    text-align:center;
    margin-top:15px;
}

.links a{
    color:#870201;
    text-decoration:none;
}

/* RIGHT SIDE */
.login-right{
    width:55%;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(
        135deg,
        #8b5e34 0%,
        #c09852 35%,
        #f5d38a 70%,
        #d9a441 100%
    );
    min-height:100%;
}

.login-right::before{
    /* content:""; */
    position:absolute;
    width:320px;
    height:320px;
    /* background:rgba(255,255,255,0.15); */
    border-radius:30px;
    backdrop-filter:blur(10px);
}

.login-right img{
    width:100%;
    max-width:400px;
    height:auto;
    object-fit:contain;
    position:relative;
    z-index:2;
}

.circle{
    position:absolute;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#fff;
    opacity:0.4;
    left:40px;
    bottom:40px;
}

/* MOBILE RESPONSIVE */
/* MOBILE RESPONSIVE */
@media(max-width:768px){

    .login-container{
        flex-direction:column;
        min-height:auto; /* Remove extra height */
    }

    .login-left,
    .login-right{
        width:100%;
        padding:20px 15px; /* smaller padding for mobile */
    }

    .login-left{
        padding:25px 15px;
    }

    .login-left h2{
        font-size:24px; /* smaller heading */
        margin-bottom:10px;
    }

    .login-left p{
        font-size:14px; /* smaller description */
        margin-bottom:20px;
    }

    .login-right{
        min-height:auto; /* no extra height */
        display:flex;
        justify-content:center;
        align-items:center;
        padding:15px 0;
    }

    .login-right img{
        width:150px;
        max-width:70%;
        object-fit:contain;
    }

    .circle{
        width:50px;
        height:50px;
        left:20px;
        bottom:20px;
    }

    button{
        height:45px; /* smaller button */
        font-size:14px;
    }

    .input-group input{
        height:45px;
        font-size:14px;
        padding:0 12px;
    }

    .links a{
        font-size:13px;
    }

    .login-container-wrapper{
        padding:15px; /* reduce wrapper padding */
        min-height:auto;
    }
}

/* Register page css*/



.wrapper{
    width:100%;
    min-height:calc(100vh - 80px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    margin-top:40px;
}

.form-card{
    width:100%;
    max-width:700px;
    background:#fff;
    border-radius:20px;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
    padding:40px;
    display:flex;
    flex-direction:column;
}

.form-card h2{
    text-align:center;
    color:#870201;
    margin-bottom:25px;
}

.input-box{
    position:relative;
    margin-bottom:20px;
}

.input-box input{
    width:100%;
    height:50px;
    border:1px solid #ddd;
    border-radius:12px;
    padding:0 15px;
    font-size:14px;
    outline:none;
    transition:0.3s;
    background:none;
}

.input-box label{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#aaa;
    font-size:14px;
    pointer-events:none;
    transition:0.3s;
}

.input-box input:focus + label,
.input-box input:not(:placeholder-shown) + label{
    top:-8px;
    left:12px;
    background:#fff;
    padding:0 5px;
    font-size:12px;
    color:#c09852;
}

.input-box input:focus{
    border-color:#c09852;
    box-shadow:0 0 8px rgba(192,152,82,0.4);
}

.btn{
    width:100%;
    height:50px;
    border:none;
    border-radius:12px;
    cursor:pointer;
    background:linear-gradient(135deg,#c09852,#d9a441);
    color:#870201;
    font-weight:600;
    font-size:16px;
    margin-top:10px;
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:15px;
}

.terms{
    display:flex;
    align-items:center;
    margin-bottom:15px;
    font-size:14px;
    color:#555;
}

.terms input{
    margin-right:10px;
}

/* MOBILE */
@media(max-width:600px){
    .row{
        grid-template-columns:1fr;
    }
    .form-card{
        padding:25px;
    }
}
/* ===== Product Details Page ===== */
.product-details{
    max-width:1100px;
    margin:50px auto;
    padding:20px;
}

.product-details-box{
    display:flex;
    align-items:center;
    gap:40px;
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

.product-details-box::before{
    content:'';
    position:absolute;
    top:-100px;
    right:-100px;
    width:250px;
    height:250px;
    background:#c09852;
    opacity:.08;
    border-radius:50%;
}

.product-details-image{
    flex:0 0 280px;
    text-align:center;
}

.product-details-image img{
    width:220px;
    max-width:100%;
    transition:.4s;
}

.product-details-image img:hover{
    transform:scale(1.08) rotate(-3deg);
}

.product-details-content{
    flex:1;
}

.product-details-content h2{
    font-size:34px;
    color:#870201;
    margin-bottom:10px;
}

.product-price{
    font-size:22px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.product-details-content p{
    color:#111;
    line-height:1.8;
    margin-bottom:20px;
}

.product-btn{
    display:inline-block;
    padding:12px 30px;
    background:#c09852;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
    border:1px solid #870201;
}

.product-btn:hover{
    background:#870201;
    transform:translateY(-3px);
    
}

.product-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.product-feature{
    background:#faf7f0;
    padding:12px;
    border-radius:10px;
    border-left:4px solid #c09852;
    font-weight:600;
}

/* Mobile */
@media(max-width:768px){

    .product-details-box{
        flex-direction:column;
        text-align:center;
        padding:20px;
    }

    .product-details-image{
        flex:unset;
    }

    .product-details-image img{
        width:180px;
    }

    .product-details-content h2{
        font-size:26px;
    }

    .product-features{
        grid-template-columns:1fr;
    }
}