/* Manrope Font Face Declarations - Optimized for LCP */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.ttf")
    format("truetype-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

/* Static font faces for better browser compatibility */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/static/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   MOBILE-FIRST CSS STARTER CODE
   ======================================== */

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

/* Typography - Mobile First */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 1.75rem; /* 28px */
  font-weight: 700;
}

h2 {
  font-size: 1.5rem; /* 24px */
  font-weight: 600;
}

h3 {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
}

h4 {
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
}

h5 {
  font-size: 1rem; /* 16px */
  font-weight: 500;
}

h6 {
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Links */
a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #f69064;
  text-decoration: none;
}

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

/* Lists */
ul,
ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.25rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #007bff;
  color: #fff;
}

.btn:hover {
  background-color: #0056b3;
  color: #fff;
  text-decoration: none;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.btn-success {
  background-color: #28a745;
  color: #fff;
}

/* Custom Button Variants */
.btn-custom-1 {
  background-color: #fff; /* Default background color - you can change this */
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  border: none;
  transition: all 0.3s ease;
}

.btn-custom-1:hover {
  background-color: #f69064;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 144, 100, 0.3);
}

.btn-custom-2 {
  background-color: #000;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-custom-2:hover {
  background-color: #6BBE45;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 144, 100, 0.3);
}

/* Focus and Active States for Accessibility */
.btn-custom-1:focus,
.btn-custom-1:active {
  background-color: #6BBE45;
  color: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(246, 144, 100, 0.25);
}

.btn-custom-2:focus,
.btn-custom-2:active {
  background-color: #6BBE45;
  color: #fff;
  border-color: #6BBE45;
  outline: none;
  box-shadow: 0 0 0 3px rgba(246, 144, 100, 0.25);
}

/* Disabled States */
.btn-custom-1:disabled,
.btn-custom-2:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-custom-1:disabled:hover,
.btn-custom-2:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* ========================================
   BOOTSTRAP INTEGRATION NOTES
   ======================================== */
/* 
   This CSS file works alongside Bootstrap 5:
   - Bootstrap handles: container, row, col-*, grid system
   - Custom CSS handles: typography, components, utilities
   - Use Bootstrap classes: .container, .row, .col-md-6, etc.
   - Custom classes: .btn, .card, .alert, .navbar, etc.
*/

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

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

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

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

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

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

/* Spacing */
.m-0 {
  margin: 0;
}
.m-1 {
  margin: 0.25rem;
}
.m-2 {
  margin: 0.5rem;
}
.m-3 {
  margin: 1rem;
}
.m-4 {
  margin: 1.5rem;
}
.m-5 {
  margin: 3rem;
}

.p-0 {
  padding: 0;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 1rem;
}
.p-4 {
  padding: 1.5rem;
}
.p-5 {
  padding: 3rem;
}

.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 1rem;
}
.mt-4 {
  margin-top: 1.5rem;
}
.mt-5 {
  margin-top: 3rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 1rem;
}
.mb-4 {
  margin-bottom: 1.5rem;
}
.mb-5 {
  margin-bottom: 3rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Cards */
.card {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-bottom: 1rem;
}

.card-body {
  padding: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-text {
  margin-bottom: 1rem;
}

/* Alerts */
.alert {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeaa7;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* ========================================
   MODERN NAVBAR STYLING
   ======================================== */

/* Main Navbar */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hide desktop navbar on mobile */
@media (max-width: 991px) {
  .navbar:not(.navbar-mobile) {
    display: none !important;
  }
}

.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  flex-wrap: nowrap;
}

/* Override Bootstrap navbar-collapse */
.navbar-collapse {
  flex-basis: auto;
  flex-grow: 0;
}

/* Search Bar - Far Left */
.navbar-search {
  flex: 0 0 200px;
  order: 1;
  display: flex;
}

.search-input-wrapper {
  position: relative;
  width: 100%;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 14px;
}

.search-input {
  width: 100%;
  padding: 8px 12px 8px 35px;
  border: 1px solid #e9ecef;
  border-radius: 25px;
  font-size: 14px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #f69064;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(246, 144, 100, 0.1);
}

/* Logo - Center */
.navbar-brand-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  order: 3;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  position: relative;
  width: 32px;
  height: 32px;
}

.logo-circle {
  position: absolute;
  border-radius: 50%;
}

.logo-circle-1 {
  width: 20px;
  height: 20px;
  background-color: #6f42c1;
  top: 0;
  left: 0;
  z-index: 2;
}

.logo-circle-2 {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 2px solid #6f42c1;
  top: 8px;
  left: 8px;
  z-index: 1;
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: #000;
}

/* Navigation Links - Left Side */
.navbar-nav-left {
  order: 2;
  margin-right: auto;
  flex: 0 0 auto;
  display: flex;
}

.navbar-nav-right {
  order: 4;
  margin-left: auto;
  flex: 0 0 auto;
  display: flex;
}

/* Prevent Bootstrap from affecting our custom nav */
.navbar-nav-left .navbar-nav,
.navbar-nav-right .navbar-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.navbar-nav {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}

.nav-item {
  margin: 0;
}

.nav-link {
  color: #000 !important;
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
}

/* Override Bootstrap navbar-light styles */
.navbar-light .navbar-nav .nav-link {
  color: #000 !important;
}

.navbar-light .navbar-nav-left .nav-link,
.navbar-light .navbar-nav-right .nav-link {
  color: #000 !important;
}

.nav-link:hover,
.nav-link.active {
  color: #f69064;
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #f69064;
}

/* Remove background on dropdown toggle when open */
.nav-link.dropdown-toggle.show,
.nav-item.dropdown.show .nav-link {
  background-color: transparent !important;
  color: #f69064 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.nav-link.dropdown-toggle:focus,
.nav-link.dropdown-toggle:active,
.nav-link:focus,
.nav-link:active {
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Override Bootstrap default styles */
.navbar-nav .nav-link {
  background-color: transparent !important;
}

.navbar-nav-left .nav-link,
.navbar-nav-right .nav-link {
  background-color: transparent !important;
}

/* Mega Menu Styles */
.mega-menu {
  position: static !important;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background-color: #fff;
  border: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-radius: 0;
  padding: 2rem 0;
  margin-top: 0.5rem;
  z-index: 1000;
}

.mega-dropdown .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem 2rem;
}

.mega-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f69064;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-list li {
  margin-bottom: 0.5rem;
}

.mega-link {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: block;
  padding: 0.25rem 0;
}

.mega-link:hover {
  color: #f69064;
  padding-left: 0.5rem;
  text-decoration: none;
}

/* Mega Menu Image */
.mega-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.mega-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Hover effects for mega menu */
.mega-menu:hover .mega-dropdown {
  display: block !important;
}

/* ========================================
   MOBILE NAVBAR STYLING
   ======================================== */

/* Mobile Navbar */
.navbar-mobile {
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 0.75rem 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.navbar-mobile .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

/* Mobile Hamburger */
.mobile-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
  background: none;
}

.mobile-toggler:focus {
  box-shadow: none;
}

.mobile-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 24px;
  height: 24px;
}

/* Mobile Brand */
.mobile-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.mobile-brand .logo-container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mobile-brand .logo-icon {
  width: 24px;
  height: 24px;
}

.mobile-brand .logo-circle-1 {
  width: 16px;
  height: 16px;
}

.mobile-brand .logo-circle-2 {
  width: 16px;
  height: 16px;
  top: 6px;
  left: 6px;
}

.mobile-brand .logo-text {
  font-size: 1.25rem;
}

/* Mobile Actions */
.mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-actions .action-icon {
  color: #333;
  font-size: 16px;
  text-decoration: none;
  padding: 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.mobile-actions .action-icon:hover {
  color: #f69064;
  background-color: #f8f9fa;
}

/* Mobile Sidebar */
.mobile-sidebar {
  width: 280px;
}

.mobile-sidebar .offcanvas-header {
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 1.5rem;
}

.mobile-sidebar .offcanvas-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin: 0;
}

.mobile-sidebar .btn-close {
  padding: 0.5rem;
  background-size: 16px;
}

/* Mobile Search */
.mobile-sidebar .mobile-search {
  padding: 0 1.5rem;
}

.mobile-sidebar .search-input-wrapper {
  position: relative;
  width: 100%;
}

.mobile-sidebar .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 14px;
}

.mobile-sidebar .search-input {
  width: 100%;
  padding: 10px 12px 10px 35px;
  border: 1px solid #e9ecef;
  border-radius: 25px;
  font-size: 14px;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.mobile-sidebar .search-input:focus {
  outline: none;
  border-color: #f69064;
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(246, 144, 100, 0.1);
}

/* Mobile Navigation */
.mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  margin: 0;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #f8f9fa;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #f69064;
  background-color: #f8f9fa;
  text-decoration: none;
}

.mobile-nav-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-nav-link[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* Mobile Sub Navigation */
.mobile-subnav {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #f8f9fa;
}

.mobile-subnav-link {
  display: block;
  padding: 0.75rem 1.5rem 0.75rem 3rem;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.mobile-subnav-link:hover {
  color: #f69064;
  background-color: #fff;
  text-decoration: none;
}

/* Mobile Sub Navigation Categories */
.mobile-subnav-category {
  margin: 0;
}

.mobile-subnav-category-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  background-color: #e9ecef;
  border-bottom: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.mobile-subnav-category-link:hover {
  color: #f69064;
  background-color: #f8f9fa;
  text-decoration: none;
}

.mobile-subnav-items {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #f8f9fa;
}

.mobile-subnav-items .mobile-subnav-link {
  padding-left: 3rem;
  font-size: 13px;
  font-weight: 400;
  color: #666;
}

/* Body padding for mobile navbar */
@media (max-width: 991px) {
  body {
    padding-top: 60px;
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .mega-dropdown {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 1rem 0;
  }

  .mega-dropdown .row {
    margin: 0;
  }

  .mega-dropdown .col-md-3 {
    margin-bottom: 1.5rem;
  }
}

/* Regular Dropdown Styles */
.dropdown-toggle::after {
  margin-left: 5px;
  font-size: 12px;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #f69064;
}

/* Mega Menu - 4 Column Design */
.navbar-nav-left {
  position: relative !important;
}

.mega-menu-trigger {
  position: relative !important;
}

.mega-menu {
  position: fixed !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  max-width: 100vw !important;
  background-color: #fff !important;
  border: none !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-top: 70px !important;
  z-index: 1000 !important;
  display: none !important;
}

.mega-menu.show {
  display: block !important;
}

.mega-menu-content {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  min-height: 400px;
  width: 100%;
}

.mega-menu-column {
  padding: 2rem 1.5rem;
  border-right: 1px solid #e9ecef;
  display: flex;
  flex-direction: column;
}

.mega-menu-column:last-child {
  border-right: none;
}

.mega-menu-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f69064;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mega-menu-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex: 1;
}

.mega-menu-list li {
  margin-bottom: 0.5rem;
}

.mega-menu-link {
  color: #333 !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition: all 0.3s ease;
  display: block !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 4px;
  position: relative;
}

.mega-menu-link:hover {
  color: #f69064 !important;
  background-color: #f8f9fa;
  padding-left: 1rem;
  text-decoration: none !important;
}

/* Image Column */
.mega-menu-image {
  padding: 0 !important;
  background-color: #f8f9fa;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-menu-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.mega-menu-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* Adjust positioning for full width */
@media (min-width: 992px) {
  .mega-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
  }
}

/* Responsive adjustments for mega menu */
@media (max-width: 991px) {
  .mega-menu {
    width: calc(100vw - 30px) !important;
    max-width: calc(100vw - 30px) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  
  .mega-menu-content {
    grid-template-columns: repeat(2, 1fr) !important;
    min-height: auto;
  }
  
  .mega-menu-column {
    border-right: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
  }
  
  .mega-menu-column:nth-child(2n) {
    border-right: none;
  }
  
  .mega-menu-column:last-child {
    grid-column: 1 / -1;
    border-right: none;
    border-bottom: none;
  }
  
  .mega-menu-image {
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 768px) {
  .mega-menu-content {
    grid-template-columns: 1fr !important;
  }
  
  .mega-menu-column {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }
  
  .mega-menu-column:last-child {
    border-bottom: none;
  }
}

/* Action Icons - Far Right */
.navbar-actions {
  order: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.action-icon {
  color: #333;
  font-size: 18px;
  text-decoration: none;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.action-icon:hover {
  color: #f69064;
  background-color: #f8f9fa;
}

/* Badges */
.badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #f69064;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-wishlist,
.badge-cart {
  background-color: #f69064;
}

/* Font Weight Classes */
.font-light {
  font-weight: 300;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}

/* ========================================
   MEDIA QUERIES - RESPONSIVE DESIGN
   ======================================== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  h1 {
    font-size: 2rem; /* 32px */
  }

  h2 {
    font-size: 1.75rem; /* 28px */
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem; /* 36px */
  }

  h2 {
    font-size: 2rem; /* 32px */
  }

  h3 {
    font-size: 1.5rem; /* 24px */
  }

  /* Navigation for tablets */
  .navbar-nav {
    flex-direction: row;
  }

  .nav-item {
    margin-right: 1rem;
    margin-bottom: 0;
  }

  .navbar-toggler {
    display: none;
  }

  .navbar-collapse {
    display: flex;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  h1 {
    font-size: 2.5rem; /* 40px */
  }

  h2 {
    font-size: 2.25rem; /* 36px */
  }

  h3 {
    font-size: 1.75rem; /* 28px */
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  h1 {
    font-size: 3rem; /* 48px */
  }

  h2 {
    font-size: 2.5rem; /* 40px */
  }

  h3 {
    font-size: 2rem; /* 32px */
  }
}

/* Extra extra large devices (1400px and up) */
@media (min-width: 1400px) {
  /* Bootstrap handles container sizing */
}

/* Mobile-specific optimizations */
@media (max-width: 767px) {
  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .card {
    margin-bottom: 1rem;
  }

  .navbar {
    padding: 0.75rem 0;
  }

  .navbar-brand {
    font-size: 1.125rem;
  }

  /* Hide elements on mobile */
  .d-mobile-none {
    display: none;
  }

  /* Show elements only on mobile */
  .d-mobile-block {
    display: block;
  }
}

/* ========================================
   HERO SECTION STYLING
   ======================================== */

.hero-section {
  padding: 4rem 0;
  background-color: #fff;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-section .container {
  max-width: 1400px;
}

.hero-content {
  padding-right: 2rem;
}

/* Rating Badge */
.hero-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.rating-badge {
  background-color: #e6f3ff;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.stars i {
  color: #f3bb2e;
  font-size: 18px;
}

/* Hero Title */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.typing-text {
  color: #f69064;
  transition: opacity 0.1s ease;
  display: inline-block;
  min-width: 1px; /* Prevent layout shift */
}

.cursor {
  animation: blink 1s infinite;
  color: #f69064;
  font-weight: 300;
  margin-left: 2px;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* Enhanced typewriter animations */
.typing-text.typing {
  animation: typingGlow 0.3s ease-in-out;
}

@keyframes typingGlow {
  0% {
    text-shadow: 0 0 5px rgba(246, 144, 100, 0.3);
  }
  50% {
    text-shadow: 0 0 10px rgba(246, 144, 100, 0.6);
  }
  100% {
    text-shadow: 0 0 5px rgba(246, 144, 100, 0.3);
  }
}

/* Smooth transitions for word changes */
.typing-text {
  transition: all 0.2s ease-in-out;
}

/* Pause cursor animation when hovering */
.typing-text:hover + .cursor {
  animation-play-state: paused;
}


/* Hero Description */
.hero-description {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Hero Features */
.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: #000;
  font-weight: 500;
}

.hero-features i {
  color: #28a745;
  background-color: #eaf8f1;
  font-size: 16px;
  border-radius: 50%;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

/* Hero CTA Button */
.hero-cta {
  font-size: 1rem;
  padding: 1rem 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================= On the Gram ================= */
.gram-section {
  background: #fff;
}
.gram-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #000;
}
.gram-handle {
  color: #f69064;
  font-weight: 700;
  text-decoration: none;
}
.gram-carousel-wrapper {
  position: relative;
}
.gram-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.5rem 2.25rem; /* leave room for arrows */
}
.gram-carousel::-webkit-scrollbar {
  height: 8px;
}
.gram-carousel::-webkit-scrollbar-thumb {
  background: #e9ecef;
  border-radius: 999px;
}
.gram-card {
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
.gram-card img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.gram-feature .gf-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border: 2px solid #111;
  border-radius: 12px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gram-feature .gf-icon i {
  font-size: 22px;
  color: #111;
}
.gram-feature .gf-icon .gf-badge {
  position: absolute;
  right: -6px;
  top: -6px;
  width: 16px;
  height: 16px;
  background: #ff8d5a;
  border-radius: 4px;
}
.gram-feature .gf-title {
  font-weight: 800;
  color: #000;
  margin: 6px 0 4px;
}
.gram-feature .gf-sub {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}
.gram-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
}
.gram-prev {
  left: 0;
}
.gram-next {
  right: 0;
}
.gram-nav:hover {
  background: #f69064;
  color: #fff;
}

@media (max-width: 991px) {
  .gram-card img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .gram-card img {
    height: 180px;
  }
}

/* Hero Mockups */
.hero-mockups {
  padding-left: 2rem;
}

.mockup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem 1rem;
  row-gap: 2.5rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Staggered layout - offset right column cards */
.mockup-card-2 {
  margin-top: 2rem; /* Push card 2 down */
  height: fit-content; /* Ensure consistent height */
}

.mockup-card-4 {
  margin-top: 2rem; /* Push card 4 down */
  height: fit-content; /* Ensure consistent height */
}

/* Cards should be exactly the same size as images */
.mockup-card {
  display: inline-block; /* Let card size match image */
  background-color: transparent;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.mockup-card:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mockup-card img {
  width: 100%;
  height: auto; /* Let image maintain its aspect ratio */
  object-fit: cover;
  border-radius: 12px; /* Apply border radius to image */
  display: block; /* Remove any default image spacing */
}

/* Individual Mockup Card Colors - Removed backgrounds */
.mockup-card-1,
.mockup-card-2,
.mockup-card-3,
.mockup-card-4 {
  background-color: transparent; /* All cards have transparent background */
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-section {
    padding: 2rem 0;
    min-height: auto;
  }

  .hero-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }

  .hero-mockups {
    padding-left: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .mockup-grid {
    max-width: 400px;
    row-gap: 2rem; /* Maintain increased spacing on tablets */
  }

  /* Adjust staggered effect for tablets */
  .mockup-card-2,
  .mockup-card-4 {
    margin-top: 1.5rem;
    height: fit-content;
  }

  /* Let images determine card size on tablets */
  .mockup-card img {
    height: auto; /* Let image maintain aspect ratio */
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .mockup-grid {
    gap: 0.75rem 0.75rem;
    row-gap: 1.5rem; /* Maintain increased spacing on mobile */
    max-width: 300px;
  }

  /* Adjust staggered effect for mobile */
  .mockup-card-2,
  .mockup-card-4 {
    margin-top: 1rem;
    height: fit-content;
  }

  /* Let images determine card size on mobile */
  .mockup-card {
    padding: 0; /* Remove padding on mobile too */
  }

  .mockup-card img {
    height: auto; /* Let image maintain aspect ratio */
  }
}

/* ========================================
   CLIENTS CAROUSEL SECTION
   ======================================== */

.clients-section {
  padding: 2rem 0;
  background-color: #fff;
}

.clients-content {
  max-width: 1200px;
  margin: 0 auto;
}

.clients-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
}

.clients-subtitle {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 3rem;
}

/* Owl Carousel Styles */
.clients-carousel {
  margin-top: 2rem;
}

.client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  height: 100px;
}

.client-logo {
  max-width: 150px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Owl Carousel Navigation */
.owl-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.owl-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #e9ecef;
  color: #333;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background-color: #f69064;
  border-color: #f69064;
  color: #fff;
}

.owl-nav button:focus {
  outline: none;
}

/* Owl Carousel Dots */
.owl-dots {
  text-align: center;
  margin-top: 2rem;
}

.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.owl-dot.active,
.owl-dot:hover {
  background-color: #f69064;
}

/* Responsive Design */
@media (max-width: 991px) {
  .clients-section {
    padding: 3rem 0;
  }

  .clients-title {
    font-size: 2rem;
  }

  .clients-subtitle {
    font-size: 1rem;
  }

  .client-item {
    height: 80px;
    padding: 0.5rem;
  }

  .client-logo {
    max-width: 120px;
    max-height: 50px;
  }
}

@media (max-width: 767px) {
  .clients-section {
    padding: 2rem 0;
  }

  .clients-title {
    font-size: 1.75rem;
  }

  .clients-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  .client-item {
    height: 70px;
    padding: 0.25rem;
  }

  .client-logo {
    max-width: 100px;
    max-height: 40px;
  }

  .owl-nav {
    margin-top: 1.5rem;
  }

  .owl-nav button {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
  padding: 5rem 0;
  background-color: #fff;
}

.features-image {
  padding-right: 2rem;
}

.search-carousel-container {
  background-color: #f2e6d6;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.features-search-container {
  margin-bottom: 3rem;
  width: 100%;
  max-width: 400px;
}

.features-search-wrapper {
  position: relative;
  width: 100%;
}

.features-search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 16px;
}

.features-search-field {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 2px solid #e9ecef;
  border-radius: 25px;
  font-size: 16px;
  background-color: #fff;
  transition: all 0.3s ease;
}

.features-search-field::placeholder {
  color: #000;
  opacity: 1;
}

.features-search-field:focus {
  outline: none;
  border-color: #f69064;
  box-shadow: 0 0 0 3px rgba(246, 144, 100, 0.1);
}

.product-carousels {
  width: 100%;
  overflow: hidden;
}

.product-carousel {
  margin-bottom: 2rem;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  animation: scroll-left 15s linear infinite;
}

.carousel-right .carousel-track {
  animation: scroll-right 15s linear infinite;
}

.product-item {
  flex-shrink: 0;
  margin-right: 1rem;
}

.product-item img {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.features-content {
  padding-left: 2rem;
}

.features-badge {
  margin-bottom: 1.5rem;
}

.badge-text {
  background-color: #e3efce;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.features-description {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.features-grid {
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
}

.feature-icon i {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.feature-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.features-cta {
  margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 991px) {
  .features-section {
    padding: 3rem 0;
  }

  .features-image {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .search-carousel-container {
    padding: 1.5rem;
    min-height: 400px;
  }

  .features-search-container {
    margin-bottom: 2rem;
    max-width: 350px;
  }

  .product-item img {
    width: 100px;
    height: 100px;
  }

  .features-content {
    padding-left: 0;
    text-align: center;
  }

  .features-title {
    font-size: 2rem;
  }

  .features-description {
    font-size: 1rem;
  }

  .feature-item {
    align-items: flex-start;
    text-align: left;
  }

  .features-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .features-section {
    padding: 2rem 0;
  }

  .search-carousel-container {
    padding: 1rem;
    min-height: 350px;
  }

  .features-search-container {
    margin-bottom: 1.5rem;
    max-width: 300px;
  }

  .features-search-field {
    padding: 12px 12px 12px 40px;
    font-size: 14px;
  }

  .product-item img {
    width: 80px;
    height: 80px;
  }

  .features-title {
    font-size: 1.75rem;
  }

  .features-description {
    font-size: 0.9rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: left;
    gap: 0.75rem;
  }

  .features-grid {
    gap: 1rem;
  }

  .feature-title {
    font-size: 1.125rem;
  }

  .feature-text {
    font-size: 0.9rem;
  }
}

/* ========================================
   IDEAS SECTION
   ======================================== */

.ideas-section {
  padding: 5rem 0;
  background-color: #fff;
}

.ideas-content {
  padding-right: 2rem;
}

.ideas-badge {
  margin-bottom: 1.5rem;
}

.ideas-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.ideas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.idea-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.75rem;
}

.idea-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.idea-icon {
  flex-shrink: 0;
}

.idea-icon i {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #f8f9fa;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.idea-content {
  flex: 1;
}

.idea-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.idea-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.ideas-image {
  padding-left: 2rem;
}

.print-demand-container {
  background-color: #e6f3ff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-height: 500px;
  position: relative;
}

.print-demand-card {
  position: relative;
  height: 100%;
}

.color-selection {
  position: absolute;
  top: -10px;
  right: 20px;
  z-index: 10;
}

.color-bubble {
  background-color: #fff;
  border-radius: 20px;
  padding: 8px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.color-dots {
  display: flex;
  gap: 4px;
}

.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.color-dot.blue {
  background-color: #4285f4;
}
.color-dot.purple {
  background-color: #9c27b0;
}
.color-dot.pink {
  background-color: #e91e63;
}
.color-dot.orange {
  background-color: #ff9800;
}

.check-icon {
  color: #ff9800;
  font-size: 12px;
}

.print-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 2rem;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.product-card {
  background-color: #fff;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.product-img {
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-info .product-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.product-info .product-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
}

.product-info .old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 0.5rem;
}

.product-info .new-price {
  color: #28a745;
}

.user-bubble {
  position: absolute;
  background-color: #28a745;
  color: #fff;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.user-bubble.emma {
  top: -8px;
  right: -8px;
}

.user-bubble.jack {
  bottom: -8px;
  left: -8px;
  background-color: #9c27b0;
}

.side-tools {
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tool-button {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.tool-button.blue {
  background-color: #4285f4;
}
.tool-button.pink {
  background-color: #e91e63;
}
.tool-button.purple {
  background-color: #9c27b0;
}
.tool-button.orange {
  background-color: #ff9800;
}
.tool-button.gray {
  background-color: #6c757d;
  width: auto;
  padding: 0 8px;
  font-size: 12px;
}

.tool-button.gray span {
  margin-left: 4px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .ideas-section {
    padding: 3rem 0;
  }

  .ideas-content {
    padding-right: 0;
    margin-bottom: 3rem;
    text-align: center;
  }

  .ideas-image {
    padding-left: 0;
  }

  .ideas-title {
    font-size: 2rem;
  }

  .idea-item {
    align-items: center;
    text-align: center;
  }

  .idea-header {
    flex-direction: column;
    gap: 0.75rem;
  }

  .ideas-grid {
    gap: 1.5rem;
  }

  .print-demand-container {
    padding: 1.5rem;
    min-height: 400px;
  }

  .side-tools {
    left: -50px;
  }

  .tool-button {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .ideas-section {
    padding: 2rem 0;
  }

  .ideas-title {
    font-size: 1.75rem;
  }

  .idea-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .ideas-grid {
    gap: 1rem;
  }

  .idea-title {
    font-size: 1.125rem;
  }

  .idea-text {
    font-size: 0.9rem;
  }

  .print-demand-container {
    padding: 1rem;
    min-height: 350px;
  }

  .side-tools {
    left: -40px;
  }

  .tool-button {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .product-grid {
    gap: 0.75rem;
  }

  .product-img {
    height: 60px;
  }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.testimonials-content {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-badge {
  margin-bottom: 1.5rem;
}

.testimonials-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.testimonials-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 3rem;
}

.testimonials-carousel {
  margin-top: 2rem;
}

.testimonial-item {
  padding: 0 15px;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 280px;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quote-icon {
  margin-bottom: 0.75rem;
}

.quote-icon i {
  font-size: 1.25rem;
  color: #f69064;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 0.85rem;
  line-height: 1.4;
  color: #333;
  margin-bottom: 1rem;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f69064;
}

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

.author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.75rem;
  color: #666;
  margin: 0;
}

/* Owl Carousel Customization */
.testimonials-carousel .owl-nav {
  display: none;
}

.testimonials-carousel .owl-dots {
  margin-top: 2rem;
  text-align: center;
}

.testimonials-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials-carousel .owl-dots .owl-dot.active {
  background-color: #f69064;
  transform: scale(1.2);
}

.testimonials-carousel .owl-dots .owl-dot:hover {
  background-color: #f69064;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 991px) {
  .testimonials-section {
    padding: 3rem 0;
  }

  .testimonials-title {
    font-size: 1.75rem;
  }

  .testimonial-card {
    padding: 1.25rem;
    height: 260px;
  }

  .testimonial-text {
    font-size: 0.8rem;
  }

  .author-name {
    font-size: 0.85rem;
  }

  .author-title {
    font-size: 0.7rem;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 2rem 0;
  }

  .testimonials-title {
    font-size: 1.5rem;
  }

  .testimonials-subtitle {
    font-size: 0.9rem;
  }

  .testimonial-card {
    padding: 1rem;
    height: 240px;
  }

  .testimonial-text {
    font-size: 0.75rem;
  }

  .author-avatar img {
    width: 35px;
    height: 35px;
  }

  .author-name {
    font-size: 0.8rem;
  }

  .author-title {
    font-size: 0.65rem;
  }
}

/* Quote Form Section */
.quote-form-section {
  padding: 40px 0;
  background-color: #f8f9fa;
}



.quote-form-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
}

.badge-text {
  background-color: #6BBE45;
  color: #fff;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quote-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.75rem;
}

.quote-form-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.quote-form-container {
  background-color: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.form-group {
  padding: 0 0.5rem;
  margin-bottom: 0.75rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: #fff;
}

.form-control:focus {
  outline: none;
  border-color: #f69064;
  box-shadow: 0 0 0 3px rgba(246, 144, 100, 0.1);
}

.form-control::placeholder {
  color: #999;
}

/* File Upload Styling */
.file-upload-wrapper {
  position: relative;
  border: 2px dashed #e9ecef;
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  background-color: #f8f9fa;
}

.file-upload-wrapper:hover {
  border-color: #f69064;
  background-color: #fff5f0;
}

.file-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-upload-text {
  color: #666;
  font-size: 0.9rem;
}

.file-upload-text i {
  font-size: 1.2rem;
  color: #f69064;
  margin-bottom: 0.4rem;
  display: block;
}

.file-upload-text span {
  display: block;
}

/* Custom reCAPTCHA */
.custom-recaptcha,
.custom-reCAPTCHA {
  /* keep both for safety */
  background-color: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 6px;
  padding: 0.75rem;
  margin: 0.5rem 0;
}

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

.recaptcha-text {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

/* Sum style */
.recaptcha-sum input {
  text-align: center;
}

.puzzle-piece::before {
  content: attr(data-piece);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.puzzle-piece::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #28a745, #20c997);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.puzzle-piece:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(246, 144, 100, 0.3);
}

.puzzle-piece.clicked {
  background: linear-gradient(45deg, #28a745, #20c997);
  transform: scale(1.1);
}

.puzzle-piece.clicked::after {
  opacity: 1;
}

.recaptcha-instruction {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.recaptcha-status {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: #dc3545;
  font-size: 0.8rem;
  font-weight: 600;
}

.recaptcha-status.show {
  display: flex;
}

.recaptcha-status.success {
  color: #28a745;
}

.recaptcha-status.success i {
  color: #28a745;
}

/* Submit Button */
.quote-submit-btn {
  background: linear-gradient(45deg, #f69064, #ff6b35);
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  min-width: 180px;
}

.quote-submit-btn:hover:not(:disabled) {
  background: linear-gradient(45deg, #ff6b35, #f69064);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246, 144, 100, 0.3);
}

.quote-submit-btn:disabled {
  background: #6c757d;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.quote-submit-btn i {
  margin-right: 0.5rem;
}

/* Promo Hero Section */
.promo-hero-section {
  padding: 80px 0;
}
.promo-media {
  position: relative;
  min-height: 520px;
}
.promo-media .promo-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}
.promo-card-a {
  top: 0;
  left: 0;
  width: 48%;
}
.promo-card-b {
  top: 110px;
  left: 38%;
  width: 62%;
}
.promo-card-c {
  top: 240px;
  left: 5%;
  width: 42%;
}
.promo-card-d {
  top: 360px;
  left: 46%;
  width: 48%;
}
.promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo-float-cta {
  position: absolute;
  left: 10%;
  top: 125px;
  border-radius: 14px;
  padding: 0.75rem 1.25rem;
}
.promo-chip {
  position: absolute;
  background: #f1e2ff;
  color: #7b2cf0;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(123, 44, 240, 0.25);
}
.promo-chip-jack {
  left: 22%;
  top: 430px;
  background: #efe2ff;
  color: #7c4dff;
}
.promo-chip-emma {
  left: 62%;
  top: 420px;
  background: #ffd4f1;
  color: #e31c79;
}
.promo-pill {
  position: absolute;
  left: 42%;
  top: 500px;
  background: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}
.promo-simple-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}
.promo-content .promo-badge .badge-text {
  background: #e3efce;
  color: #111;
  font-weight: 700;
}
.promo-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0;
  color: #000;
}
.promo-subtitle {
  color: #666;
  margin-bottom: 1.5rem;
}
.promo-cta {
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
}

@media (max-width: 991px) {
  .promo-hero-section {
    padding: 60px 0;
  }
  .promo-media {
    min-height: 440px;
  }
  .promo-title {
    font-size: 2rem;
  }
}
/* Categories Section */
.categories-section {
  padding: 80px 0 60px;
}

.categories-content {
  max-width: 1200px;
  margin: 0 auto;
}

.section-badge {
  margin-bottom: 1rem;
}

.section-badge .badge-text {
  display: inline-block;
  background: #d3f2ff;
  color: #000;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
}

.categories-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #000;
}

.categories-grid {
  margin-top: 0.5rem;
}

.category-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #f6f6f6;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease; /* smooth zoom */
}

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

.category-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 1.25rem 0;
}

.category-cta {
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
}

.category-cta:hover {
  transform: translateY(-2px);
}

/* Split Info Section */
.split-info-section {
  padding: 70px 0;
}
.scroll-text-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  padding: 24px;
  height: 100%;
}
.scroll-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.scroll-content {
  max-height: 420px;
  overflow-y: auto;
  padding-right: 10px;
}
.scroll-content p {
  color: #555;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.cards-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  height: 100%;
}
.info-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  padding: 24px;
  min-height: 220px;
  overflow: hidden;
}
.info-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #000;
}
.info-card-text {
  color: #666;
  margin-bottom: 0.75rem;
}
.info-card-link {
  font-weight: 700;
  color: #111;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.info-card-icon {
  position: absolute;
  right: 18px;
  bottom: 14px;
  font-size: 40px;
  color: #ff8d5a;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .scroll-content {
    max-height: 320px;
  }
  .cards-grid-2x2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .categories-section {
    padding: 60px 0 40px;
  }
  .categories-title {
    font-size: 1.9rem;
  }
}

/* Inline Features (below categories) */
.inline-features {
  align-items: stretch;
}

.inline-feature-item {
  gap: 0.75rem;
}

.inline-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inline-feature-icon i {
  font-size: 26px;
  color: #111;
}

.inline-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.inline-feature-text {
  color: #666;
  margin: 0;
}

/* Discover Section */
.discover-section {
  padding: 80px 0;
}
.discover-badge {
  background: #e8f3d8;
  color: #111;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.discover-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #000;
}

.feature-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 20px;
  height: 100%;
}
.feature-card-left {
  background: #f6eee9;
}
.feature-card-right {
  background: #e9f5ff;
}
.feature-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
  color: #000;
}
.feature-card-sub {
  color: #666;
  margin-bottom: 0.75rem;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #111;
  margin-bottom: 0.35rem;
}
.feature-list i {
  color: #28a745;
}

.app-banner {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  padding: 18px;
}
.app-qr {
  width: 170px;
}
.app-copy {
  padding: 0 16px;
}
.app-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #000;
  margin: 0;
}
.app-sub {
  color: #666;
  margin: 4px 0 0;
}
.app-phones {
  flex: 1;
  text-align: right;
}

@media (max-width: 991px) {
  .discover-title {
    font-size: 1.8rem;
  }
  .app-phones {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/* Quote Form Responsive Design */
@media (max-width: 992px) {
  .form-group.col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

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

  .quote-form-title {
    font-size: 1.75rem;
  }

  .quote-form-subtitle {
    font-size: 0.95rem;
  }

  .quote-form-container {
    padding: 1.5rem;
  }

  .form-row {
    margin-bottom: 0.75rem;
  }

  .form-group {
    padding: 0 0.4rem;
  }

  .form-group.col-md-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .puzzle-piece {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .recaptcha-puzzle {
    max-width: 100px;
  }

  .quote-submit-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
    min-width: 160px;
  }
}

@media (max-width: 576px) {
  .quote-form-container {
    padding: 1.25rem;
  }

  .quote-form-title {
    font-size: 1.5rem;
  }

  .puzzle-piece {
    width: 28px;
    height: 28px;
    font-size: 0.65rem;
  }

  .recaptcha-puzzle {
    max-width: 90px;
  }
}

/* Footer Styles */
.main-footer {
    background-color: #F8F8F8;
    padding: 60px 0 20px;
    position: relative;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-circles {
    position: relative;
    width: 40px;
    height: 40px;
}

.circle-solid {
    width: 24px;
    height: 24px;
    background-color: #4A5568;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.circle-outline {
    width: 24px;
    height: 24px;
    border: 2px solid #4A5568;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
}

.contact-info p {
    margin-bottom: 8px;
    color: #718096;
    font-size: 0.9rem;
}

.contact-phone {
    font-weight: 700;
    color: #000 !important;
    font-size: 1rem !important;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-list a {
    color: #718096;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-list a:hover {
    color: #f69064;
}

.newsletter-desc {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 0.9rem;
    background: transparent;
}

.newsletter-input::placeholder {
    color: #A0AEC0;
}

.newsletter-btn {
    background: #2D3748;
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #1A202C;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #E2E8F0;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.payment-icon {
    height: 30px;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.05);
}

.copyright-text {
    color: #718096;
    font-size: 0.85rem;
    margin: 0;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #E2E8F0;
    border: none;
    border-radius: 8px;
    color: #2D3748;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.scroll-to-top:hover {
    background: #CBD5E0;
    transform: translateY(-2px);
}

.scroll-to-top.show {
    display: block;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 30px;
    }
    
    .footer-heading {
        text-align: center;
        margin-top: 30px;
    }
    
    .footer-list {
        text-align: center;
    }
    
    .newsletter-desc {
        text-align: center;
    }
    
    .payment-methods {
        gap: 10px;
    }
    
    .payment-icon {
        height: 25px;
    }
}

/* Breadcrumb Styles */
.breadcrumb-section {
    background-color: #F5F5F5;
    padding: 20px 0;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: #718096;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: #2D3748;
}

.breadcrumb-separator {
    color: #718096;
    font-size: 0.95rem;
    margin: 0 4px;
}

.breadcrumb-current .breadcrumb-text {
    color: #2D3748;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Responsive Breadcrumb */
/* Product Details Section */
.product-details-section {
    padding: 60px 0;
    background-color: #fff;
}

.product-image-gallery {
    position: relative;
}

.main-image-container {
    position: relative;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

.main-product-image:hover {
    transform: scale(1.02);
}

.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b35;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
}

.image-controls {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(0,0,0,0.9);
    transform: scale(1.1);
}

.thumbnail-gallery {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: #ff6b35;
}

.thumbnail-item:hover {
    border-color: #ff6b35;
    transform: scale(1.05);
}

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

/* Product Information */
.product-info {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
}

.product-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    width: 100%;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 12px;
    border-radius: 6px;
}

.nav-link:hover {
    color: #ff6b35;
    background: #fff5f2;
}

/* Navigation Popup Styles */
.nav-popup {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 0;
    width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-bottom: 10px;
    overflow: hidden;
}

.nav-link:hover .nav-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.popup-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative;
}

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

.nav-link:hover .popup-image img {
    transform: scale(1.05);
}

.popup-content {
    padding: 15px;
    text-align: center;
}

.popup-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2D3748;
    margin: 0 0 5px 0;
    line-height: 1.2;
}

.popup-price {
    font-size: 0.85rem;
    color: #ff6b35;
    font-weight: 600;
    margin: 0;
}

/* Popup Arrow */
.nav-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}

/* Position adjustments for different links */
.prev-link .nav-popup {
    left: 0;
    transform: translateX(0);
}

.prev-link:hover .nav-popup {
    transform: translateX(0) translateY(-5px);
}

.prev-link .nav-popup::after {
    left: 20px;
    transform: translateX(0);
}

.next-link .nav-popup {
    right: 0;
    left: auto;
    transform: translateX(0);
}

.next-link:hover .nav-popup {
    transform: translateX(0) translateY(-5px);
}

.next-link .nav-popup::after {
    right: 20px;
    left: auto;
    transform: translateX(0);
}

.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-description {
    margin-bottom: 25px;
    width: 100%;
}

.product-description p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.product-guide {
    margin-bottom: 30px;
    width: 100%;
}

.guide-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.guide-link:hover {
    color: #e55a2b;
}

.quantity-section {
    margin-bottom: 30px;
    width: 100%;
}

.quantity-label {
    display: block;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    width: fit-content;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.quantity-btn:hover {
    background: #e9ecef;
}

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

.quantity-input:focus {
    outline: none;
}

.quote-section {
    margin-bottom: 40px;
    width: 100%;
}

.btn-quote {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-quote:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.product-meta {
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
    width: 100%;
}

.categories, .tags {
    margin-bottom: 15px;
}

.categories strong, .tags strong {
    color: #2D3748;
    margin-right: 8px;
}

.meta-link {
    color: #666;
    text-decoration: none;
    margin-right: 5px;
    transition: color 0.3s ease;
}

.meta-link:hover {
    color: #ff6b35;
}

/* Quote Sidebar */
.quote-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-sidebar.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-sidebar.active .sidebar-overlay {
    opacity: 1;
}

.sidebar-content {
    position: absolute;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
}

.quote-sidebar.active .sidebar-content {
    right: 0;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3748;
    margin: 0;
}

.sidebar-close {
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sidebar-close:hover {
    background: #e9ecef;
}

.sidebar-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

.quote-form .form-group {
    margin-bottom: 10px;
}

.quote-form label {
    display: block;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 8px;
}

.quote-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.quote-form .form-control:focus {
    outline: none;
    border-color: #ff6b35;
}

.file-upload-area {
    border: 2px dashed #e9ecef;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload-area:hover {
    border-color: #ff6b35;
    background: #fff5f2;
}

.file-input {
    display: none;
}

.file-upload-text {
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.file-upload-text i {
    font-size: 2rem;
    color: #ff6b35;
}

.btn-submit-quote {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 700;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-quote:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .product-title {
        font-size: 2rem;
    }
    
    .main-product-image {
        height: 400px;
    }
    
    .sidebar-content {
        width: 100%;
    }
}

/* Product Tabs Section */
.product-tabs-section {
    padding: 60px 0;
    background-color: #fff;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: #2D3748;
}

.tab-btn.active {
    color: #2D3748;
    border-bottom-color: #2D3748;
}

.tabs-content {
    min-height: 400px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

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

/* Description Tab Styles */
.description-content {
    margin: 0 auto;
    padding: 20px 0;
}

.description-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2D3748;
    margin-bottom: 20px;
    margin-top: 0;
}

.description-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 15px;
    margin-top: 30px;
}

.description-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2D3748;
    margin-bottom: 12px;
    margin-top: 25px;
}

.description-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Additional Information Tab Styles */
.specs-table-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    overflow-x: auto;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.specs-table thead {
    background: #2D3748;
}

.specs-table th {
    padding: 15px 20px;
    text-align: left;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    color: #666;
}

.specs-table tbody tr:hover {
    background: #f8f9fa;
}

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

/* More Products Tab Styles */
.more-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 20px 0;
}

.more-products-grid .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.more-products-grid .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.more-products-grid .product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.more-products-grid .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.more-products-grid .btn-primary {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-products-grid .btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.more-products-grid .product-info {
    padding: 20px;
}

.more-products-grid .product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 8px;
}

.more-products-grid .product-category {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .tabs-nav {
        flex-wrap: wrap;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
    }
    
    .more-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .more-products-grid .product-image {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .product-tabs-section {
        padding: 40px 0;
    }
    
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: 1px solid #e9ecef;
        border-right: none;
        text-align: left;
    }
    
    .tab-btn.active {
        border-bottom-color: #2D3748;
        border-left: 3px solid #2D3748;
    }
    
    .description-content {
        padding: 15px 0;
    }
    
    .description-content h2 {
        font-size: 1.5rem;
    }
    
    .description-content h3 {
        font-size: 1.2rem;
    }
    
    .description-content h4 {
        font-size: 1.1rem;
    }
    
    .specs-table-container {
        padding: 20px 15px;
    }
    
    .specs-table th,
    .specs-table td {
        padding: 12px 15px;
    }
    
    .more-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .more-products-grid .product-image {
        height: 180px;
    }
}

/* Related Products Section */
.related-products-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.related-products-header {
    text-align: center;
    margin-bottom: 40px;
}

.related-products-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2D3748;
    margin: 0;
}

.related-products-carousel {
    position: relative;
}

.related-product-item {
    padding: 0 15px;
}

.related-products-carousel .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    /* height: 100%; */
}

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

.related-products-carousel .product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sale-badge {
    background: #ff6b35;
    color: white;
}

.new-badge {
    background: #4285f4;
    color: white;
}

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

.related-product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.3;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 15px;
}

.color-options {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-swatch.active {
    border-color: #2D3748;
    transform: scale(1.1);
}

.color-swatch:hover {
    transform: scale(1.1);
}

.color-count {
    font-size: 0.85rem;
    color: #666;
    margin-left: 5px;
}

/* Owl Carousel Customization for Related Products */
.related-products-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.related-products-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: white !important;
    border-radius: 50% !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    color: #2D3748 !important;
    transition: all 0.3s ease !important;
    pointer-events: auto;
}

.related-products-carousel .owl-nav button:hover {
    background: #ff6b35 !important;
    color: white !important;
    transform: scale(1.1);
}

.related-products-carousel .owl-nav .owl-prev {
    margin-left: -25px;
}

.related-products-carousel .owl-nav .owl-next {
    margin-right: -25px;
}

.related-products-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.related-products-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd !important;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.related-products-carousel .owl-dots .owl-dot.active {
    background: #ff6b35 !important;
    transform: scale(1.2);
}

/* Responsive Design for Related Products */
@media (max-width: 991px) {
    .related-products-section {
        padding: 40px 0;
    }
    
    .related-products-title {
        font-size: 1.6rem;
    }
    
    .product-image-container {
        height: 200px;
    }
    
    .related-products-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1rem !important;
    }
    
    .related-products-carousel .owl-nav .owl-prev {
        margin-left: -20px;
    }
    
    .related-products-carousel .owl-nav .owl-next {
        margin-right: -20px;
    }
}

@media (max-width: 767px) {
    .related-products-section {
        padding: 30px 0;
    }
    
    .related-products-title {
        font-size: 1.4rem;
    }
    
    .related-product-item {
        padding: 0 10px;
    }
    
    .product-image-container {
        height: 180px;
    }
    
    .related-product-info {
        padding: 15px;
    }
    
    .related-product-title {
        font-size: 1rem;
    }
    
    .product-price {
        font-size: 0.9rem;
    }
    
    .related-products-carousel .owl-nav {
        display: none;
    }
}

/* Category Shop Page Styles */
.cat-page-wrapper {
    padding: 2rem 0;
}

.cat-breadcrumb-nav {
    margin-bottom: 1.5rem;
}

.cat-breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.cat-breadcrumb-item a:hover {
    color: #007bff;
}

.cat-page-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.cat-sidebar-filters {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.cat-filter-widget {
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1.5rem;
}

.cat-filter-widget:last-child {
    border-bottom: none;
}

.cat-filter-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.cat-search-input-group {
    display: flex;
    gap: 0.5rem;
}

.cat-search-input-group .form-control {
    border: 1px solid #ddd;
    padding: 0.5rem;
}

.cat-search-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: #ff6b35;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cat-search-btn:hover {
    background: #e55a2b;
}

.cat-filter-list .cat-category-option {
    padding: 0.5rem 0;
}

.cat-filter-list label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.cat-filter-list input[type="radio"] {
    margin-right: 0.5rem;
}

.cat-category-count {
    color: #666;
    font-size: 0.9rem;
}

.cat-results-header {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.cat-view-controls {
    gap: 1rem;
}

.cat-view-btn {
    background: white;
    border: 1px solid #ddd;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    border-radius: 4px;
}

.cat-view-btn.active {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.cat-view-btn:hover {
    background: #f0f0f0;
}

.cat-view-btn.active:hover {
    background: #e55a2b;
}

.cat-product-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cat-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.cat-product-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.cat-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cat-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.cat-product-info {
    padding: 1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cat-product-name {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
    text-align: center;
}

.cat-product-card.list-view {
    padding: 1rem;
}

.cat-product-card.list-view img {
    border-radius: 4px;
}

@media (max-width: 768px) {
    .cat-sidebar-filters {
        margin-bottom: 2rem;
    }
    
    .cat-results-header .row > div {
        margin-bottom: 1rem;
    }
}

/* Contact Us Page Styles */
.contact-page-wrapper {
    padding: 2rem 0;
    min-height: 60vh;
}

.contact-breadcrumb {
    font-size: 0.9rem;
}

.contact-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.contact-breadcrumb .breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.contact-breadcrumb .breadcrumb-item.active {
    color: #333;
}

.contact-header {
    padding: 2rem 0;
}

.contact-badge {
    display: inline-block;
    background-color: #fff3cd;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    margin-bottom: 1rem;
}

.contact-badge span {
    font-weight: 600;
    color: #856404;
    font-size: 0.9rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.contact-card {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.contact-icon {
    display: inline-block;
    margin-bottom: 1rem;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid #ff6b35;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: #ff6b35;
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.contact-card-content p {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-card-content strong {
    color: #333;
}

.contact-link {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff6b35;
}

.email-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #ff6b35;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-badge {
        padding: 0.4rem 1rem;
    }
    
    .contact-badge span {
        font-size: 0.85rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .icon-wrapper i {
        font-size: 1.2rem;
    }
    
    .contact-card-title {
        font-size: 1.1rem;
    }
}

/* Map Section Styles */
.map-section {
    margin-top: 3rem;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-map {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .contact-map {
        height: 300px;
    }
    
    .map-section {
        margin-top: 2rem;
    }
}

/* Contact Form Section Styles */
.contact-form-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
}

.contact-input {
    background-color: #f8f9fa;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-input:focus {
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

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

.contact-input:-webkit-autofill,
.contact-input:-webkit-autofill:hover,
.contact-input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #f8f9fa inset;
    -webkit-text-fill-color: #333;
}

.btn-submit {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 0.75rem 3rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .contact-input {
        padding: 0.65rem 0.85rem;
        font-size: 0.9rem;
    }
    
    .btn-submit {
        padding: 0.65rem 2rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .contact-form-section {
        margin-top: 3rem;
        margin-bottom: 3rem;
    }
}

/* About Us Page Styles */
.about-page-wrapper {
    padding: 4rem 0;
    min-height: 70vh;
}

.about-content {
    padding: 2rem 0;
}

.about-badge {
    display: inline-block;
    background-color: #f8e7e7;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.about-badge span {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.about-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #555;
}

.benefit-icon {
    color: #28a745;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

/* About Visual - Single Image */
.about-visual {
    padding: 2rem;
}

.about-main-image {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-visual {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-page-wrapper {
        padding: 2rem 0;
    }
    
    .about-content {
        padding: 1rem 0;
    }
    
    .about-title {
        font-size: 1.75rem;
    }
    
    .benefit-item {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-icon {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .about-visual {
        padding: 1rem;
    }
    
    .about-main-image {
        border-radius: 8px;
    }
}

/* Features Section Styles */
.about-features-section {
    padding: 4rem 0;
}

.about-features-header {
    margin-bottom: 3rem;
}

.about-features-badge {
    display: inline-block;
    background-color: #fff3cd;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.about-features-badge span {
    font-weight: 600;
    color: #856404;
    font-size: 0.9rem;
}

.about-features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.about-feature-card {
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    background: white;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background-color: #ff6b35;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.about-feature-card:hover .about-feature-icon {
    background-color: #ff6b35;
}

.about-feature-card:hover .about-feature-icon i {
    color: white;
}

.about-feature-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.about-feature-card-text {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-feature-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.about-feature-link:hover {
    color: #e55a2b;
}

@media (max-width: 768px) {
    .about-features-section {
        padding: 3rem 0;
    }
    
    .about-features-title {
        font-size: 1.5rem;
    }
    
    .about-feature-card {
        padding: 1.5rem 1rem;
    }
    
    .about-feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .about-feature-icon i {
        font-size: 1.2rem;
    }
    
    .about-feature-card-title {
        font-size: 1rem;
    }
    
    .about-feature-card-text {
        font-size: 0.9rem;
    }
}

/* Services Section Styles */
.about-services-section {
    padding: 5rem 0;
    background: #fff;
}

.about-services-header {
    margin-bottom: 4rem;
}

.about-services-badge {
    display: inline-block;
    background-color: #e3f2fd;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
}

.about-services-badge span {
    font-weight: 600;
    color: #1976d2;
    font-size: 0.9rem;
}

.about-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 1rem 0 0 0;
}

/* Services Visual Section */
.about-services-visual {
    position: relative;
}

.about-services-main-img-wrapper {
    position: relative;
}

.about-services-main-img {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-services-img-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-services-btn {
    background: #ff6b35;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.about-services-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    color: white;
}

/* Services Accordion */
.about-services-accordion {
    position: relative;
    padding-left: 2rem;
}

.about-services-accordion::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.about-services-item {
    margin-bottom: 1.5rem;
}

.about-services-item-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.about-services-item-header:hover {
    padding-left: 0.5rem;
}

.about-services-item-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ccc;
    margin-right: 1.5rem;
    min-width: 40px;
}

.about-services-item-title {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #999;
    margin: 0;
    transition: color 0.3s ease;
}

.about-services-item-header .fas {
    color: #ccc;
    transition: transform 0.3s ease;
}

.about-services-item.active .about-services-item-number {
    color: #ff6b35;
}

.about-services-item.active .about-services-item-title {
    color: #000;
}

.about-services-item.active .fas {
    color: #ff6b35;
}

.about-services-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 0 0 2.5rem;
}

.about-services-item.active .about-services-item-content {
    max-height: 300px;
    padding: 1rem 0 1.5rem 2.5rem;
}

.about-services-item-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-services-item-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .about-services-title {
        font-size: 2rem;
    }
    
    .about-services-accordion {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .about-services-section {
        padding: 3rem 0;
    }
    
    .about-services-title {
        font-size: 1.75rem;
    }
    
    .about-services-main-img {
        width: 100%;
    }
    
    .about-services-mockup-img {
        max-width: 200px;
    }
    
    .about-services-item-title {
        font-size: 1rem;
    }
    
    .about-services-item-number {
        font-size: 1.2rem;
        margin-right: 1rem;
    }
}

/* FAQ Page Styles */
.faq-page-wrapper {
    min-height: 80vh;
    padding: 2rem 0;
}

.faq-visual {
    position: relative;
}

/* Top Blue Box */
.faq-visual-top {
    margin-bottom: -2rem;
    position: relative;
    z-index: 2;
}

.faq-blue-box {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    overflow: hidden;
}

.faq-blue-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 30%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50% 0 0 0;
}

/* Ribbon */
.faq-ribbon {
    position: absolute;
    top: 1rem;
    left: -0.5rem;
    background: white;
    padding: 0.5rem 2rem;
    transform: rotate(-5deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-ribbon::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 15px solid white;
}

.faq-ribbon-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4A90E2;
    white-space: nowrap;
}

/* Speech Bubble */
.faq-speech-bubble {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid white;
}

.faq-color-swatches {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.faq-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-swatch-blue {
    background: #87CEEB;
}

.faq-swatch-purple {
    background: #9370DB;
}

.faq-swatch-pink {
    background: #FFB6C1;
}

.faq-swatch-check {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-swatch-check i {
    color: #4A90E2;
    font-size: 0.8rem;
}

/* Explore Button */
.faq-explore-btn {
    position: absolute;
    bottom: 0;
    right: 1rem;
    transform: translateY(50%);
    z-index: 3;
}

/* Bottom Paper Bag Mockup */
.faq-visual-bottom {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}

.faq-bag-mockup {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-bag-bg {
    background: linear-gradient(to bottom, #F5E6D3 50%, #FFE4B5 50%);
    border-radius: 15px;
    padding: 2rem;
    min-height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-bag-plant {
    flex: 0 0 30%;
}

.faq-plant-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.faq-bag-paper {
    flex: 0 0 65%;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 1.5rem;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Simulate bag handles */
.faq-bag-paper::before,
.faq-bag-paper::after {
    content: '';
    position: absolute;
    top: -15px;
    width: 40px;
    height: 20px;
    border: 3px solid #1a1a1a;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
}

.faq-bag-paper::before {
    left: 20px;
}

.faq-bag-paper::after {
    right: 20px;
}

.faq-bag-logo {
    width: 60px;
    height: 60px;
    background: #C49B6A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.faq-logo-letter {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.faq-bag-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

/* FAQ Content */
.faq-content {
    padding-left: 2rem;
}

.faq-badge {
    display: inline-block;
    background: #FFE4B5;
    color: #333;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.faq-accordion {
    margin-top: 2rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.faq-question i {
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
    .faq-content {
        padding-left: 0;
        margin-top: 3rem;
    }

    .faq-visual-top {
        margin-bottom: 2rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-explore-btn {
        position: static;
        transform: none;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.75rem;
    }

    .faq-blue-box {
        padding: 2rem;
    }

    .faq-ribbon-text {
        font-size: 0.9rem;
    }

    .faq-bag-bg {
        flex-direction: column;
        gap: 1rem;
    }

    .faq-bag-plant,
    .faq-bag-paper {
        flex: 1 1 100%;
    }
}

/* Category Filter Items - Modern Design */
.cat-filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    margin-bottom: 0.5rem;
    background-color: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.cat-filter-item:hover {
    background-color: #e9ecef;
    border-color: #dee2e6;
}

.cat-filter-item.active {
    background-color: #fff;
    border-color: #FF6B35;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

.cat-filter-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background-color: #FF6B35;
    border-radius: 0 4px 4px 0;
}

.cat-filter-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #212529;
    transition: color 0.3s ease;
}

.cat-filter-item.active .cat-filter-name {
    color: #FF6B35;
    font-weight: 600;
}

.cat-filter-count {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
    background-color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.cat-filter-item.active .cat-filter-count {
    background-color: #FF6B35;
    color: #fff;
}

/* Compact Quote Form Styles for Sidebar */
.quote-form-compact {
    padding: 0;
}

.quote-form-compact .form-group {
    margin-bottom: 0.75rem;
}

.quote-form-compact .form-label {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.quote-form-compact .form-control,
.quote-form-compact .form-control-sm {
    font-size: 0.8rem;
    padding: 0.35rem 0.6rem;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    height: calc(1.5em + 0.7rem + 2px);
}

.quote-form-compact .form-control:focus,
.quote-form-compact .form-control-sm:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.15rem rgba(255, 107, 53, 0.15);
}

.quote-form-compact textarea.form-control,
.quote-form-compact textarea.form-control-sm {
    height: auto;
    min-height: calc(2.5em + 0.7rem + 2px);
}

.quote-form-compact select.form-control,
.quote-form-compact select.form-control-sm {
    padding-right: 1.75rem;
}

.quote-form-compact .compact-recaptcha {
    padding: 0.5rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.quote-form-compact .compact-recaptcha .recaptcha-text {
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
}

.quote-form-compact .compact-recaptcha .recaptcha-sum {
    font-size: 0.8rem;
}

.quote-form-compact .compact-recaptcha .recaptcha-instruction {
    font-size: 0.65rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.quote-form-compact .compact-status {
    font-size: 0.7rem;
    margin-top: 0.35rem;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    display: none;
}

.quote-form-compact .compact-status.show {
    display: block;
}

.quote-form-compact .compact-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.quote-form-compact .compact-status:not(.success) {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.quote-form-compact .quote-submit-btn-compact {
    background: linear-gradient(45deg, #f69064, #ff6b35);
    border: none;
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.quote-form-compact .quote-submit-btn-compact:hover:not(:disabled) {
    background: linear-gradient(45deg, #ff6b35, #f69064);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(246, 144, 100, 0.3);
}

.quote-form-compact .quote-submit-btn-compact:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.quote-form-compact .quote-submit-btn-compact i {
    margin-right: 0.3rem;
    font-size: 0.75rem;
}

/* Finishing Materials Section */
.finishing-materials-section {
    margin-top: 4rem;
    margin-bottom: 4rem;
}



.finishing-materials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.finishing-materials-description {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    max-width: 900px;
}

/* Finishing Tabs */
.finishing-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
}

.finishing-tabs .nav-item {
    margin-right: 0.5rem;
}

.finishing-tabs .nav-link {
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-bottom: 3px solid transparent;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 0;
}

.finishing-tabs .nav-link:hover {
    color: #f69064;
    background-color: #fff;
    border-bottom-color: #f69064;
}

.finishing-tabs .nav-link.active {
    color: #f69064;
    background-color: #fff;
    border-bottom-color: #f69064;
    font-weight: 600;
}

/* Finishing Cards */
.finishing-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.finishing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.finishing-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.finishing-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.finishing-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.finishing-card-description {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .finishing-materials-title {
        font-size: 2rem;
    }
    
    .finishing-materials-description {
        font-size: 1rem;
    }
    
    .finishing-tabs .nav-link {
        font-size: 1rem;
        padding: 0.6rem 1rem;
    }
    
    .finishing-card-image {
        height: 200px;
    }
    
    .finishing-card-content {
        padding: 1.25rem;
    }
    
    .finishing-card-title {
        font-size: 1.1rem;
    }
    
    .finishing-card-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .finishing-materials-section {
        margin-top: 2rem;
        margin-bottom: 2rem;
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .finishing-materials-title {
        font-size: 1.75rem;
    }
    
    .finishing-tabs {
        flex-wrap: wrap;
    }
    
    .finishing-tabs .nav-item {
        margin-bottom: 0.5rem;
    }
    
    .finishing-tabs .nav-link {
        font-size: 0.95rem;
        padding: 0.5rem 0.75rem;
    }
}

/* ========================================
   BLOG LISTING PAGE STYLES
   ======================================== */

.blog-listing-wrapper {
    padding: 2rem 0 4rem;
    min-height: 60vh;
}

.blog-breadcrumb {
    margin-top: 1rem;
}

.blog-header {
    margin-bottom: 3rem;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Blog Grid */
.blog-grid {
    margin: 0;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    display: block;
    overflow: hidden;
    position: relative;
    padding-top: 60%;
    background: #f5f5f5;
}

.blog-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #999;
}

.blog-image-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}

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

.blog-card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    margin-bottom: 0.75rem;
}

.meta-date {
    font-size: 0.875rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-date i {
    color: #f69064;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: #f69064;
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-card-read-more {
    color: #f69064;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-card-read-more:hover {
    gap: 0.75rem;
    color: #e57a50;
}

.blog-empty {
    padding: 4rem 2rem;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f69064;
}

/* Search Form */
.blog-search-form .input-group {
    margin-bottom: 0.5rem;
}

.blog-search-form .form-control {
    border-radius: 8px 0 0 8px;
    border: 1px solid #ddd;
}

.blog-search-form .btn {
    border-radius: 0 8px 8px 0;
    border-left: none;
    background-color: #6BBE45;
    border-color: #6BBE45;
    color: #fff;
}

.blog-search-form .btn:hover {
    background-color: #5aa538;
    border-color: #5aa538;
    color: #fff;
}

.blog-search-form .btn:focus {
    background-color: #5aa538;
    border-color: #5aa538;
    color: #fff;
    box-shadow: 0 0 0 0.2rem rgba(107, 190, 69, 0.25);
}

/* Recent Posts */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.recent-post-link:hover {
    transform: translateX(5px);
}

.recent-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #999;
}

.recent-image-placeholder i {
    font-size: 1.5rem;
    opacity: 0.5;
}

.recent-post-content {
    flex-grow: 1;
}

.recent-post-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 0.25rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recent-post-date {
    font-size: 0.8rem;
    color: #666;
}

/* Tags Cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #f5f5f5;
    color: #333;
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #f69064;
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .blog-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .blog-listing-wrapper {
        padding: 1rem 0 2rem;
    }
    
    .blog-title {
        font-size: 1.75rem;
    }
    
    .blog-card-content {
        padding: 1.25rem;
    }
    
    .blog-card-title {
        font-size: 1.25rem;
    }
}

/* ========================================
   BLOG DETAILS PAGE STYLES
   ======================================== */

.blog-details-wrapper {
    padding: 2rem 0 4rem;
    min-height: 60vh;
}

/* Blog Single Article */
.blog-single {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.blog-single-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.blog-single-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.meta-item i {
    color: #f69064;
    font-size: 1rem;
}

/* Featured Image */
.blog-single-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
    min-height: 400px;
}

.blog-single-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.blog-image-placeholder-large {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #999;
}

.blog-image-placeholder-large i {
    font-size: 5rem;
    opacity: 0.5;
}

/* Blog Content */
.blog-single-content {
    margin: 2rem 0;
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
}

.blog-single-content h1,
.blog-single-content h2,
.blog-single-content h3,
.blog-single-content h4,
.blog-single-content h5,
.blog-single-content h6 {
    color: #000;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-single-content h2 {
    font-size: 2rem;
}

.blog-single-content h3 {
    font-size: 1.75rem;
}

.blog-single-content p {
    margin-bottom: 1.5rem;
}

.blog-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.blog-single-content ul,
.blog-single-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-single-content li {
    margin-bottom: 0.5rem;
}

.blog-single-content a {
    color: #f69064;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-single-content a:hover {
    color: #e57a50;
    text-decoration: underline;
}

.blog-single-content blockquote {
    border-left: 4px solid #f69064;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
}

.blog-single-content code {
    background: #f5f5f5;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
    color: #e83e8c;
}

.blog-single-content pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-single-content pre code {
    background: none;
    padding: 0;
    color: #333;
}

/* Blog Tags */
.blog-tags {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.blog-tags strong {
    color: #000;
    margin-right: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-tags strong i {
    color: #f69064;
}

.blog-tags .tag-link {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: #fff;
    color: #333;
    border-radius: 20px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.blog-tags .tag-link:hover {
    background: #f69064;
    color: #fff;
    border-color: #f69064;
    transform: translateY(-2px);
}

/* Share Buttons */
.blog-share {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.share-label {
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-label i {
    color: #f69064;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.1rem;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.facebook:hover {
    background: #1565c0;
    transform: translateY(-3px);
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.twitter:hover {
    background: #0d8bd9;
    transform: translateY(-3px);
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.linkedin:hover {
    background: #005885;
    transform: translateY(-3px);
}

.share-btn.whatsapp {
    background: #25d366;
}

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

/* Blog Navigation */
.blog-navigation {
    margin: 3rem 0 0;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-link {
    display: block;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.nav-link:hover {
    background: #fff;
    border-color: #f69064;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-next .nav-link:hover {
    transform: translateX(-5px);
}

.nav-label {
    display: block;
    font-size: 0.875rem;
    color: #f69064;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-next .nav-label {
    justify-content: flex-end;
}

.nav-title {
    display: block;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-single {
        padding: 1.5rem;
    }
    
    .blog-single-title {
        font-size: 2rem;
    }
    
    .blog-single-image {
        min-height: 300px;
    }
    
    .blog-image-placeholder-large {
        min-height: 300px;
    }
    
    .blog-image-placeholder-large i {
        font-size: 4rem;
    }
}

@media (max-width: 767px) {
    .blog-details-wrapper {
        padding: 1rem 0 2rem;
    }
    
    .blog-single {
        padding: 1.25rem;
    }
    
    .blog-single-title {
        font-size: 1.75rem;
    }
    
    .blog-single-content {
        font-size: 1rem;
    }
    
    .blog-single-image {
        min-height: 250px;
    }
    
    .blog-image-placeholder-large {
        min-height: 250px;
    }
    
    .blog-image-placeholder-large i {
        font-size: 3rem;
    }
    
    .blog-navigation {
        flex-direction: column;
    }
    
    .nav-link {
        text-align: center;
    }
    
    .nav-next .nav-label {
        justify-content: center;
    }
    
    .share-buttons {
        justify-content: center;
    }
}

