

/* --- 1. GLOBAL STYLES --- */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background-color: #fff;
}
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: transparent;
  color: #000 !important;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #000;
  margin-top: 20px;
  margin-right: 10px;
  transition: 0.3s ease;
}

.btn.outline {
  background-color: transparent;
  color: #000 !important;
}

.btn:hover {
  background-color: black;
  border-color: #333;
  color: #fff !important;
}
/* --- 2. HEADER & NAVIGATION --- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  background: #000;
  color: #fff;
}
/* Sidebar menu - Hidden by default */
#sidebar {
  position: fixed;
  top: 0;
  right: -320px; /* Hidden off-screen to the right */
  width: 260px;
  height: 100vh;
  background-color: #000;
  padding: 80px 30px;
  transition: right 0.3s ease-in-out; /* Smooth slide effect */
  z-index: 10000;
  display: flex;
  flex-direction: column;
}

/* Sidebar links */
#sidebar a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 500;
  border-bottom: 1px solid #222;
  padding-bottom: 10px;
  transition : color 0.3s ease;
}
#sidebar a:hover {
  text-decoration: underline;
  text-underline-offset: 8px;
  color: #fff; /* Ensures it stays bright on hover */
}
/* Close button (X) inside sidebar */
#sidebar .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}

/* Hamburger Icon Visibility */
.hamburger {
 /* Hidden on desktop */
  display : flex;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: white;
  border-radius: 2px;
}
/* Desktop Nav Hover */
.desktop-nav a {
  position: relative;
  text-decoration: none;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #fff; /* Matches header text */
  transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

/* Brand/Logo Hover */
* Show hamburger on mobile/tablets */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .desktop-nav {
    display: none;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

/* --- 3. HERO SECTION --- */
.hero {
  background: linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)), url("../images/a.png");
  background-size: cover;
  background-position: center 22%;
  height: 95vh;
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.hero-box {
  max-width: 480px;
  color: #000;
}

.hero-box h1 {
  font-size: 36px;
  margin: 10px 0;
}
/* Wide Category Section */
.wide-categories {
  padding: 40px 0;
  text-align: center;
}

.wide-categories h2 {
  margin-bottom: 30px;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Base Banner Style */
.category-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 350px; /* Adjust height as needed */
  margin-bottom: 10px; /* Gap between stacked images */
  text-decoration: none;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.category-banner:hover {
  transform: scale(1.01); /* Subtle zoom effect on hover */
}

/* Overlay to make text readable */
.category-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3); /* Darkens the image slightly */
  transition: background 0.3s ease;
}

.category-banner:hover::before {
  background: rgba(0, 0, 0, 0.4);
}

/* Banner Text Content */
.banner-content {
  position: relative; /* Sits above the overlay */
  color: #ffffff;
  z-index: 2;
}

.banner-content h3 {
  font-size: 32px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.banner-content span {
  font-size: 14px;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  text-transform: uppercase;
}

/* Specific Category Backgrounds */
/* Replace these with your actual image paths */
.banner-shirts { background-image: url('../images/shirt.jpg'); }
.banner-blazers { background-image: url('../images/bgblazer.png'); }
.banner-pants { background-image: url('../images/pant.jpg'); }
.banner-modi { background-image: url('../images/suit.png'); }

/* Mobile View Adjustment */
@media (max-width: 768px) {
  .category-banner {
    height: 250px; /* Shorter banners on mobile */
  }
  .banner-content h3 {
    font-size: 24px;
  }
}

/* --- 4. COLLECTION GRID --- */
.categories {
  padding: 60px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.grid a {
  border: 1px solid #000;
  padding: 40px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- 5. FIXED FOOTER (DEBUGGED) --- */
.footer-main {
  background-color: #000 !important; /* Forces background black */
  color: #fff !important;
  padding: 60px 20px 20px;
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important; /* Forces 3 columns on desktop */
  gap: 40px;
  align-items: start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  position : relative;
}
.footer-col a:hover {
  color: #fff; /* Brightens the grey text on hover */
  text-decoration: underline;
  text-underline-offset: 4px;
}
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  color: #fff; /* Initial icon color */
  font-size: 20px; /* Adjust size as needed */
  transition: color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

/* Hover effects for a premium feel */
.social-icons a:hover {
  transform: translateY(-3px);
}

.social-icons a[aria-label="Facebook"]:hover { color: #1877F2; }
.social-icons a[aria-label="Instagram"]:hover { color: #E4405F; }
.social-icons a[aria-label="YouTube"]:hover { color: #FF0000; }
.subscribe-box {
  display: flex;
  flex-direction: column;
  max-width: 280px;
}

.subscribe-box input {
  padding: 10px;
  margin-bottom: 10px;
  background: #222;
  border: 1px solid #444;
  color: #fff;
}
/* Update these sections in your CSS */

.subscribe-box button, 
.footer-btn {
  width: 100%;            /* Force both to fill the column width */
  max-width: 280px;       /* Match your subscribe box max-width */
  padding: 12px;          /* Ensure identical vertical/horizontal space */
  display: inline-block;  /* Required for <a> tags to respect width/padding */
  box-sizing: border-box; /* Includes padding in the width calculation */
  text-align: center;
  border: none;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;  /* Remove underline from Directions link */
}

/* Specific colors for Submit */
.subscribe-box button {
  background-color: #fff;
  color: #000;
  margin-bottom: 10px;
}

/* Specific colors for Directions */
.footer-btn {
  background-color: #333; /* Your default dark grey */
  color: #fff;
  border: 1px solid #444;
}

/* Hover effect to keep them consistent */
.footer-btn:hover {
  background-color: #444; /* Your lighter grey on hover */
  color: #fff;
}
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  font-size: 13px;
  opacity: 0.7;
}

/* --- 6. UTILITIES & MOBILE --- */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background: #000;
  color: #fff;
  padding: 14px;
  border-radius: 50%;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero {
    padding-left: 20px;
    height: 80vh;
  }
  
  .desktop-nav {
    display: none;
  }

  /* Footer stacks to 1 column on mobile */
  .footer-container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  
  .footer-col {
    align-items: center;
    margin-bottom: 30px;
  }

  .subscribe-box {
    margin: 0 auto;
  }
}

/* Collection Page Layout */
.collection-page {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-header h1 {
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Grid System */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns on laptop */
  gap: 40px;
  margin-top:40px;
}

/* Card Design */
.collection-card {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card-image img {
  width: 100%;
  height: 650px; /* Uniform height for all images */
  object-fit: cover; /* Ensures images aren't stretched */
  border-bottom: 1px solid #ee;
  display: block;
}

.card-info {
  padding: 40px 20px;
  text-align: center;
}

.card-info h3 {
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 15px;
}

.card-info p {
  color: #666;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 80%; /* Keeps text lines short and elegant */
  margin: 0 auto 25px;
  color: #555;
}

/* Mobile Responsiveness */
/* --- MOBILE VIEW FOR COLLECTIONS --- */
@media (max-width: 768px) {
  .collection-page {
    padding: 40px 15px; /* Reduced side padding for mobile */
  }

  .page-header h1 {
    font-size: 28px; /* Slightly smaller heading for mobile screens */
  }

  .collection-grid {
    grid-template-columns: 1fr !important; /* Forces cards into a single column */
    gap: 30px; /* Vertical spacing between stacked cards */
  }

  .collection-card {
    max-width: 100%; /* Ensures cards don't overflow the screen */
  }

  .card-image img {
    height: 350px; /* Consistent height for mobile product photos */
  }

  .card-info {
    padding: 25px 15px; /* Tighter info padding for mobile */
    text-align: center; /* Ensures all text and buttons are centered */
  }

  .card-info p {
    max-width: 100%; /* Allows text to use full width on narrow screens */
    font-size: 14px;
  }
  
  .card-info .btn {
    width: 80%; /* Makes buttons larger and easier to tap on mobile */
    margin: 0 auto;
  }
}
.contact-page {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 50px;
  align-items: center;
}

.contact-info h1 {
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.info-item {
  margin-bottom: 20px;
}

.map-box {
  border: 1px solid #ddd;
  padding: 10px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Responsive Mobile View */
@media (max-width: 768px) {
  .contact-container {
    grid-template-columns: 1fr; /* Stack map below info on mobile */
    text-align: center;
  }
  
  .contact-info {
    order: 1;
  }
  
  .map-box {
    order: 2;
    height: 300px; /* Shorter map on mobile */
  }
}
.product-container {
  display: grid;
  /* Forces 5 columns on laptop/desktop */
  grid-template-columns: repeat(5, 1fr) !important; 
  gap: 15px;
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.product-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-size: 14px; /* Smaller font for 5-column density */
  min-height: 40px; /* Keeps buttons aligned if titles vary in length */
}

/* Responsive adjustments */
@media (max-width: 768px) {
.product-container { 
    grid-template-columns: 1fr !important; 
    width: 100% !important; /* Forces it to stay within phone width */
    max-width: 100vw;
    padding: 20px 15px !important;
    box-sizing: border-box; /* Includes padding in width calculation */
    gap: 30px;
    overflow-x: hidden;
  }

  .product-item {
    width: 100% !important; /* Card fills the screen width */
    max-width: 100% !important;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .product-image img {
    height: 400px !important; /* Balanced height for mobile */
    width: 100% !important;
    object-fit: cover;
  }
}
.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff0000;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: bold;
}

.product-details {
  padding: 15px 5px;
}

.promo-text {
  font-size: 12px;
  color: #666;
  margin: 0;
}

.product-title {
  font-size: 15px;
  margin: 8px 0;
  font-weight: 500;
  color: #111;
  line-height: 1.4;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.current-price {
  font-weight: bold;
  font-size: 16px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.order-btn {
  display: block;
  text-align: center;
  background: #25D366; /* WhatsApp Green */
  color: white;
  text-decoration: none;
  padding: 10px;
  margin-top: 10px;
  font-weight: bold;
  border-radius: 4px;
}
@media (max-width:768px){
.footer-main {
    padding: 40px 15px;
  }

  .footer-container {
    grid-template-columns: 1fr !important; /* Stacks columns vertically */
    text-align: center;
    gap: 30px;
  }

  .footer-col {
    align-items: center;
  }

  .subscribe-box {
    width: 100%;
    max-width: 100%;
  }
}
/* Slider Container */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh; /* Adjust height as needed */
    background: #000;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
}

.slide.active { display: block; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text Overlay Styling */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; /* Vertically centers the text box */
    padding-left: 80px; /* Aligns with your desktop design */
    background: rgba(0, 0, 0, 0.1); /* Subtle dark wash for readability */
}

.hero-box {
    max-width: 500px;
    color: #000; /* Keeping your preferred black text color */
}

.hero-box h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* Arrow Styling (ECE Tip: Use z-index to stay on top of overlay) */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.7);
    color: #000;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    transition: 0.3s;
}

.slider-arrow:hover { background: #fff; }
.prev { left: 20px; }
.next { right: 20px; }

/* Mobile Specific Tweaks */
@media (max-width: 768px) {
    .hero-overlay {
        padding-left: 20px;
        justify-content: center; /* Centers text on mobile */
        text-align: center;
    }
    .hero-box h1 { font-size: 32px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .mobile-only { display: block; }
}
/* Import the Serif Font for that premium look */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');

.premium-font {
    font-family: 'Playfair Display', serif; /* Elegant Serif font */
    font-size: 56px; /* Larger size to match the reference */
    font-weight: 700;
    line-height: 1.1; /* Tighter line height for the 2-line look */
    color: #111;
    margin-bottom: 35px;
}

/* Forces buttons to stay side-by-side */
.hero-btn-group {
    display: flex;
    gap: 15px; /* Creates the space between the two buttons */
    justify-content: flex-start; /* Aligns them to the left */
}

/* Ensure buttons don't stack on mobile */
@media (max-width: 768px) {
    .premium-font {
        font-size: 38px;
        text-align: center;
    }
    .hero-btn-group {
        justify-content: center; /* Centers buttons on mobile screens */
    }
}