/* ======================================
   ACCESSIBILITY IMPROVEMENTS
   ====================================== */

/* Screen reader only text */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Skip navigation links */
.skip-links {
  position: absolute;
  top: -40px;
  left: 6px;
  z-index: 1000;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1001;
  transition: top 0.3s;
  font-size: 14px;
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
}

.skip-link:hover {
  background: #333;
  color: #fff;
}

/* Enhanced focus indicators */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Remove default browser outline and add custom */
*:focus {
  outline: none;
}

/* Custom focus styles for interactive elements */
.btn:focus,
.navbar-nav a:focus,
.footer a:focus {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  background-color: rgba(37, 99, 235, 0.1);
}

/* Ensure interactive elements are large enough (44px minimum) */
.navbar-toggle {
  min-height: 44px;
  min-width: 44px;
}

.cd-search-trigger {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* High contrast focus for icon links */
.lightbox:focus,
.cd-search-trigger:focus {
  outline: 3px solid #2563eb;
  outline-offset: 2px;
  background-color: rgba(37, 99, 235, 0.1);
}

/* Improve color contrast for better readability */
.text-muted {
  color: #555 !important;
}

/* Ensure sufficient color contrast for links */
a {
  color: #6b6b6b;
}

a:hover {
  color: #d4af37;
}

/* Focus indicators for portfolio items */
.port-item:focus-within {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* Enhanced button styles for better accessibility */
.btn {
  border: 1px solid transparent;
  min-height: 44px;
  padding: 12px 24px;
}

.btn-primary {
  background-color: #2563eb;
  border-color: #2563eb;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
}

/* Improve form accessibility */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border: 2px solid #d1d5db;
  padding: 12px;
  min-height: 44px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .skip-link {
    background: #000;
    color: #fff;
    border: 2px solid #fff;
  }
  
  .btn {
    border-width: 2px;
  }
  
  a {
    color: #0000EE;
    text-decoration: underline;
  }
  
  a:visited {
    color: #551A8B;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .skip-link {
    transition: none;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .skip-link {
    background: #fff;
    color: #000;
  }
  
  .skip-link:hover {
    background: #f0f0f0;
  }
}

/* Mobile accessibility improvements */
@media (max-width: 768px) {
  .skip-link {
    left: 0;
    width: 100%;
    text-align: center;
  }
  
  /* Ensure touch targets are large enough */
  .navbar-nav li a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 12px 15px;
  }
}

/* Focus management for modals and overlays */
.cd-search input[type="text"] {
  font-size: 16px; /* Prevent zoom on iOS */
}

/* Ensure sufficient spacing between interactive elements */
.navbar-nav li {
  margin: 0 2px;
}

.port-item {
  margin-bottom: 30px;
}

/* Improve readability */
body {
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  color: #4a4a4a;
}

/* Loading states */
.loading {
  position: relative;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #2563eb;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error states */
.error {
  color: #dc2626;
  border-color: #dc2626;
}

.error:focus {
  outline-color: #dc2626;
}

/* Success states */
.success {
  color: #059669;
  border-color: #059669;
}

.success:focus {
  outline-color: #059669;
}

/* ======================================
   PORTFOLIO GRID FIXES
   ====================================== */

/* Fix portfolio grid layout */
.port-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  list-style: none;
  padding: 0;
}

.port-grid-3 .port-item {
  width: 33.333%;
  padding: 0 15px;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.port-item {
  display: block;
  position: relative;
  overflow: hidden;
}

.port-img-overlay {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  border-radius: 8px;
}

.port-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

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

.port-overlay-cont {
  padding: 20px 0;
}

.port-title-cont h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
}

.port-title-cont h3 a {
  color: #333;
  text-decoration: none;
}

.port-title-cont h3 a:hover {
  color: #2563eb;
}

.port-btn-cont {
  margin-top: 15px;
}

.port-btn-cont a {
  display: inline-block;
  margin-right: 10px;
  padding: 10px;
  background: #f8f9fa;
  border-radius: 50%;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.port-btn-cont a:hover {
  background: #2563eb;
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .port-grid-3 .port-item {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .port-grid-3 .port-item {
    width: 100%;
  }
  
  .port-grid {
    margin: 0 -10px;
  }
  
  .port-grid-3 .port-item {
    padding: 0 10px;
  }
}

/* ======================================
   HOW TO ORDER STEPS SECTION
   ====================================== */

/* Fix how-to-order layout and styling */
#how-to-order {
  background-color: #f5f5f5;
  padding: 80px 0;
}

#how-to-order .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}

#how-to-order .col-xs-6,
#how-to-order .col-sm-3 {
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.step-number {
  margin-bottom: 25px;
  position: relative;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-number:hover .step-icon {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.step-descr {
  margin-top: 20px;
}

.step-title {
  font-size: 18px;
  font-weight: 600;
  color: #4a4a4a;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-descr p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
  margin: 0;
}

/* Add connecting lines between steps on desktop */
@media (min-width: 992px) {
  #how-to-order .col-sm-3:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    z-index: 1;
  }
}

/* Responsive adjustments for steps */
@media (max-width: 768px) {
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .step-title {
    font-size: 16px;
  }
  
  .step-descr p {
    font-size: 13px;
  }
  
  #how-to-order .col-xs-6 {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .step-title {
    font-size: 14px;
  }
  
  #how-to-order .col-xs-6 {
    width: 100%;
    margin-bottom: 25px;
  }
  
  #how-to-order {
    padding: 60px 0;
  }
}

/* Add hover effect for entire step */
#how-to-order .col-sm-3:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

/* ======================================
   GOLD & GREY COLOR SCHEME
   ====================================== */

/* Update primary colors throughout the site */
.btn-primary,
.btn:focus,
.btn:active {
  background: linear-gradient(135deg, #d4af37, #b8941f) !important;
  border-color: #d4af37 !important;
  color: #fff !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b8941f, #9a7a1a) !important;
  border-color: #b8941f !important;
}

/* Update accent colors */
.text-primary,
a:hover,
a:focus {
  color: #d4af37 !important;
}

/* Update borders and dividers */
.border-primary,
hr {
  border-color: #d4af37 !important;
}

/* Update background colors */
.bg-primary {
  background-color: #d4af37 !important;
}

.bg-light {
  background-color: #f5f5f5 !important;
}

.bg-dark {
  background-color: #3a3a3a !important;
}

/* Update navigation colors */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #d4af37 !important;
}

/* Update form elements */
.form-control:focus {
  border-color: #d4af37 !important;
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25) !important;
}

/* Update any existing counter or number displays */
.count-number,
.number,
.stat-number {
  color: #d4af37 !important;
}

/* ======================================
   COMPREHENSIVE GOLD & GREY THEME
   ====================================== */

/* Override any existing primary colors */
.btn,
.btn-primary,
button[type="submit"],
input[type="submit"] {
  background: linear-gradient(135deg, #d4af37, #b8941f) !important;
  border-color: #d4af37 !important;
  color: #fff !important;
}

.btn:hover,
.btn-primary:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  background: linear-gradient(135deg, #b8941f, #9a7a1a) !important;
  border-color: #b8941f !important;
}

/* Navigation and menu colors */
.navbar-brand,
.navbar-nav .nav-link,
.main-menu a {
  color: #4a4a4a !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.main-menu a:hover {
  color: #d4af37 !important;
}

/* Portfolio and section headers */
.section-title,
.portfolio-title,
.feature-title {
  color: #4a4a4a !important;
}

/* Accent elements */
.icon,
.feature-icon,
.service-icon {
  color: #d4af37 !important;
}

/* Additional link styling */
a:focus {
  color: #d4af37 !important;
}

/* Background sections */
.section-bg,
.bg-grey,
.grey-bg {
  background-color: #f5f5f5 !important;
}

/* Dark sections */
.section-dark,
.bg-dark,
.dark-bg {
  background-color: #3a3a3a !important;
  color: #e0e0e0 !important;
}

/* Footer styling */
.footer,
#footer {
  background-color: #3a3a3a !important;
  color: #e0e0e0 !important;
}

.footer a,
#footer a {
  color: #d4af37 !important;
}

/* Card and content box styling */
.card,
.content-box,
.feature-box {
  border-color: #e0e0e0 !important;
  background-color: #fff !important;
}

/* Testimonials and quotes */
.testimonial,
.quote {
  color: #6b6b6b !important;
}

.testimonial-author,
.quote-author {
  color: #4a4a4a !important;
}

/* Price and number highlights */
.price,
.number-highlight,
.stat {
  color: #d4af37 !important;
  font-weight: 600;
}

/* ======================================
   LOGO FIXES
   ====================================== */

/* Fix logo aspect ratio and sizing */
.logo-img {
  height: auto !important;
  max-height: 70px !important;
  width: auto !important;
  max-width: 250px !important;
  object-fit: contain !important;
  display: block !important;
}

/* Ensure logo container has enough space */
.logo-row {
  width: auto !important;
  min-width: 200px !important;
}

.logo-container-2 {
  width: auto !important;
}

/* Adjust header padding for better logo display */
.logo-2 {
  padding: 25px 0 !important;
  display: block !important;
}

.header.no-transparent .logo-2 {
  padding: 20px 0 !important;
}

/* Logo link styling */
.logo-2 a {
  display: inline-block !important;
  line-height: 1 !important;
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
  .logo-img {
    max-height: 50px !important;
    max-width: 180px !important;
  }
  
  .logo-2 {
    padding: 15px 0 !important;
  }
  
  /* Fix mobile header spacing */
  .header {
    position: relative !important;
  }
  
  .container-m-30 {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
}

@media (max-width: 480px) {
  .logo-img {
    max-height: 40px !important;
    max-width: 150px !important;
  }
  
  /* Mobile header fixes */
  .logo-2 {
    padding: 10px 0 !important;
  }
  
  .header {
    position: relative !important;
    background: #fff !important;
  }
  
  .header-wrapper {
    background: #fff !important;
  }
  
  /* Mobile container adjustments */
  .container-m-30 {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  
  /* Mobile text and content fixes */
  .hero-section,
  .section-1 {
    padding: 40px 0 !important;
  }
  
  .hero-title,
  .section-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
  }
  
  .hero-subtitle,
  .section-subtitle {
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin-bottom: 25px !important;
  }
  
  /* Mobile button adjustments */
  .btn {
    font-size: 14px !important;
    padding: 12px 20px !important;
    margin: 5px !important;
  }
  
  /* Mobile portfolio grid */
  .port-grid-3 .port-item {
    width: 100% !important;
    margin-bottom: 20px !important;
  }
  
  /* Mobile content spacing */
  .row {
    margin: 0 !important;
  }
  
  .col-xs-12,
  .col-sm-6,
  .col-md-4,
  .col-lg-3 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* ======================================
   MOBILE LAYOUT FIXES
   ====================================== */

/* Fix mobile viewport and layout issues */
@media (max-width: 767px) {
  /* Prevent horizontal scrolling */
  body {
    overflow-x: hidden !important;
  }
  
  /* Fix main sections */
  .section {
    padding: 30px 0 !important;
  }
  
  /* Hero section mobile optimization */
  .hero-section h1,
  .main-title {
    font-size: 28px !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
    padding: 0 15px !important;
  }
  
  .hero-section p,
  .main-subtitle {
    font-size: 16px !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
    padding: 0 15px !important;
  }
  
  /* Mobile navigation fixes */
  .navbar-toggle {
    margin-right: 15px !important;
  }
  
  /* Mobile content width fixes */
  .container,
  .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  
  /* Mobile image responsiveness */
  img {
    max-width: 100% !important;
    height: auto !important;
  }
  
  /* Mobile table responsiveness */
  table {
    font-size: 12px !important;
  }
  
  /* Mobile form elements */
  .form-control {
    font-size: 16px !important; /* Prevents zoom on iOS */
  }
  
  /* Mobile testimonials */
  .testimonial {
    text-align: center !important;
    padding: 20px 15px !important;
  }
  
  /* Specific hero section mobile fixes - Updated for full width */
  .hero-fullwidth {
    height: 100vh !important;
    min-height: 100vh !important;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: scroll !important;
  }
  
  .hero-content-wrapper {
    padding: 0 15px !important;
  }
  
  .hero-content-container {
    padding: 60px 0 40px 0 !important;
    min-height: 100vh !important;
  }
  
  .hero-content-inner {
    padding: 20px !important;
    width: 100% !important;
    text-align: center !important;
  }
  
  /* Hero headline mobile fixes */
  .cd-headline {
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin: 20px 0 !important;
    text-align: center !important;
  }
  
  .cd-headline span {
    display: block !important;
    font-size: 24px !important;
    line-height: 1.3 !important;
    padding: 0 10px !important;
  }
  
  /* Hero description mobile */
  .norm-16 {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 30px !important;
    text-align: center !important;
    padding: 0 20px !important;
  }
  
  /* Hide elements that might cause issues on very small screens */
  .hide-0-736 {
    display: block !important;
  }
}

/* Extra small screens (phones < 480px) */
@media (max-width: 479px) {
  .cd-headline,
  .cd-headline span {
    font-size: 20px !important;
    line-height: 1.2 !important;
  }
  
  .norm-16 {
    font-size: 13px !important;
    padding: 0 15px !important;
  }
  
  .opacity-scroll2 {
    padding: 15px !important;
  }
  
  /* Mobile viewport meta fix */
  .container {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
}

/* ======================================
   MOBILE BOOTSTRAP GRID FIXES
   ====================================== */

/* Fix Bootstrap grid issues on mobile */
@media (max-width: 767px) {
  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  
  [class*="col-"] {
    padding-left: 15px !important;
    padding-right: 15px !important;
    float: none !important;
    width: 100% !important;
  }
  
  /* Mobile button container */
  .center-0-478 {
    text-align: center !important;
    margin-top: 30px !important;
  }
  
  /* Mobile buttons */
  .btn-primary,
  .btn {
    display: inline-block !important;
    margin: 10px 5px !important;
    font-size: 14px !important;
    padding: 12px 25px !important;
    border-radius: 4px !important;
  }
  
  
  /* Mobile parallax fix */
  .parallax-section {
    background-attachment: scroll !important;
  }
  
  /* Mobile content sections */
  .section-bg {
    padding: 40px 0 !important;
  }
  
  /* Mobile typography */
  h1, h2, h3 {
    text-align: center !important;
    margin-bottom: 20px !important;
  }
  
  p {
    text-align: center !important;
    margin-bottom: 15px !important;
  }
}

/* ======================================
   MOBILE HEADER, MENU & SEARCH FIXES
   ====================================== */

@media (max-width: 767px) {
  /* Mobile header structure - Remove fixed positioning */
  .header {
    position: relative !important;
    width: 100% !important;
    z-index: 1000 !important;
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  }
  
  /* Top bar mobile styles */
  .top-bar {
    background: #f8f8f8 !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #eee !important;
  }
  
  .top-bar .container-m-30 {
    padding: 0 15px !important;
  }
  
  .top-bar-section {
    font-size: 12px !important;
  }
  
  .top-bar-section.left {
    display: none !important; /* Hide social links on mobile */
  }
  
  .top-bar-section.right li {
    margin: 0 5px !important;
    font-size: 11px !important;
    display: inline-block !important;
  }
  
  .top-bar-section.right .display-no-xxs {
    display: none !important; /* Hide extra items on very small screens */
  }
  
  /* Header wrapper mobile styles */
  .header-wrapper {
    background: #fff !important;
    padding: 15px 0 !important;
    position: relative !important;
  }
  
  .header-wrapper .container-m-30 {
    padding: 0 15px !important;
    position: relative !important;
    height: 60px !important; /* Fixed height for proper spacing */
  }
  
  /* Mobile logo container */
  .logo-row {
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    width: auto !important;
  }
  
  .logo-2 {
    padding: 0 !important;
    margin: 0 !important;
  }
  
  .logo-img {
    max-height: 40px !important;
    width: auto !important;
  }
  
  /* Mobile menu button */
  .menu-btn-respons-container {
    position: absolute !important;
    right: 50px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
  }
  
  .navbar-toggle {
    background: transparent !important;
    border: 2px solid #d4af37 !important;
    border-radius: 4px !important;
    padding: 8px 10px !important;
    margin: 0 !important;
    height: 40px !important;
    width: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .hamb-mob-icon {
    color: #d4af37 !important;
    font-size: 18px !important;
  }
  
  /* Mobile search button */
  .cd-header-buttons {
    position: absolute !important;
    right: 15px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }
  
  .cd-search-trigger {
    display: block !important;
    width: 40px !important;
    height: 40px !important;
    background: #d4af37 !important;
    border-radius: 4px !important;
    position: relative !important;
  }
  
  .cd-search-trigger span {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 16px !important;
    height: 16px !important;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z"/></svg>') no-repeat center !important;
    background-size: contain !important;
  }
  
  /* Mobile search overlay */
  .cd-search {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.9) !important;
    z-index: 10000 !important;
    padding: 80px 20px 20px !important;
  }
  
  .form-search input {
    width: 100% !important;
    padding: 15px 20px !important;
    font-size: 16px !important;
    border: none !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #333 !important;
  }
  
  /* Mobile main menu */
  .main-menu-container {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: #fff !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
    z-index: 9998 !important;
    max-height: calc(100vh - 70px) !important;
    overflow-y: auto !important;
  }
  
  .navbar-collapse {
    border: none !important;
    box-shadow: none !important;
    padding: 20px 0 !important;
  }
  
  .navbar-nav {
    margin: 0 !important;
  }
  
  .navbar-nav li {
    border-bottom: 1px solid #f0f0f0 !important;
  }
  
  .navbar-nav li a {
    padding: 15px 20px !important;
    color: #4a4a4a !important;
    font-size: 16px !important;
    display: block !important;
  }
  
  .navbar-nav li a:hover {
    background: #f5f5f5 !important;
    color: #d4af37 !important;
  }
  
  /* Mobile hero section fixes */
  .sm-img-bg-fullscr {
    margin-top: 70px !important;
    min-height: calc(100vh - 70px) !important;
    background-attachment: scroll !important;
    background-size: cover !important;
    background-position: center center !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
  }
  
  /* Add subtle dark overlay for text readability */
  .sm-img-bg-fullscr::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.4) !important;
    z-index: 1 !important;
  }
  
  .sm-content-cont {
    padding: 60px 0 !important;
    min-height: 400px !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
  }
  
  .sm-cont-middle {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    padding: 0 30px !important;
  }
  
  .opacity-scroll2 {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-shadow: none !important;
    border: none !important;
  }
  
  /* Mobile hero text - Clean and bold */
  .cd-headline {
    font-size: 32px !important;
    line-height: 1.1 !important;
    margin: 0 0 30px 0 !important;
    color: #fff !important;
    font-weight: 700 !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
  }
  
  .cd-headline span {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8) !important;
    display: block !important;
  }
  
  /* Hide description text on mobile for cleaner look */
  .norm-16 {
    display: none !important;
  }
  
  /* Mobile hero buttons - Simple and clean */
  .center-0-478 {
    text-align: left !important;
    margin-top: 0 !important;
  }
  
  .hero-btn-primary {
    display: inline-block !important;
    margin: 0 15px 15px 0 !important;
    padding: 15px 25px !important;
    font-size: 14px !important;
    border-radius: 4px !important;
    min-width: 140px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    border: 2px solid rgba(255,255,255,0.8) !important;
    background: rgba(255,255,255,0.9) !important;
    color: #333 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
  }
  
  .hero-btn-secondary {
    display: inline-block !important;
    margin: 0 15px 15px 0 !important;
    padding: 15px 25px !important;
    font-size: 14px !important;
    border-radius: 4px !important;
    min-width: 140px !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    border: 2px solid rgba(255,255,255,0.8) !important;
    background: transparent !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
  }
  
  .hero-btn-primary:hover,
  .hero-btn-primary:focus {
    background: #d4af37 !important;
    border-color: #d4af37 !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
  }
  
  .hero-btn-secondary:hover,
  .hero-btn-secondary:focus {
    background: rgba(255,255,255,0.9) !important;
    color: #333 !important;
    transform: translateY(-2px) !important;
  }
}

/* Extra mobile optimizations for very small screens */
@media (max-width: 480px) {
  /* Ultra-mobile header */
  .logo-2 {
    padding: 10px 0 !important;
  }
  
  .logo-img {
    max-height: 35px !important;
  }
  
  /* Adjust header wrapper height for very small screens */
  .header-wrapper .container-m-30 {
    height: 55px !important;
  }
  
  /* Hide more top bar items on very small screens */
  .top-bar-section.right li:not(:first-child) {
    display: none !important;
  }
  
  .top-bar-section.right {
    font-size: 10px !important;
  }
  
  .menu-btn-respons-container {
    right: 40px !important;
  }
  
  .navbar-toggle {
    padding: 6px 8px !important;
    height: 35px !important;
    width: 35px !important;
  }
  
  /* Adjust search button for very small screens */
  .cd-search-trigger {
    width: 35px !important;
    height: 35px !important;
  }
  
  /* Ultra-mobile hero improvements */
  .cd-headline {
    font-size: 28px !important;
    line-height: 1.1 !important;
  }
  
  .sm-cont-middle {
    padding: 0 20px !important;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 13px !important;
    padding: 12px 20px !important;
    min-width: 120px !important;
    margin: 0 10px 10px 0 !important;
  }
  
  /* Ultra-mobile menu */
  .main-menu-container {
    top: 60px !important;
    max-height: calc(100vh - 60px) !important;
  }
  
  .sm-img-bg-fullscr {
    margin-top: 60px !important;
    min-height: calc(100vh - 60px) !important;
  }
  
  .sm-content-cont {
    min-height: 350px !important;
    padding: 40px 0 !important;
  }
}

/* Very small screens - 360px and below */
@media (max-width: 360px) {
  .cd-headline {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }
  
  .sm-cont-middle {
    padding: 0 15px !important;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 12px !important;
    padding: 10px 16px !important;
    min-width: 110px !important;
    display: block !important;
    margin: 0 0 10px 0 !important;
    width: 100% !important;
    max-width: 180px !important;
    text-align: center !important;
  }
  
  .center-0-478 {
    text-align: center !important;
  }
}

/* ======================================
   DESKTOP HERO SECTION IMPROVEMENTS
   ====================================== */

/* Desktop and larger screens */
@media (min-width: 768px) {
  .sm-img-bg-fullscr {
    margin-top: 0 !important;
    min-height: 100vh !important;
  }
  
  .sm-content-cont {
    padding: 100px 0 !important;
    min-height: 100vh !important;
  }
  
  .sm-cont-middle {
    padding: 0 50px !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }
  
  .cd-headline {
    font-size: 48px !important;
    line-height: 1.1 !important;
    margin: 0 0 40px 0 !important;
    max-width: 600px !important;
  }
  
  .norm-16 {
    display: block !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: #fff !important;
    margin-bottom: 40px !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8) !important;
    max-width: 500px !important;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    font-size: 16px !important;
    padding: 18px 35px !important;
    min-width: 180px !important;
    margin: 0 20px 20px 0 !important;
  }
}

/* Large desktop screens */
@media (min-width: 1200px) {
  .cd-headline {
    font-size: 56px !important;
    max-width: 700px !important;
  }
  
  .norm-16 {
    font-size: 20px !important;
    max-width: 550px !important;
  }
  
  .sm-cont-middle {
    padding: 0 80px !important;
  }
}

/* ======================================
   HERO SECTION FULL WIDTH STYLING
   ====================================== */

/* Full Width Hero Section */
.hero-fullwidth {
  width: 100vw;
  height: 100vh;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-fullwidth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}

/* Hero Content Wrapper */
.hero-content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  padding: 0 20px;
}

.hero-content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 60px 0;
}

.hero-content-inner {
  width: 100%;
  text-align: left;
  animation: fadeInUp 1s ease-out;
}

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

/* Ensure hero works with header offset */
.hero-fullwidth.parallax-section {
  margin-top: 0;
  padding-top: 0; /* No padding needed - header not fixed */
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
  .hero-fullwidth {
    height: 100vh;
    background-attachment: scroll; /* Better performance on mobile */
  }
  
  .hero-content-container {
    min-height: 100vh;
    padding: 40px 0 40px 0;
  }
  
  .hero-content-wrapper {
    padding: 0 15px;
  }
  
  .hero-fullwidth.parallax-section {
    padding-top: 0; /* No header offset needed */
  }
}

@media (max-width: 576px) {
  .hero-content-container {
    padding: 30px 0 30px 0;
  }
  
  .hero-fullwidth.parallax-section {
    padding-top: 0;
  }
}

/* Landscape mobile adjustments */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-fullwidth {
    height: 100vh;
    min-height: 500px;
  }
  
  .hero-content-container {
    min-height: 100vh;
    padding: 40px 0 20px 0;
  }
}

/* Large screens optimization */
@media (min-width: 1920px) {
  .hero-fullwidth {
    background-size: cover;
    background-position: center center;
  }
  
  .hero-content-container {
    max-width: 1400px;
  }
}

/* Ultra-wide screens */
@media (min-width: 2560px) {
  .hero-content-container {
    max-width: 1600px;
  }
}

/* Ensure no horizontal scroll */
body {
  overflow-x: hidden;
}

.hero-fullwidth {
  max-width: 100vw;
  overflow: hidden;
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-fullwidth {
    background-size: cover;
    background-position: center center;
  }
}

/* ======================================
   SALES-FOCUSED HERO SECTION STYLING
   ====================================== */

/* Color Scheme Variables */
:root {
  --gold-primary: #d4af37;
  --gold-secondary: #b8941f;
  --gold-light: #f4e8b8;
  --grey-dark: #2c2c2c;
  --grey-medium: #6b6b6b;
  --grey-light: #f5f5f5;
  --white: #ffffff;
  --black: #000000;
}

/* Gold Text Highlighting */
.gold-text {
  color: var(--gold-primary) !important;
}

.highlight-gold {
  color: var(--gold-primary) !important;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Hero Badge Container - Updated for full width */
.hero-badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 20px;
  position: relative;
  z-index: 4;
}

.hero-badge {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--white);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Hero Sales Text - Updated for full width */
.hero-sales-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  position: relative;
  z-index: 4;
}

/* Product Highlights in Hero - Updated for full width */
.hero-product-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 4;
}

.product-highlight-item {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
}

.product-highlight-item i {
  color: var(--gold-primary);
  margin-right: 10px;
  font-size: 16px;
}

/* Hero CTA Container - Updated for full width */
.hero-cta-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 4;
}

/* Enhanced Hero Buttons */
.hero-btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--white);
  padding: 15px 30px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
  color: var(--white);
  text-decoration: none;
}

.hero-btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 15px 30px;
  border: 2px solid var(--white);
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: var(--white);
  color: var(--grey-dark);
  text-decoration: none;
  transform: translateY(-2px);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Hero Trust Indicators - Updated for full width */
.hero-trust-indicators {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 4;
}

.trust-item {
  text-align: center;
  color: var(--white);
}

.trust-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-primary);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.trust-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

/* Value Propositions Inline */
.value-props-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.value-prop {
  display: inline-flex;
  align-items: center;
  color: var(--grey-medium);
  font-size: 14px;
  font-weight: 500;
}

.value-prop i {
  color: var(--gold-primary);
  margin-right: 8px;
}

/* Enhanced Buttons */
.gold-gradient {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary)) !important;
  color: var(--white) !important;
  border: none !important;
}

.pulse-btn {
  animation: pulse 2s infinite;
}

/* ======================================
   PRODUCT CATALOG STYLING
   ====================================== */

/* Section Styling */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--grey-dark);
  margin-bottom: 15px;
}

.section-desc {
  font-size: 16px;
  color: var(--grey-medium);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Product Categories Filter */
.product-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.category-btn {
  background: var(--white);
  color: var(--grey-medium);
  border: 2px solid var(--grey-light);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.category-btn:hover,
.category-btn.active {
  background: var(--gold-primary);
  color: var(--white);
  border-color: var(--gold-primary);
  transform: translateY(-1px);
}

/* Product Grid */
.product-grid {
  margin-top: 60px;
}

.product-item {
  margin-bottom: 40px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

/* Product Image Container */
.product-image-container {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

/* Product Badge */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gold-primary);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-badge:nth-child(2) {
  background: #28a745;
}

.product-badge:nth-child(3) {
  background: #17a2b8;
}

/* Product Overlay */
.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.btn-quick-view,
.btn-add-quote {
  background: var(--white);
  color: var(--grey-dark);
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-quick-view:hover,
.btn-add-quote:hover {
  background: var(--gold-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Product Info */
.product-info {
  padding: 25px 20px;
}

.product-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--grey-dark);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 14px;
  color: var(--grey-medium);
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Product Features */
.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.feature-tag {
  background: var(--gold-light);
  color: var(--gold-secondary);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
}

/* Product Pricing */
.product-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-primary);
}

.price-original {
  font-size: 16px;
  color: var(--grey-medium);
  text-decoration: line-through;
}

.price-save {
  background: #dc3545;
  color: var(--white);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
}

/* Get Quote Button */
.btn-get-quote {
  width: 100%;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-get-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* Load More Button */
.btn-load-more {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-load-more:hover {
  background: var(--gold-primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Bulk Order CTA */
.bulk-order-cta {
  background: linear-gradient(135deg, var(--grey-dark), var(--grey-medium));
  color: var(--white);
  padding: 40px;
  border-radius: 15px;
  text-align: left;
}

.bulk-order-cta h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
}

.bulk-order-cta p {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
}

.btn-bulk-quote {
  background: var(--gold-primary);
  color: var(--white);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-bulk-quote:hover {
  background: var(--gold-secondary);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
}

.small-text {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

/* Tablet and Mobile Adjustments */
@media (max-width: 768px) {
  .hero-badge-container {
    justify-content: center;
  }
  
  .hero-product-highlights {
    display: none;
  }
  
  .hero-trust-indicators {
    gap: 20px;
  }
  
  .trust-number {
    font-size: 20px;
  }
  
  .product-categories {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
  }
  
  .category-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .product-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.6);
  }
  
  .bulk-order-cta {
    text-align: center;
    padding: 30px 20px;
  }
  
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .hero-cta-container {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 250px;
    justify-content: center;
  }
  
  .product-grid {
    margin-top: 40px;
  }
  
  .product-item {
    margin-bottom: 30px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .product-pricing {
    justify-content: center;
  }
}

/* Hide elements based on screen size */
@media (max-width: 768px) {
  .hide-0-768 {
    display: none !important;
  }
}

@media (max-width: 568px) {
  .hide-0-568 {
    display: none !important;
  }
}

/* Large Text Utility */
.large-text {
  font-size: 18px;
  line-height: 1.6;
}

/* ======================================
   JAVASCRIPT FUNCTIONALITY STYLING
   ====================================== */

/* Product Modal Styling */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-modal-content {
  background: var(--white);
  border-radius: 15px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.product-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  color: var(--grey-medium);
  cursor: pointer;
  z-index: 10001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product-modal-close:hover {
  background: var(--gold-primary);
  color: var(--white);
}

.product-modal-body {
  padding: 40px;
}

.product-modal-image {
  position: relative;
  margin-bottom: 20px;
}

.product-modal-image img {
  width: 100%;
  border-radius: 10px;
}

.product-modal-gallery {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.gallery-thumb:hover {
  border-color: var(--gold-primary);
}

.product-modal-info h3 {
  font-size: 28px;
  color: var(--grey-dark);
  margin-bottom: 15px;
}

.product-description {
  font-size: 16px;
  color: var(--grey-medium);
  line-height: 1.6;
  margin-bottom: 25px;
}

.product-features-list h4,
.product-specifications h4 {
  font-size: 18px;
  color: var(--grey-dark);
  margin-bottom: 15px;
}

.product-features-list ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.product-features-list li {
  padding: 5px 0;
  color: var(--grey-medium);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.spec-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-light);
  font-size: 14px;
}

.product-pricing-modal {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.btn-get-quote-modal,
.btn-contact-modal {
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-get-quote-modal {
  background: var(--gold-primary);
  color: var(--white);
  border: none;
  cursor: pointer;
}

.btn-get-quote-modal:hover {
  background: var(--gold-secondary);
  transform: translateY(-1px);
}

.btn-contact-modal {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-contact-modal:hover {
  background: var(--gold-primary);
  color: var(--white);
  text-decoration: none;
}

.product-warranty {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--grey-medium);
  font-size: 14px;
  padding: 15px;
  background: var(--grey-light);
  border-radius: 8px;
}

.product-warranty i {
  color: var(--gold-primary);
}

/* Quote Cart Float */
.quote-cart-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
  color: var(--white);
  padding: 15px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.quote-cart-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.cart-icon {
  position: relative;
}

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

.cart-label {
  font-size: 14px;
  font-weight: 600;
}

/* Quote Cart Modal */
.quote-cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.quote-cart-content {
  background: var(--white);
  border-radius: 15px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.quote-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  border-bottom: 1px solid var(--grey-light);
}

.quote-cart-header h3 {
  margin: 0;
  color: var(--grey-dark);
}

.quote-cart-close {
  font-size: 24px;
  color: var(--grey-medium);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-cart-close:hover {
  color: var(--gold-primary);
}

.quote-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 25px;
}

.quote-cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--grey-light);
  position: relative;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  margin: 0 0 5px 0;
  font-size: 16px;
  color: var(--grey-dark);
}

.cart-item-price {
  font-size: 14px;
  color: var(--grey-medium);
  margin-bottom: 8px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quantity-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--grey-light);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--grey-medium);
}

.quantity-btn:hover {
  background: var(--gold-primary);
  color: var(--white);
  border-color: var(--gold-primary);
}

.quantity {
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-total {
  font-weight: 600;
  color: var(--gold-primary);
  font-size: 16px;
}

.cart-item-remove {
  position: absolute;
  top: 10px;
  right: 0;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--grey-medium);
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-item-remove:hover {
  color: #dc3545;
}

.quote-cart-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--grey-light);
  background: var(--grey-light);
}

.cart-total {
  text-align: center;
  margin-bottom: 20px;
}

.cart-total strong {
  font-size: 18px;
  color: var(--grey-dark);
}

.cart-total small {
  display: block;
  color: var(--grey-medium);
  margin-top: 5px;
}

.cart-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-clear-cart,
.btn-request-quote {
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-clear-cart {
  background: transparent;
  color: var(--grey-medium);
  border: 2px solid var(--grey-medium);
}

.btn-clear-cart:hover {
  background: var(--grey-medium);
  color: var(--white);
}

.btn-request-quote {
  background: var(--gold-primary);
  color: var(--white);
  border: none;
}

.btn-request-quote:hover {
  background: var(--gold-secondary);
  transform: translateY(-1px);
}

/* Notifications */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  color: var(--white);
  z-index: 10001;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 350px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: slideInRight 0.3s ease;
}

.notification-info {
  background: #17a2b8;
}

.notification-success {
  background: #28a745;
}

.notification-warning {
  background: #ffc107;
  color: var(--grey-dark);
}

.notification-error {
  background: #dc3545;
}

.notification-close {
  background: none;
  border: none;
  color: inherit;
  font-size: 18px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Image Watermark */
.image-watermark {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.7);
  color: var(--white);
  padding: 2px 8px;
  font-size: 10px;
  border-radius: 4px;
  pointer-events: none;
}

/* Lazy Loading */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img.lazy.loaded {
  opacity: 1;
}

/* Mobile Responsiveness for JavaScript Features */
@media (max-width: 768px) {
  .product-modal-body {
    padding: 20px;
  }
  
  .product-modal-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .quote-cart-float {
    bottom: 20px;
    right: 20px;
  }
  
  .cart-label {
    display: none;
  }
  
  .quote-cart-content {
    margin: 10px;
    max-height: 95vh;
  }
  
  .cart-actions {
    flex-direction: column;
  }
  
  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
  
  .product-actions {
    flex-direction: column;
  }
  
  .btn-get-quote-modal,
  .btn-contact-modal {
    text-align: center;
  }
}