/**
 * Aiman Fashion Wear - Main Stylesheet
 * Brand Colors:
 *   Primary Red: #C8102E
 *   Dark Red:    #8B0015
 *   Pink:        #F25C8E
 *   Light Pink:  #FFF0F5
 *   White:       #FFFFFF
 *   Dark Text:   #1C1C1C
 *   Light Grey:  #F7F7F7
 */

/* ==========================================================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
  --primary-red: #C8102E;
  --dark-red: #8B0015;
  --pink: #F25C8E;
  --light-pink: #FFF0F5;
  --white: #FFFFFF;
  --dark-text: #1C1C1C;
  --light-grey: #F7F7F7;
  --text-muted: #666666;
  --border-color: #E8E8E8;
  --card-border: rgba(200, 16, 46, 0.08);

  --gradient-primary: linear-gradient(135deg, #C8102E 0%, #F25C8E 100%);
  --gradient-primary-reverse: linear-gradient(135deg, #F25C8E 0%, #C8102E 100%);
  --gradient-dark: linear-gradient(135deg, #8B0015 0%, #C8102E 100%);
  --gradient-hero: linear-gradient(135deg, rgba(139, 0, 21, 0.85) 0%, rgba(200, 16, 46, 0.7) 50%, rgba(242, 92, 142, 0.6) 100%);
  --gradient-overlay: linear-gradient(to top, rgba(28, 28, 28, 0.88) 0%, rgba(28, 28, 28, 0.2) 60%, transparent 100%);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 16px 36px rgba(200, 16, 46, 0.12);
  --shadow-glow: 0 8px 24px rgba(242, 92, 142, 0.35);

  --transition-fast: all 0.25s ease;
  --transition-normal: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  --transition-slow: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.65;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark-text);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--primary-red);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--pink);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ==========================================================================
   UTILITY CLASSES & BUTTONS
   ========================================================================== */
.text-primary-red { color: var(--primary-red) !important; }
.text-dark-red { color: var(--dark-red) !important; }
.text-pink { color: var(--pink) !important; }
.bg-light-pink { background-color: var(--light-pink) !important; }
.bg-light-grey { background-color: var(--light-grey) !important; }
.bg-dark-footer { background-color: #151515 !important; }

.section-padding {
  padding: 85px 0;
}

.section-padding-sm {
  padding: 50px 0;
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-subtitle::before,
.section-subtitle::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: var(--pink);
}

.section-header.text-start .section-subtitle::before {
  display: none;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-text);
  position: relative;
  margin-bottom: 16px;
}

.section-description {
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  font-size: 15px;
}

.section-header.text-start .section-description {
  margin: 0;
}

/* Gradient Buttons */
.btn-fashion-primary {
  background: var(--gradient-primary);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 15px rgba(200, 16, 46, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-fashion-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary-reverse);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-fast);
}

.btn-fashion-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
  color: var(--white) !important;
}

.btn-fashion-primary:hover::before {
  opacity: 1;
}

.btn-fashion-outline {
  background: transparent;
  color: var(--primary-red) !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 11px 26px;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.btn-fashion-outline:hover {
  background: var(--primary-red);
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.25);
}

.btn-fashion-outline-white {
  background: transparent;
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 11px 26px;
  border-radius: var(--radius-full);
  border: 2px solid var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.btn-fashion-outline-white:hover {
  background: var(--white);
  color: var(--dark-red) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-fashion-whatsapp {
  background-color: #25D366;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: var(--transition-normal);
}

.btn-fashion-whatsapp:hover {
  background-color: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  color: var(--white) !important;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
/* Top Information Bar */
.top-bar {
  background-color: #171717;
  color: #D1D1D1;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar a {
  color: #D1D1D1;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.top-bar a:hover {
  color: var(--pink);
}

.top-bar .top-contact {
  display: flex;
  align-items: center;
  gap: 25px;
}

.top-bar .top-contact i {
  color: var(--pink);
}

.top-bar .social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar .social-icons a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition-fast);
}

.top-bar .social-icons a:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Main Navigation */
.navbar-fashion {
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  padding: 14px 0;
  transition: var(--transition-normal);
  z-index: 1030;
}

.navbar-fashion.sticky-top {
  position: sticky;
  top: 0;
}

.navbar-fashion.navbar-scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

/* Brand Logo */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo .logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 6px 16px rgba(200, 16, 46, 0.25);
  transition: var(--transition-normal);
}

.brand-logo:hover .logo-icon {
  transform: rotate(-6deg) scale(1.05);
}

.brand-logo .logo-text {
  display: flex;
  flex-direction: column;
}

.brand-logo .logo-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-text);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.brand-logo .logo-title span {
  color: var(--primary-red);
}

.brand-logo .logo-tagline {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: var(--pink);
  margin-top: 2px;
}

/* Nav Links */
.navbar-fashion .navbar-nav {
  gap: 8px;
}

.navbar-fashion .nav-link {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark-text);
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition-fast);
  border-radius: var(--radius-sm);
}

.navbar-fashion .nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition-fast);
}

.navbar-fashion .nav-link:hover,
.navbar-fashion .nav-link.active {
  color: var(--primary-red);
  background-color: var(--light-pink);
}

.navbar-fashion .nav-link.active::after,
.navbar-fashion .nav-link:hover::after {
  transform: scaleX(1);
}

/* Mobile Toggle */
.navbar-fashion .navbar-toggler {
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
}

.navbar-fashion .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.2);
}

.navbar-fashion .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C8102E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: var(--light-pink);
  overflow: hidden;
  padding: 60px 0;
}

.hero-bg-accent {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(242, 92, 142, 0.2) 0%, rgba(200, 16, 46, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.08);
  border: 1px solid rgba(200, 16, 46, 0.2);
  color: var(--primary-red);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-badge i {
  color: var(--pink);
}

.hero-headline {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.hero-headline .text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 17px;
  color: #555555;
  margin-bottom: 35px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  z-index: 1;
}

.hero-main-img {
  width: 100%;
  max-height: 580px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(28, 28, 28, 0.15);
  border: 6px solid var(--white);
}

.hero-floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid var(--primary-red);
  animation: floatCard 4s ease-in-out infinite alternate;
}

@keyframes floatCard {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

.hero-floating-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-pink);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-floating-card .card-text h6 {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
}

.hero-floating-card .card-text p {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT INTRODUCTION SECTION
   ========================================================================== */
.about-intro-image-container {
  position: relative;
  padding: 15px;
}

.about-intro-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: 30px;
  right: 0px;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow);
  text-align: center;
}

.about-experience-badge .exp-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge .exp-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.about-intro-list {
  margin: 25px 0 35px;
}

.about-intro-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}

.about-intro-list li i {
  color: var(--pink);
  font-size: 17px;
  margin-top: 3px;
}

/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */
.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: var(--white);
  height: 380px;
  transition: var(--transition-normal);
  display: block;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-card .category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(28, 28, 28, 0.92) 0%, rgba(200, 16, 46, 0.4) 60%, rgba(242, 92, 142, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 24px;
  transition: var(--transition-normal);
}

.category-card .category-count {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  align-self: flex-start;
}

.category-card .category-name {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.category-card .category-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card .category-link {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.category-card .category-link i {
  color: var(--pink);
  transition: transform var(--transition-fast);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card:hover .category-link i {
  transform: translateX(6px);
  color: var(--white);
}

/* ==========================================================================
   FEATURED PRODUCTS SECTION
   ========================================================================== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-image-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: var(--light-grey);
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-badge-code {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(28, 28, 28, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-category-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-red);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.product-details-content {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
  transition: var(--transition-fast);
}

.product-title a {
  color: inherit;
}

.product-title a:hover {
  color: var(--primary-red);
}

.product-short-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-top: auto;
}

.btn-view-details {
  background: var(--light-pink);
  color: var(--primary-red) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  border: 1px solid rgba(200, 16, 46, 0.15);
}

.btn-view-details:hover {
  background: var(--primary-red);
  color: var(--white) !important;
  transform: translateY(-2px);
}

.btn-inquire-quick {
  color: #25D366;
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E8F8EE;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-inquire-quick:hover {
  background: #25D366;
  color: var(--white);
  transform: scale(1.1);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 16, 46, 0.25);
}

.product-card:hover .product-image-box img {
  transform: scale(1.05);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-card {
  background: var(--white);
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}

.why-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--light-pink);
  color: var(--primary-red);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition-normal);
}

.why-card-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 16, 46, 0.2);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover .why-icon-box {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 8px 20px rgba(200, 16, 46, 0.25);
}

/* ==========================================================================
   PROMOTIONAL FASHION BANNER
   ========================================================================== */
.promo-fashion-banner {
  position: relative;
  background-image: url('../images/promo-banner.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  color: var(--white);
  overflow: hidden;
}

.promo-fashion-banner .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 0, 21, 0.92) 0%, rgba(200, 16, 46, 0.85) 60%, rgba(242, 92, 142, 0.75) 100%);
  z-index: 1;
}

.promo-fashion-banner .banner-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.promo-fashion-banner h2 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.promo-fashion-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* ==========================================================================
   MANUFACTURING PROCESS (HOMEPAGE 6 STEPS)
   ========================================================================== */
.process-step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  position: relative;
  transition: var(--transition-normal);
}

.process-step-badge {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: rgba(200, 16, 46, 0.2);
  transition: var(--transition-fast);
}

.process-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-pink);
  color: var(--primary-red);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition-normal);
}

.process-step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.process-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 16, 46, 0.25);
}

.process-step-card:hover .process-step-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1);
}

.process-step-card:hover .process-step-badge {
  color: var(--pink);
}

/* ==========================================================================
   GALLERY SECTION (GRID / MASONRY)
   ========================================================================== */
.gallery-filter-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  background: var(--white);
  color: var(--dark-text);
  border: 1px solid var(--border-color);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.25);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  aspect-ratio: 4/5;
  background-color: var(--light-grey);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(200, 16, 46, 0.9) 0%, rgba(242, 92, 142, 0.6) 60%, rgba(28, 28, 28, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition-normal);
}

.gallery-category-badge {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
  margin-bottom: 8px;
}

.gallery-title {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-caption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.gallery-zoom-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  align-self: flex-end;
  transform: translateY(15px);
  transition: var(--transition-normal);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: translateY(0);
}

/* ==========================================================================
   CALL TO ACTION (CTA) SECTION
   ========================================================================== */
.cta-box {
  background: var(--light-pink);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(200, 16, 46, 0.12);
  box-shadow: var(--shadow-md);
}

.cta-box::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(242, 92, 142, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-box h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-box p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 30px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   INNER PAGE HERO BANNER
   ========================================================================== */
.inner-hero-banner {
  position: relative;
  background-image: url('../images/page-header-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 90px 0 80px;
  color: var(--white);
  text-align: center;
}

.inner-hero-banner .inner-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 0, 21, 0.9) 0%, rgba(200, 16, 46, 0.85) 60%, rgba(242, 92, 142, 0.75) 100%);
  z-index: 1;
}

.inner-hero-banner .container {
  position: relative;
  z-index: 2;
}

.inner-hero-banner h1 {
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.inner-hero-banner .breadcrumb {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 0;
}

.inner-hero-banner .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.inner-hero-banner .breadcrumb-item.active {
  color: var(--white);
  font-weight: 600;
}

.inner-hero-banner .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================================================
   PRODUCT DETAILS PAGE
   ========================================================================== */
.product-details-gallery {
  position: sticky;
  top: 100px;
}

.product-main-view {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-bottom: 16px;
  background: var(--light-grey);
  aspect-ratio: 4/5;
}

.product-main-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-thumb-strip {
  display: flex;
  gap: 12px;
}

.product-thumb-item {
  width: 80px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.product-thumb-item.active,
.product-thumb-item:hover {
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.product-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.product-details-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.product-specs-table {
  width: 100%;
  margin: 25px 0 35px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.product-specs-table th,
.product-specs-table td {
  padding: 12px 18px;
  font-size: 14px;
}

.product-specs-table tr:nth-child(even) {
  background-color: var(--light-grey);
}

.product-specs-table th {
  width: 32%;
  color: var(--dark-text);
  font-weight: 600;
  border-right: 1px solid var(--border-color);
  background-color: var(--light-pink);
}

.product-specs-table td {
  color: #444;
}

/* ==========================================================================
   MANUFACTURING TIMELINE (10 STEPS)
   ========================================================================== */
.mfg-timeline-wrapper {
  position: relative;
  max-width: 1050px;
  margin: 0 auto;
}

.mfg-timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-red), var(--pink));
  transform: translateX(-50%);
  opacity: 0.3;
}

.mfg-timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.mfg-timeline-item:last-child {
  margin-bottom: 0;
}

.mfg-timeline-dot {
  position: absolute;
  top: 25px;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: var(--shadow-glow);
  z-index: 2;
}

.mfg-timeline-content {
  width: 46%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.mfg-timeline-item:nth-child(odd) .mfg-timeline-content {
  margin-left: auto;
}

.mfg-timeline-item:nth-child(even) .mfg-timeline-content {
  margin-right: auto;
}

.mfg-timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 16, 46, 0.25);
}

.mfg-timeline-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 180px;
  margin-bottom: 18px;
}

.mfg-timeline-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mfg-timeline-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.mfg-timeline-header i {
  color: var(--primary-red);
  font-size: 20px;
}

.mfg-timeline-header h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.mfg-timeline-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .mfg-timeline-wrapper::before {
    left: 25px;
  }
  .mfg-timeline-dot {
    left: 25px;
  }
  .mfg-timeline-content {
    width: calc(100% - 65px);
    margin-left: 65px !important;
  }
}

/* ==========================================================================
   CONTACT PAGE & CARDS
   ========================================================================== */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-normal);
  height: 100%;
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-pink);
  color: var(--primary-red);
  font-size: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition-normal);
}

.contact-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.contact-card a:hover {
  color: var(--primary-red);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200, 16, 46, 0.25);
}

.contact-card:hover .contact-card-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.25);
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-control, .form-select {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--dark-text);
  transition: var(--transition-fast);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}

.form-label {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark-text);
}

.map-placeholder-box {
  background: var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--border-color);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-fashion {
  background-color: #141414;
  color: #B5B5B5;
  padding: 80px 0 0;
  position: relative;
  border-top: 3px solid var(--primary-red);
}

.footer-fashion .brand-logo .logo-title {
  color: var(--white);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #A0A0A0;
  margin: 20px 0 25px;
}

.footer-fashion .footer-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-fashion .footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gradient-primary);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #B5B5B5;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-links a i {
  color: var(--pink);
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #B5B5B5;
}

.footer-contact-list li i {
  color: var(--pink);
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact-list a {
  color: #B5B5B5;
}

.footer-contact-list a:hover {
  color: var(--white);
}

.footer-social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: var(--transition-fast);
}

.footer-social-links a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.4);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 60px;
  font-size: 13px;
  color: #888888;
}

.footer-bottom-bar a {
  color: #888888;
}

.footer-bottom-bar a:hover {
  color: var(--pink);
}

/* ==========================================================================
   FLOATING ELEMENTS (WHATSAPP & BACK TO TOP)
   ========================================================================== */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 1040;
  transition: var(--transition-normal);
}

.floating-whatsapp-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseWhatsapp 2s infinite;
  z-index: -1;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(6deg);
  background-color: #20BA5A;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: #1C1C1C;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-fast);
}

.floating-whatsapp-btn:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Back to Top */
.back-to-top-btn {
  position: fixed;
  bottom: 105px;
  right: 35px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary-red);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 1039;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition-normal);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--gradient-primary);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 991.98px) {
  .section-padding { padding: 60px 0; }
  .section-title { font-size: 2.1rem; }
  .hero-headline { font-size: 2.6rem; }
  .hero-section { min-height: auto; padding: 40px 0 60px; }
  .hero-floating-card { display: none; }
  .navbar-collapse {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 15px;
    border: 1px solid var(--border-color);
  }
}

@media (max-width: 767.98px) {
  .top-bar { display: none; }
  .section-title { font-size: 1.85rem; }
  .hero-headline { font-size: 2.1rem; }
  .promo-fashion-banner h2 { font-size: 2rem; }
  .cta-box { padding: 40px 20px; }
  .cta-box h2 { font-size: 2rem; }
  .inner-hero-banner { padding: 60px 0; }
  .inner-hero-banner h1 { font-size: 2.2rem; }
  .floating-whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
  .back-to-top-btn {
    bottom: 85px;
    right: 22px;
    width: 44px;
    height: 44px;
  }
}
