/* ============================================
   XHSH Industry - Cassinelli Style Design
   Modern, Clean, Professional
   ============================================ */

/* CSS Variables - Cassinelli Color Palette */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #e85d04;
  --accent-color: #f48c06;
  --dark-color: #0d0d0d;
  --light-color: #f8f9fa;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-600: #525252;
  --gray-800: #262626;
  --text-color: #171717;
  --text-light: #737373;
  --border-color: #e5e5e5;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections */
section {
  margin: 0;
  padding: 0;
  display: block;
}

/* Clearfix for sections */
section::before,
section::after {
  content: "";
  display: table;
  clear: both;
}

/* Ensure no gaps between sections */
.top-banner-slider + .hero-slider,
.top-banner-slider + .page-header,
.top-banner-slider + .breadcrumb-nav,
.hero-slider + section {
  margin-top: 0;
}

/* Fix inline-block spacing issues */
.banner-slider-container,
.slider-container {
  font-size: 0;
}

.banner-slider-container > *,
.slider-container > * {
  font-size: initial;
}

/* ============================================
   HEADER - Cassinelli Style
   ============================================ */
header {
  background: var(--white);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.header-top {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
}

.header-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-contact a {
  color: var(--white);
  opacity: 0.9;
}

.header-contact a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.header-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.header-social a {
  color: var(--white);
  opacity: 0.8;
  font-size: 16px;
}

.header-social a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.header-main {
  padding: 16px 0;
  background: var(--white);
}

.header-main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--secondary-color);
}

/* Navigation */
nav ul {
  display: flex;
  gap: 40px;
}

nav ul li a {
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  position: relative;
  color: var(--text-color);
}

nav ul li a:hover {
  color: var(--secondary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
}

nav ul li a.active {
  color: var(--secondary-color);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Selector */
.language-selector {
  position: relative;
}

.language-btn {
  background: var(--gray-100);
  color: var(--text-color);
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.language-btn:hover {
  background: var(--gray-200);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: none;
  min-width: 180px;
  overflow: hidden;
}

.language-dropdown.show {
  display: block;
  animation: fadeInDown 0.2s ease;
}

.language-dropdown a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: var(--text-color);
  font-size: 14px;
  transition: var(--transition);
}

.language-dropdown a:hover {
  background: var(--gray-100);
  color: var(--secondary-color);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary-color);
  padding: 8px;
}

/* ============================================
   TOP BANNER SLIDER - Cassinelli Style
   ============================================ */
.top-banner-slider {
  display: block;
  margin-top: 110px;
  margin-bottom: 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 5;
  width: 100%;
  padding: 0;
}

.banner-slider-container {
  position: relative;
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #1e3a5f, #2c5f7d);
  display: block;
  margin: 0;
  padding: 0;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f, #2c5f7d);
}

.banner-slide.active {
  opacity: 1;
  z-index: 1;
}

.banner-slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  padding: 0 80px;
  gap: 40px;
}

.banner-text {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

.banner-highlight {
  background: var(--secondary-color);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.banner-title {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}

.banner-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  white-space: nowrap;
}

.banner-btn {
  background: var(--white);
  color: var(--primary-color);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.banner-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateX(4px);
}

/* Banner Navigation */
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-nav:hover {
  background: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
}

.banner-prev {
  left: 24px;
}

.banner-next {
  right: 24px;
}

/* ============================================
   HERO SLIDER - Cassinelli Style
   ============================================ */
.hero-slider {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  margin: 0;
  padding: 0;
  display: block;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin: 0;
  padding: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232, 93, 4, 0.15), transparent 50%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

.slide-content h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease;
}

.slide-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.slide-content .hero-buttons {
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.slider-nav:hover {
  background: var(--secondary-color);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev {
  left: 32px;
}

.slider-next {
  right: 32px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.dot.active {
  background: var(--secondary-color);
  width: 36px;
  border-radius: 6px;
}

/* Hero Section (Fallback) */
.hero {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.75)),
              url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1920') center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 110px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(232, 93, 4, 0.15), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 24px;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary-color);
}

.btn-secondary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-title p {
  color: var(--text-light);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: auto;
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 3px solid var(--secondary-color);
  border-radius: 16px;
  z-index: -1;
}

.about-content h3 {
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 24px;
  font-weight: 700;
}

.about-content p {
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.8;
}

/* Features */
.features {
  background: var(--gray-100);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-color);
  font-weight: 600;
}

.feature-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Products Grid - Cassinelli Style */
.products-section {
  background: var(--white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}

.product-image {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: var(--gray-100);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay .btn {
  transform: translateY(20px);
  transition: var(--transition);
}

.product-card:hover .product-overlay .btn {
  transform: translateY(0);
}

.product-info {
  padding: 24px;
}

.product-category {
  font-size: 12px;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-info h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-color);
  font-weight: 600;
}

.product-info p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--secondary-color);
}

.product-price small {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 400;
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.category-card {
  background: var(--white);
  padding: 24px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid var(--border-color);
  font-weight: 500;
}

.category-card:hover,
.category-card.active {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 15px;
  transition: var(--transition);
  background: var(--white);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 4px rgba(232, 93, 4, 0.1);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

/* Contact Info */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-color);
}

.contact-card i {
  font-size: 40px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.contact-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-color);
  font-weight: 600;
}

.contact-card p {
  color: var(--text-light);
  font-size: 15px;
}

.contact-card a {
  color: var(--secondary-color);
  font-weight: 500;
}

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

/* ============================================
   FOOTER - Cassinelli Style
   ============================================ */
footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 24px;
  color: var(--white);
  font-weight: 600;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.7;
}

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

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
  padding-left: 8px;
}

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

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  font-size: 18px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 16px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  font-weight: 600;
  font-size: 15px;
}

.whatsapp-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn img {
  width: 28px;
  height: 28px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .hero-content h1 {
    font-size: 52px;
  }
}

@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
  
  .hero-content h1 {
    font-size: 44px;
  }
  
  .section-title h2 {
    font-size: 36px;
  }
  
  /* Banner Slider Responsive */
  .banner-slide-content {
    padding: 0 60px;
  }
  
  .banner-text {
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .banner-title {
    font-size: 20px;
  }
  
  .banner-desc {
    font-size: 14px;
  }
  
  .slider-container {
    min-height: 500px;
  }
  
  .slide-content h1 {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 0;
    border-top: 1px solid var(--border-color);
  }

  nav ul.show {
    display: flex;
  }

  nav ul li {
    border-bottom: 1px solid var(--border-color);
  }
  
  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul li a {
    display: block;
    padding: 16px 0;
  }

  .hero {
    min-height: 70vh;
    margin-top: 80px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-btn {
    padding: 14px 24px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  /* Banner Slider Mobile */
  .top-banner-slider {
    margin-top: 80px;
  }
  
  .banner-slider-container {
    height: auto;
    min-height: 160px;
    padding: 20px 0;
  }
  
  .banner-slide-content {
    flex-direction: column;
    padding: 0 60px;
    gap: 16px;
    text-align: center;
  }
  
  .banner-text {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .banner-highlight {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .banner-title {
    font-size: 18px;
    white-space: normal;
  }
  
  .banner-desc {
    font-size: 13px;
    white-space: normal;
  }
  
  .banner-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .banner-nav {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
  
  .banner-prev {
    left: 12px;
  }
  
  .banner-next {
    right: 12px;
  }
  
  /* Hero Slider Mobile */
  .slider-container {
    min-height: 500px;
  }
  
  .slide-content h1 {
    font-size: 32px;
  }
  
  .slide-content p {
    font-size: 16px;
  }
  
  .slider-nav {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  .slider-prev {
    left: 16px;
  }
  
  .slider-next {
    right: 16px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .logo {
    font-size: 24px;
  }
  
  .product-image {
    height: 220px;
  }
}

/* ============================================
   PAGE SPECIFIC STYLES
   ============================================ */

/* Products Page */
.page-header {
  display: flex;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.8)),
              url('https://images.unsplash.com/photo-1552321554-5fefe8c9ef14?w=1920') center/cover no-repeat;
  min-height: 400px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  width: 100%;
  margin: 0;
  margin-top: 0;
  padding: 0;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 50%, rgba(232, 93, 4, 0.2), transparent 50%);
}

.page-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: var(--secondary-color);
}

.breadcrumb a:hover {
  color: var(--accent-color);
}

/* About Page */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--secondary-color);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  color: var(--text-light);
  font-size: 15px;
  font-weight: 500;
}

/* Admin Styles */
.admin-container {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 280px;
  background: var(--primary-color);
  color: var(--white);
  padding: 32px 24px;
}

.admin-main {
  flex: 1;
  padding: 32px;
  background: var(--gray-100);
}

.admin-card {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.admin-table th {
  background: var(--gray-100);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
}

.admin-table tr:hover {
  background: var(--gray-100);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

/* Google Translate */
.goog-te-banner-frame {
  display: none !important;
}

.goog-te-gadget {
  font-family: inherit !important;
}

.goog-te-gadget-simple {
  background-color: transparent !important;
  border: none !important;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-section {
  padding: 80px 0;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto 60px;
  background: var(--white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.quick-contact {
  text-align: center;
  padding: 48px;
  background: var(--gray-100);
  border-radius: 16px;
}

.quick-contact h3 {
  font-size: 28px;
  color: var(--text-color);
  margin-bottom: 32px;
  font-weight: 600;
}

.quick-contact-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-email {
  background: var(--primary-color);
  color: var(--white);
}

.btn-email:hover {
  background: var(--dark-color);
  transform: translateY(-2px);
}

.btn-facebook {
  background: #1877f2;
  color: var(--white);
}

.btn-facebook:hover {
  background: #0d65d9;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-container {
    padding: 32px 24px;
  }

  .quick-contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .quick-contact-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */
.about-intro {
  padding: 100px 0;
}

.about-intro .about-content h2 {
  font-size: 36px;
  color: var(--text-color);
  margin-bottom: 24px;
  font-weight: 700;
}

.stats-section {
  background: var(--gray-100);
  padding: 80px 0;
}

.values-section {
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--secondary-color);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon i {
  font-size: 36px;
  color: var(--white);
}

.value-card h3 {
  font-size: 20px;
  color: var(--text-color);
  margin-bottom: 16px;
  font-weight: 600;
}

.value-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

.why-choose-section {
  padding: 100px 0;
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--gray-100);
  border-radius: 16px;
  transition: var(--transition);
}

.why-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateX(8px);
}

.why-item i {
  font-size: 32px;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 8px;
  font-weight: 600;
}

.why-item p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(232, 93, 4, 0.15), transparent 50%);
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
}

.cta p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
  position: relative;
}

.cta .hero-buttons {
  position: relative;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Notification */
.notification {
  position: fixed;
  top: 120px;
  right: 24px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  border-left: 4px solid var(--secondary-color);
  z-index: 10000;
  animation: slideInRight 0.3s ease;
}

.notification.success {
  border-left-color: #10b981;
}

.notification.error {
  border-left-color: #ef4444;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   PRODUCT DETAIL PAGE STYLES
   ============================================ */

/* Breadcrumb Navigation */
.breadcrumb-nav {
  background: var(--gray-100);
  padding: 16px 0;
  margin-top: 0;
  font-size: 14px;
  color: var(--text-light);
}

.breadcrumb-nav a {
  color: var(--text-light);
  margin: 0 8px;
}

.breadcrumb-nav a:hover {
  color: var(--secondary-color);
}

.breadcrumb-nav i {
  font-size: 10px;
  margin: 0 4px;
}

.breadcrumb-nav span {
  color: var(--text-color);
  font-weight: 500;
}

/* Product Detail Section */
.product-detail-section {
  padding: 40px 0 80px;
  background: var(--white);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Product Images */
.product-images {
  position: sticky;
  top: 130px;
}

.main-image-container {
  position: relative;
  width: 463px;
  height: 463px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: 16px;
}

.main-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.image-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-color);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-nav:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.image-prev {
  left: 16px;
}

.image-next {
  right: 16px;
}

.thumbnail-images {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.thumbnail {
  width: 100%;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--border-color);
  transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--secondary-color);
}

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

/* Product Info Main */
.product-info-main {
  padding: 0 20px;
}

.product-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-subtitle {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.stars {
  color: #fbbf24;
  font-size: 16px;
}

.rating-score {
  font-weight: 700;
  color: var(--text-color);
}

.review-count,
.sold-count {
  color: var(--text-light);
  font-size: 14px;
}

/* Price Section */
.price-section {
  background: linear-gradient(135deg, #fff5f0, #fff);
  border: 2px solid var(--secondary-color);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.welcome-deal {
  margin-bottom: 16px;
}

.deal-badge {
  background: var(--secondary-color);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}

.current-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.savings {
  color: #10b981;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.original-price {
  color: var(--text-light);
  font-size: 18px;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.import-note {
  color: var(--text-light);
  font-size: 12px;
}

.installment {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: 14px;
}

.installment i {
  color: var(--secondary-color);
}

/* Currency Selector */
.currency-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.currency-btn {
  padding: 8px 20px;
  border: 2px solid var(--border-color);
  background: var(--white);
  color: var(--text-color);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.currency-btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.currency-btn.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

/* Product Options */
.product-options {
  margin-bottom: 24px;
}

.option-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.option-group label {
  font-weight: 600;
  color: var(--text-color);
}

.selected-option {
  font-weight: 600;
  color: var(--secondary-color);
}

.edit-link {
  color: var(--accent-color);
  font-size: 14px;
  text-decoration: underline;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-btn {
  padding: 10px 20px;
  border: 2px solid var(--border-color);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  color: var(--text-color);
}

.size-btn:hover {
  border-color: var(--secondary-color);
}

.size-btn.active {
  background: var(--secondary-color);
  color: var(--white);
  border-color: var(--secondary-color);
}

.size-btn.special {
  background: var(--gray-100);
}

/* Product Sellpoints */
.product-sellpoints {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.product-sellpoints h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-color);
}

.product-sellpoints ul {
  list-style: none;
}

.product-sellpoints li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.product-sellpoints li i {
  color: #10b981;
  margin-top: 2px;
  flex-shrink: 0;
}

.product-sellpoints li strong {
  color: var(--text-color);
}

/* Product Features Grid */
.product-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.feature-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.feature-item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-color);
  display: block;
  line-height: 1.4;
}

/* Purchase Section */
.purchase-section {
  position: sticky;
  top: 130px;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.seller-info {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.seller-header {
  margin-bottom: 12px;
}

.sold-by {
  color: var(--text-light);
  font-size: 13px;
  display: block;
  margin-bottom: 4px;
}

.seller-name {
  font-weight: 700;
  color: var(--text-color);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.seller-name:hover {
  color: var(--secondary-color);
}

.seller-badge {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}

.seller-actions {
  display: flex;
  gap: 16px;
}

.seller-link {
  color: var(--accent-color);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.seller-link:hover {
  color: var(--secondary-color);
}

/* Service Commitment */
.service-commitment {
  margin-bottom: 24px;
}

.service-commitment h4 {
  font-size: 16px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px;
  background: var(--gray-100);
  border-radius: 8px;
}

.service-item i {
  color: #10b981;
  font-size: 20px;
  flex-shrink: 0;
}

.service-item strong {
  display: block;
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 4px;
}

.service-item p {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}

/* Quantity Section */
.quantity-section {
  margin-bottom: 24px;
}

.quantity-section label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-color);
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.quantity-selector button {
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
}

.quantity-selector button:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.quantity-selector input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.max-limit {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-light);
}

/* Purchase Buttons */
.purchase-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-buy-now {
  background: #ef4444;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-buy-now:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-add-cart {
  background: var(--white);
  color: var(--text-color);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-cart:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

/* Share Section */
.share-section {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.share-btn,
.wishlist-btn {
  flex: 1;
  padding: 12px;
  border: 1px solid var(--border-color);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.share-btn:hover,
.wishlist-btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.wishlist-btn i {
  color: #ef4444;
}

/* Contact Quick */
.contact-quick {
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.contact-quick p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.btn-whatsapp-full {
  background: #25D366;
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-whatsapp-full:hover {
  background: #1da851;
  transform: translateY(-2px);
}

/* Product Tabs Section */
.product-tabs-section {
  background: var(--gray-100);
  padding: 60px 0;
}

.tabs-header {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0;
}

.tab-btn {
  padding: 16px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-light);
  position: relative;
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--text-color);
}

.tab-btn.active {
  color: var(--secondary-color);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary-color);
}

.tab-content {
  display: none;
  background: var(--white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.tab-content.active {
  display: block;
}

.description-content h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--text-color);
}

.description-content h4 {
  font-size: 18px;
  margin: 24px 0 12px;
  color: var(--text-color);
}

.description-content p {
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-light);
}

.description-content ul {
  list-style: disc;
  padding-left: 24px;
}

.description-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--text-light);
}

/* Specs Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr {
  border-bottom: 1px solid var(--border-color);
}

.specs-table th,
.specs-table td {
  padding: 16px;
  text-align: left;
}

.specs-table th {
  background: var(--gray-100);
  font-weight: 600;
  color: var(--text-color);
  width: 200px;
}

.specs-table td {
  color: var(--text-light);
}

/* Reviews */
.review-summary {
  margin-bottom: 32px;
}

.overall-rating {
  text-align: center;
  padding: 32px;
  background: var(--gray-100);
  border-radius: 12px;
}

.big-rating {
  font-size: 64px;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.stars-large {
  color: #fbbf24;
  font-size: 24px;
  margin: 12px 0;
}

.review-item {
  padding: 24px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.reviewer-name {
  font-weight: 600;
  color: var(--text-color);
}

.review-stars {
  color: #fbbf24;
}

.review-text {
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 16px;
}

.review-footer {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
}

.review-verified {
  color: #10b981;
}

/* Responsive */
@media (max-width: 1200px) {
  .product-detail-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .purchase-section {
    grid-column: 1 / -1;
    position: static;
  }
  
  .product-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .product-images {
    position: static;
  }
  
  .main-image-container {
    height: 400px;
  }
  
  .product-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .breadcrumb-nav {
    margin-top: 0;
  }
  
  .product-title {
    font-size: 24px;
  }
  
  .current-price {
    font-size: 28px;
  }
  
  .product-features-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .thumbnail-images {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tabs-header {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .tab-content {
    padding: 24px;
  }
}

@media (max-width: 576px) {
  .product-features-grid {
    grid-template-columns: 1fr;
  }
  
  .size-options {
    gap: 6px;
  }
  
  .size-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}
