/**
 * Luxury Watch Theme - Main Stylesheet
 *
 * @copyright Copyright 2003-2020 Luxury Watch Theme Development Team
 * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
 * @version 1.0
 */

/* ============================================
   CSS Variables & Reset
   ============================================ */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #d4af37;
  --accent-color: #c0392b;
  --text-color: #333333;
  --light-text: #666666;
  --border-color: #e8e8e8;
  --bg-color: #ffffff;
  --light-bg: #f9f9f9;
  --dark-bg: #1a1a1a;
  
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --spacing-xs: 5px;
  --spacing-sm: 10px;
  --spacing-md: 20px;
  --spacing-lg: 40px;
  --spacing-xl: 80px;
  
  --border-radius: 4px;
  --shadow: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Layout Containers
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#mainWrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content-wrapper {
  flex: 1;
  padding: var(--spacing-lg) 0;
}

/* ============================================
   Header Styles
   ============================================ */
.luxury-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.top-bar {
  background: var(--dark-bg);
  color: #ffffff;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 500;
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-bar-right ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.top-bar-right a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

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

.main-header {
  padding: 30px 0;
}

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

.logo {
  flex: 0 0 auto;
}

.logo a {
  text-decoration: none;
  display: block;
}

.logo-img {
  max-height: 60px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.search-container {
  flex: 1;
  max-width: 500px;
}

.search-container form {
  display: flex;
  border: 2px solid var(--border-color);
  border-radius: 25px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.search-container form:focus-within {
  border-color: var(--primary-color);
}

.search-input {
  flex: 1;
  border: none;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}

.search-input::placeholder {
  color: #999;
}

.search-btn {
  width: 50px;
  height: 50px;
  border: none;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-btn:hover {
  background: var(--secondary-color);
}

.header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 18px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}

.header-icon:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent-color);
  color: #ffffff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}

/* ============================================
   Navigation
   ============================================ */
.main-nav {
  background: var(--dark-bg);
  border-bottom: 3px solid var(--secondary-color);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: block;
  padding: 18px 25px;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.nav-item:hover > a,
.nav-item.active > a {
  color: var(--secondary-color);
  background: rgba(212, 175, 55, 0.1);
}

/* Dropdown Menu Styles */
.has-dropdown > a {
  position: relative;
}

.dropdown-arrow {
  margin-left: 5px;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  list-style: none;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border-top: 3px solid var(--secondary-color);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  position: relative;
}

.dropdown-item > a {
  display: block;
  padding: 12px 20px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s ease;
}

.dropdown-item > a:hover {
  background: var(--light-bg);
  color: var(--secondary-color);
  padding-left: 25px;
}

.dropdown-item:last-child > a {
  border-bottom: none;
}

.mobile-menu-toggle {
  display: none;
}

.menu-toggle {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
  position: relative;
  height: 600px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--dark-bg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: transparent;
  color: #ffffff;
}

/* ============================================
   Section Styles
   ============================================ */
section {
  padding: var(--spacing-xl) 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--light-text);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 300;
}

.text-center {
  text-align: center;
}

.view-all-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 40px;
}

.view-all-btn:hover {
  background: var(--secondary-color);
  color: var(--dark-bg);
}

/* ============================================
   Featured Categories
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.category-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.category-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
}

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

.category-link:hover .category-image {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: background 0.3s ease;
}

.category-link:hover .category-overlay {
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
}

.category-overlay h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 600;
}

.shop-now {
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.category-link:hover .shop-now {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Trust Section
   ============================================ */
.brand-trust {
  background: var(--light-bg);
  padding: var(--spacing-xl) 0;
}

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

.trust-item {
  text-align: center;
  padding: 20px;
}

.trust-item i {
  font-size: 48px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.trust-item h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
}

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

/* ============================================
   Instagram Feed
   ============================================ */
.instagram-feed {
  background: var(--primary-color);
  color: #ffffff;
  padding: var(--spacing-xl) 0;
}

.instagram-feed .section-title {
  color: #ffffff;
}

.instagram-feed .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 40px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1/1;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}

.instagram-link {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
  transition: transform 0.3s ease;
}

.instagram-link:hover {
  transform: scale(1.05);
}

/* ============================================
   Footer
   ============================================ */
.luxury-footer {
  background: var(--dark-bg);
  color: #ffffff;
}

.footer-newsletter {
  background: var(--secondary-color);
  padding: 40px 0;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 600;
}

.newsletter-content p {
  margin-bottom: 25px;
  font-size: 14px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
}

.newsletter-btn {
  padding: 15px 30px;
  background: var(--primary-color);
  color: #ffffff;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: #333;
}

.footer-main {
  padding: var(--spacing-xl) 0;
}

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

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

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

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: #ffffff;
  font-size: 14px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.contact-info p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  width: 20px;
  text-align: center;
  color: var(--secondary-color);
}

.payment-methods {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  font-size: 24px;
  color: rgba(255,255,255,0.6);
}

.footer-bottom {
  background: #0a0a0a;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.footer-links-bottom {
  display: flex;
  gap: 30px;
}

.footer-links-bottom a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
  color: var(--secondary-color);
}

/* ============================================
   Breadcrumb
   ============================================ */
.breadcrumb {
  padding: 15px 0;
  font-size: 13px;
  color: var(--light-text);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.breadcrumb a {
  color: var(--light-text);
  text-decoration: none;
}

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

/* ============================================
   Product Detail Page
   ============================================ */
.product-detail-container {
  padding: var(--spacing-xl) 0;
}

.product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.product-images {
  position: sticky;
  top: 100px;
}

.main-image-container {
  margin-bottom: 20px;
}

.main-product-link {
  display: block;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.main-product-image {
  width: 100%;
  height: auto;
  display: block;
}

.additional-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.additional-images img {
  width: 100%;
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.additional-images img:hover {
  border-color: var(--secondary-color);
}

.product-info {
  padding: 20px 0;
}

.product-brand {
  font-size: 13px;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.product-brand a {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-brand a:hover {
  color: var(--secondary-color);
}

.product-name {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-model {
  font-size: 14px;
  color: var(--light-text);
  margin-bottom: 15px;
}

.product-reviews {
  margin-bottom: 25px;
}

.reviews-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light-text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

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

.stars i {
  color: var(--secondary-color);
  font-size: 16px;
}

.product-price-section {
  padding: 25px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.price-label {
  font-size: 14px;
  color: var(--light-text);
  margin-right: 10px;
}

.price-value {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-color);
}

.sale-price {
  color: var(--accent-color);
}

.tax-info {
  font-size: 13px;
  color: var(--light-text);
  margin-top: 10px;
}

.product-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-color);
  margin-bottom: 30px;
}

.product-features {
  margin-bottom: 30px;
}

.product-features h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.product-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.product-features li strong {
  min-width: 150px;
  color: var(--primary-color);
}

.add-to-cart-section {
  padding: 25px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 30px;
}

/* Custom Review Section */
.custom-review-section {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  border-left: 4px solid var(--secondary-color);
  padding: 20px;
  margin: 20px 0;
  border-radius: 4px;
}

.review-title {
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-size: 20px;
}

.review-text {
  font-style: italic;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 12px;
  font-family: 'Georgia', serif;
  font-size: 15px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.quantity-selector label {
  font-weight: 500;
  color: var(--primary-color);
}

.quantity-selector input {
  width: 100px;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;
  text-align: center;
}

.cart-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.add-to-cart-btn {
  flex: 1;
  padding: 18px 30px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #b8941f 100%);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.add-to-cart-btn:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.3);
}

.add-to-cart-btn:active {
  transform: translateY(0);
}

.wishlist-btn {
  width: 55px;
  padding: 15px;
  background: var(--light-bg);
  color: var(--primary-color);
  border: 2px solid var(--border-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.wishlist-btn:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

/* Cart Trust Indicators */
.cart-trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.cart-trust-indicators .trust-item {
  font-size: 12px;
  color: var(--light-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-trust-indicators .trust-item i {
  color: #27ae60;
  font-size: 14px;
}

.more-info {
  margin-bottom: 30px;
}

.more-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.more-info a:hover {
  color: var(--secondary-color);
}

.product-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-badge {
  text-align: center;
  padding: 20px;
  background: var(--light-bg);
  border-radius: 4px;
}

.trust-badge i {
  font-size: 24px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.trust-badge span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   Product Tabs
   ============================================ */
.product-tabs-section {
  background: var(--light-bg);
  padding: var(--spacing-xl) 0;
}

.product-tabs {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
}

.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border-color);
  margin-bottom: 30px;
}

.tab-btn {
  flex: 1;
  padding: 15px 20px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--light-text);
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}

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

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

.tab-content {
  display: none;
  padding: 20px 0;
}

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

.tab-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.tab-content p {
  line-height: 1.8;
  margin-bottom: 15px;
}

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

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

.specs-table td {
  padding: 15px;
}

.specs-table td:first-child {
  font-weight: 600;
  width: 30%;
  color: var(--primary-color);
}

.write-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.write-review-btn:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-trust {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .main-header .container {
    flex-direction: column;
    gap: 20px;
  }
  
  .search-container {
    width: 100%;
    max-width: none;
  }
  
  /* Mobile Navigation */
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: var(--dark-bg);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-item > a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .has-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: rgba(255,255,255,0.05);
    display: none;
    padding-left: 20px;
  }
  
  .has-dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-item > a {
    color: #ffffff;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  .dropdown-item > a:hover {
    background: rgba(255,255,255,0.1);
    color: var(--secondary-color);
    padding-left: 20px;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .product-detail-wrapper {
    grid-template-columns: 1fr;
  }
  
  .product-images {
    position: static;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cart-buttons {
    flex-direction: column;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   Utility Classes
   ============================================ */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}
