:root {
  --primary-color: #ef7f1a;
  --primary-hover: #5649c0;
  --secondary-color: #1f1b20;
  --accent-color: #fd79a8;
  --background-color: #f8fafc;
  --card-bg: #ffffff;
  --text-color: #1e293b;
  --text-muted: #64748b;
  --font-family: 'Outfit', sans-serif;
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: 1px solid rgba(0, 0, 0, 0.05);
}

.site-logo {
  height: 75px;
  width: auto;
  display: block;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--border-radius);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  /* Consistent padding */
  z-index: 1000;
  transition: var(--transition);
  background: #ffffff;
  /* Permanent White Background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  /* Permanent Shadow */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Remove scroll effect or keep consistent */
.navbar.scrolled {
  background: #ffffff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  color: var(--text-color);
  /* Permanent Black/Dark Text */
  transition: color 0.3s ease;
}

/* Redundant now but kept for safety */
.navbar.scrolled .nav-links a {
  color: var(--text-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #ef7f1a;
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  background: url('../images/banner.jpeg') no-repeat center center;
  background-size: cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  z-index: 0;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 20px;
}

.hero-tag {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--text-color);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

.btn-sm:hover {
  background: #fff;
  transform: scale(1.05);
}

.btn-block {
  width: 100%;
  margin-top: 10px;
}

.btn-outline {
  border: 2px solid var(--text-muted);
  background: transparent;
  color: var(--text-color);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Products Slider */
.product-slider {
  padding: 20px 50px 30px;
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next i,
.swiper-button-prev i {
  font-size: 1.2rem;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.swiper-button-prev {
  left: 0;
}

.swiper-button-next {
  right: 0;
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.swiper-slide {
  height: auto;
  display: flex;
}

.product-card {
  width: 100%;
}

#products .container {
  overflow: visible;
}

/* Section Common */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--secondary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Products Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.product-image>a {
  display: block;
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  /* Let clicks pass to the image if needed */
}

.overlay .btn-sm {
  margin: 0;
}

.product-card:hover .overlay {
  opacity: 1;
  pointer-events: auto;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.product-info .desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  min-height: 40px;
}

.price-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-info .price {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.btn-enquire {
  padding: 8px 16px;
  background: var(--primary-color);
  color: white;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-enquire:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(239, 127, 26, 0.3);
}

/* Instagram Section */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 30px;
}

.insta-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: var(--transition);
  cursor: pointer;
}

.insta-grid img:hover {
  filter: brightness(0.8);
  transform: scale(0.98);
}

.center-btn {
  text-align: center;
}

/* Footer */
.footer {
  background: #ffffff;
  padding: 60px 0 20px;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  background: var(--card-bg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: var(--primary-color);
  color: white;
  transform: rotate(360deg);
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Contact Page Specifics */
.page-header {
  height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(248, 250, 252, 0.9), rgba(248, 250, 252, 0.9)), url('https://placehold.co/1200x400/f1f5f9/1e293b?text=Contact+Us');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.contact-section {
  position: relative;
  margin-top: -80px;
}

.contact-card {
  background: var(--card-bg);
  padding: 40px;
  border-radius: var(--border-radius);
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
}

.toast {
  margin-top: 15px;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.toast-success {
  background: rgba(239, 127, 26, 0.1);
  color: #ef7f1a;
  border: 1px solid #ef7f1a;
  display: block;
}

.toast-error {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  border: 1px solid #ff4757;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    /* Mobile menu hidden by default */
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    flex-direction: column;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    color: var(--text-color);
    /* Mobile menu links should be dark on white bg */
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    margin-top: 0;
  }

  .hero {
    background: url('../images/banner.jpeg') no-repeat center center scroll;
    background-size: cover;
  }
}

/* Product Details Page Styles */
.product-details-page {
  padding-top: 120px;
  /* Space for fixed navbar */
  min-height: 80vh;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--text-muted);
  font-weight: 500;
}

.back-link:hover {
  color: var(--primary-color);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 50px;
}

.details-gallery {
  overflow: hidden;
}

.details-main-slider {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 0;
  height: 500px;
  background: #f1f5f9;
  width: 100%;
}



.details-main-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Important for removing inline whitespace */
}

.details-thumb-slider {
  display: none;
}

.details-info h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-color);
}

.details-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.details-desc {
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Responsive for Details Page */
@media (max-width: 900px) {
  .details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Let content determine height or use a dynamic aspect ratio */
  .details-main-slider {
    height: auto;
    aspect-ratio: 1/1;
  }
}

/* Portfolio Section */
.portfolio {
  background: #ffffff;
  padding-bottom: 100px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(239, 127, 26, 0.85);
  /* Primary color with opacity */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay svg {
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-item:hover .portfolio-overlay svg {
  transform: scale(1);
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* Desktop Grid View for Home Product List (Disable Slider Look) */
@media (min-width: 1024px) {

  /* When Swiper is disabled via JS, we want a grid */
  .swiper.product-slider {
    overflow: visible;
  }

  .swiper-wrapper.home-product-grid {
    display: flex;
    /* Or grid */
    justify-content: center;
    gap: 30px;
    transform: none !important;
    /* Override Swiper */
    width: 100% !important;
  }

  .swiper-slide {
    width: 40% !important;
    /* Fixed width cards on desktop */
    margin: 0 !important;
  }

  /* Hide arrows on desktop */
  .product-nav-next,
  .product-nav-prev {
    display: none !important;
  }
}

/* =========================================
   Flipkart-Style Product Details UI
   ========================================= */

.fk-page {
  background-color: #f1f3f6;
  padding-top: 100px;
  padding-bottom: 40px;
}

.fk-container {
  background: #ffffff;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.fk-layout {
  display: flex;
  flex-wrap: wrap;
  background: #ffffff;
}

/* Left Column: Images & Buttons */
.fk-left-col {
  width: 40%;
  min-width: 400px;
  padding: 16px;
  position: relative;
  border-right: 1px solid #f0f0f0;
}

.fk-gallery-wrapper {
  display: flex;
  height: 450px;
  /* Fixed height for sticky feel desktop */
}

/* Vertical Thumbs */
.fk-thumbs-list {
  width: 64px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: hidden;
}

.fk-thumb-item {
  width: 64px;
  height: 64px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  overflow: hidden;
  padding: 2px;
}

.fk-thumb-item:hover {
  border-color: #2874f0;
}

.fk-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Main Image */
.fk-main-image-area {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 16px;
  position: relative;
}

/* Reuse existing swiper classes but adapted */
/* Reuse existing swiper classes but adapted */
.details-main-slider {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  /* Critical to show only 1 slide */
  background: transparent !important;
}

.details-main-slider .swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100% !important;
  /* Force single slide width */
  height: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

.details-main-slider img {
  max-height: 450px;
  /* Match wrapper height */
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Custom Navigation Arrows (Flipkart Style) */
.fk-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 80px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  display: flex !important;
  /* Force flex to override any hidden swiper state */
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 20;
  /* High z-index */
  transition: box-shadow 0.2s;
  border: 1px solid #f0f0f0;
}

.fk-next {
  right: 0;
  border-radius: 4px 0 0 4px;
}

.fk-prev {
  left: 0;
  border-radius: 0 4px 4px 0;
}

.fk-nav-arrow:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.fk-nav-arrow svg {
  width: 14px;
  height: 24px;
  stroke: #212121;
  /* Dark grey */
  stroke-width: 2.5;
}

/* Buttons */
.fk-buttons-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.btn-fk {
  flex: 1;
  height: 56px;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: none;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.btn-fk-cart {
  background: #ff9f00;
}

.btn-fk-buy {
  background: #fb641b;
}

.btn-fk:hover {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
  opacity: 0.95;
  color: #fff;
  /* Ensure white text */
}

/* Right Column: Details */
.fk-right-col {
  flex: 1;
  padding: 24px;
  padding-left: 24px;
}

.fk-breadcrumb {
  color: #878787;
  font-size: 12px;
  margin-bottom: 10px;
}

.fk-title {
  font-size: 18px;
  color: #212121;
  margin-bottom: 8px;
  font-weight: 400;
  /* Flipkart standard */
  line-height: 1.4;
}

.fk-rating-row {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.fk-rating-badge {
  background-color: #ef7f1a;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-right: 10px;
}

.fk-rating-count {
  color: #878787;
  font-size: 14px;
  font-weight: 500;
}

.fk-price-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 8px;
}

.fk-c-price {
  font-size: 28px;
  color: #212121;
  font-weight: 500;
  margin-right: 12px;
}

.fk-o-price {
  font-size: 16px;
  color: #878787;
  text-decoration: line-through;
  margin-right: 12px;
}

.fk-discount {
  color: #ef7f1a;
  font-size: 16px;
  font-weight: 500;
}

/* Offers */
.fk-offers {
  margin-bottom: 24px;
}

.fk-section-header {
  font-size: 16px;
  color: #212121;
  font-weight: 500;
  margin-bottom: 16px;
  margin-top: 0;
}

.fk-offers h6 {
  font-size: 14px;
  /* Title for offers */
  margin-bottom: 10px;
}

.fk-offers ul {
  list-style: none;
  padding: 0;
}

.fk-offers li {
  font-size: 14px;
  color: #212121;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.fk-blue-text {
  color: #2874f0;
  font-weight: 500;
  cursor: pointer;
}

/* Sections */
.fk-section {
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  margin-top: 24px;
}

.fk-section-block {
  padding: 24px;
  border-bottom: 1px solid #f0f0f0;
}

.fk-section-block:last-child {
  border-bottom: none;
}

.fk-section-block p {
  font-size: 14px;
  color: #212121;
  line-height: 1.5;
}

/* Specs Table */
.fk-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.fk-specs-table td {
  padding: 8px 0;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.5;
}

.fk-specs-table td:first-child {
  color: #878787;
  width: 150px;
}

.fk-specs-table td:last-child {
  color: #212121;
}

/* Hover Zoom Effect on Main Image */
.fk-main-image-area img {
  transition: transform 0.3s ease;
  cursor: crosshair;
}

.fk-main-image-area:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .fk-layout {
    flex-direction: column;
  }

  .fk-left-col {
    width: 100%;
    min-width: unset;
    border-right: none;
    padding: 0;
    /* Full bleed on mobile? Usually padded */
    border-bottom: 1px solid #f0f0f0;
  }

  .fk-gallery-wrapper {
    flex-direction: column;
    /* Stack thumbs? No, slider on mobile */
    height: auto;
  }

  .fk-thumbs-list {
    display: none;
    /* Hide thumbs on mobile, use slider */
  }

  .fk-main-image-area {
    padding-left: 0;
    height: 350px;
    /* Fixed height for slider */
  }

  .details-main-slider img {
    max-height: 300px;
  }

  .fk-buttons-row {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    margin: 0;
    gap: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }

  .btn-fk {
    border-radius: 0;
  }

  .fk-right-col {
    padding-bottom: 80px;
    /* Space for fixed buttons */
  }
}