/* ========================================
   MARINE INDUSTRY WEBSITE TEMPLATE
   Modern Professional Design
   ======================================== */

/* CSS Variables */
:root {
  --primary-color: #0a2342;
  --primary-light: #15396b;
  --primary-dark: #061529;
  --accent-color: #0077b6;
  --accent-light: #00a8e8;
  --secondary-color: #6497b1;
  --text-dark: #1a1a2e;
  --text-light: #4a4a68;
  --text-muted: #6c757d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --border-color: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
  --border-radius: 8px;
  --border-radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

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

ul {
  list-style: none;
}

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

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

/* Section Padding */
.section-padding {
  padding: 20px 0;
}

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

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
  border-radius: 2px;
}

.section-title p {
  max-width: 600px;
  margin: 10px auto 0;
  font-size: 1.1rem;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
}

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

.top-bar-info {
  display: flex;
  gap: 30px;
}

.top-bar-info li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-info i {
  color: var(--accent-light);
}

.top-bar-social {
  display: flex;
  gap: 15px;
}

.top-bar-social a {
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.top-bar-social a:hover {
  color: var(--accent-light);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 3000;
  background: var(--white);
  padding: 20px 0;
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-menu {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-btn {
  background: var(--accent-color);
  color: var(--white) !important;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.nav-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.nav-btn:hover::after {
  width: 0 !important;
}

.hamburger {
  display: none;
  position: relative;
  z-index: 3002;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   DROPDOWN MENU
   ======================================== */
.nav-menu li.dropdown {
  position: relative;
}

.nav-menu li.dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu li.dropdown > a i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.nav-menu li.dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid var(--border-color);
}

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

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background: var(--light-bg);
  color: var(--accent-color);
  border-left-color: var(--accent-color);
  padding-left: 25px;
}

.dropdown-menu li a::after {
  display: none;
}

/* Mobile Navigation */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 100px;
    left: -100%;
    z-index: 3001;
    width: 100%;
    height: calc(100vh - 100px);
    background: var(--white);
    flex-direction: column;
    padding: 30px;
    gap: 25px;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid var(--accent-color);
    margin-left: 20px;
    margin-top: 10px;
    display: none;
    background: var(--light-bg);
  }

  .nav-menu li.dropdown:hover > .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding: 10px 15px;
    font-size: 1rem;
  }
}

/* ========================================
   PAGE HERO / BANNER (All Inner Pages)
   ======================================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  padding: 20px 0;
  text-align: center;
  color: var(--white);
  margin-top: 20px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Page Success/Error */
.contact-success {
  background: #d4edda;
  color: #155724;
  padding: 15px 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
}

.contact-error {
  background: #f8d7da;
  color: #721c24;
  padding: 15px 20px;
  border-radius: var(--border-radius);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 500;
}

/* Product Card Dynamic */
.product-card-dynamic {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 30px;
}

.product-card-dynamic:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-card-dynamic .product-image {
  height: 250px;
  overflow: hidden;
  background: var(--primary-light);
}

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

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

.product-card-dynamic .product-info {
  padding: 25px;
}

.product-card-dynamic .product-info h4 {
  margin-bottom: 10px;
}

.product-card-dynamic .product-info p {
  color: var(--text-muted);
  margin-bottom: 15px;
}

/* Detail Section */
.detail-section {
  padding: 30px 0;
}

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

.detail-image {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.detail-info .product-category {
  color: var(--accent-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.detail-info .description {
  margin-bottom: 30px;
  color: var(--text-muted);
}

.detail-specs {
  margin-bottom: 30px;
}

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

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

.detail-specs table td {
  padding: 12px 0;
}

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

.detail-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  padding: 30px 0;
  text-align: center;
  color: var(--white);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--light-bg);
  padding: 15px 0;
}

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

.breadcrumb span {
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 20px;
  overflow: hidden;
  padding: 20px 0;
}

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

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

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

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

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-3px);
}
.btn-info {
    background: #17a2b8;
    color: var(--white);
}
    
.btn-info:hover {
    background: #138496;
	color: var(--white);
}
	
.hero-image {
  animation: fadeInRight 1s ease;
}

.hero-image img {
  width: 100%;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

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

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

@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  background: var(--light-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.about-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.con-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  opacity: 0.1;
  border-radius: var(--border-radius-lg);
  z-index: -1;
}

.about-content h3 {
  color: var(--accent-color);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-top: 3px;
}

.about-feature span {
  font-weight: 600;
  color: var(--text-dark);
}

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

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

/* ========================================
   SERVICES / FEATURES SECTION
   ======================================== */
.services {
  background: var(--white);
}

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

.service-card {
  background: var(--white);
  padding: 30px 30px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

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

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

/* ========================================
   PRODUCT CARD STYLES
   ======================================== */
.product-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

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

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

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

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1;
}

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

.product-card:hover .product-overlay {
  opacity: 1;
  color: var(--white);
}

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

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

.product-info {
  padding: 15px;
}

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

.product-info h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.product-info p {
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.product-meta span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.product-meta .model {
  font-weight: 600;
  color: var(--primary-color);
}

/* ========================================
   PRODUCTS GRID
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

/* ========================================
   NEW ARRIVALS PAGE SPECIFIC
   ======================================== */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  padding: 30px 0 30px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  font-size: 0.95rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

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

.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
  color: var(--white);
  font-weight: 600;
}

/* Filter Section */
.filter-section {
  background: var(--light-bg);
  padding: 30px 0;
  margin-bottom: 30px;
}

.filter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-select {
  padding: 12px 20px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.95rem;
  cursor: pointer;
  min-width: 180px;
  transition: var(--transition);
}

.filter-select:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  color: var(--primary-color);
  font-weight: 600;
  transition: var(--transition);
}

.pagination a:hover,
.pagination .active {
  background: var(--accent-color);
  color: var(--white);
  border-color: var(--accent-color);
}

.pagination .disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-detail {
  padding: 30px 0 20px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
  margin-bottom: 10px;
}

/* Gallery */
.product-gallery {
  position: sticky;
  top: 20px;
}

.main-image {
  position: relative;
  max-width: 450px;
  max-height: 450px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.main-image img {
  width: 100%;
  max-width: 450px;
  cursor: zoom-in;
  transition: var(--transition);
}

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

.thumbnail-gallery {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.thumbnail {
  width: 100px;
  height: 80px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

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

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

/* Product Info */
.product-detail-info h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.product-detail-meta {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meta-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.meta-value.condition {
  color: #28a745;
}

.product-detail-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.product-detail-description {
  margin-bottom: 30px;
}

.product-detail-description h3 {
  margin-bottom: 15px;
}

/* Specifications Table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

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

.specs-table tr:last-child {
  border-bottom: none;
}

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

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

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

/* Warning Box */
.warning-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 20px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.warning-box i {
  color: #ffc107;
  font-size: 1.5rem;
  margin-top: 2px;
}

.warning-box p {
  margin: 0;
  color: #856404;
}

/* Inquiry Form */
.inquiry-section {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius-lg);
  margin-top: 30px;
}

.inquiry-section h3 {
  margin-bottom: 25px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 30px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-close:hover {
  color: var(--accent-light);
}

/* Similar Products */
.similar-products {
  margin-top: 30px;
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-section {
  background: var(--light-bg);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 35, 66, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay i {
  color: var(--white);
  font-size: 2.5rem;
}

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

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

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
}

.contact-info-card {
  background: var(--primary-color);
  color: var(--white);
  padding: 30px;
  border-radius: var(--border-radius-lg);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 25px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-item i {
  color: var(--accent-light);
  font-size: 1.5rem;
  margin-top: 3px;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.contact-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius-lg);
}

.contact-form-wrapper h3 {
  margin-bottom: 25px;
}

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

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 30px 0 30px;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 20px;
}

.footer-brand .logo i {
  color: var(--accent-light);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
}

.footer-heading {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--accent-light);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
}

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 30px; }
.mt-5 { margin-top: 30px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 30px; }
.mb-5 { margin-bottom: 30px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */
@media (max-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 30px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .top-bar {
    display: none;
  }

  .header {
    margin-top: 0;
  }

  .hero {
    margin-top: 20px;
    min-height: auto;
    padding: 20px 0;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* ========================================
   PRODUCT DETAIL WITH SIDEBAR
   ======================================== */
.detail-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.detail-main {
  min-width: 0;
}

.product-sidebar {
  position: sticky;
  top: 30px;
  align-self: start;
}

.sidebar-box {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
}

.sidebar-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  border-bottom: 2px solid var(--accent-color);
  padding-bottom: 10px;
}

.link-container {
  margin-bottom: 8px;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.link-container:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.link-container a {
  display: block;
  padding: 12px 15px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.link-container a:hover {
  color: var(--accent-color);
  padding-left: 20px;
}

.product-description {
  margin: 20px 0;
  padding: 20px;
  background: var(--light-bg);
  border-radius: var(--border-radius);
}

.product-description h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.product-description h5 {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.thumbnail {
  width: 80px;
  height: 60px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

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

/* Responsive for product detail with sidebar */
@media (max-width: 992px) {
  .detail-row {
    grid-template-columns: 1fr;
  }

  .product-sidebar {
    position: static;
  }
}

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

  .product-gallery {
    order: 1;
    position: static;
  }

  .detail-info {
    order: 2;
  }

  .thumbnail {
    width: 70px;
    height: 50px;
  }
}

/* Table Styles */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.data-table thead {
  background: var(--primary-color);
  color: var(--white);
}

.data-table th,
.data-table td {
  padding: 15px;
  text-align: left;
}

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

.data-table tbody tr:hover {
  background: var(--light-bg);
}
    
