/* =============================
   Shop Base Styles
=============================== */
.shop-body {
    /* Set a slightly smaller base font size for the shop section, standard is 16px. 14px is a good compact size. */
    font-size: 14px; 
}

/* =============================
   QTI Shop Header (Custom)
=============================== */
.qti-shop-header {
  width: 100%;
  background: #0f172a;
  min-height: 52px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 1101;
}
.qti-shop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 1.5rem;
  min-height: 52px;
  width: 100%;
  background: #0f172a;
}
.qti-shop-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.qti-shop-logo i {
  color: #3b82f6;
  font-size: 1.5rem;
}
.qti-shop-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.qti-shop-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 0.1rem 0.5rem;
  margin: 0 1.5rem;
  flex: 1 1 420px;
  max-width: 600px;
  min-width: 220px;
  border: 1px solid #334155;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.qti-shop-search input[type="text"] {
  border: none;
  background: transparent;
  font-size: 0.95rem;
  padding: 0.5rem 0.6rem;
  outline: none;
  width: 100%;
  color: #0f172a;
}
.qti-shop-search input[type="text"]::placeholder {
    color: #64748b;
}
.qti-shop-search button {
  background: none;
  border: none;
  color: #64748b;
  font-size: 1rem;
  cursor: pointer;
  padding: 0 0.5rem;
  transition: color 0.18s;
}
.qti-shop-search button:hover {
  color: #3b82f6;
}
.qti-shop-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.qti-shop-link {
  color: #e2e8f0;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.18s;
  font-weight: 500;
}
.qti-shop-link:hover {
  background: #3b82f6;
  color: #fff;
}
.qti-shop-icon {
  color: #e2e8f0;
  font-size: 1.1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.6rem;
  border-radius: 5px;
  background: transparent;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
  position: relative;
  border: 1px solid transparent;
}
.qti-shop-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.cart-label {
  display: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}
@media (min-width: 700px) {
  .qti-shop-icon .cart-label {
    display: inline;
  }
}
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #ef4444;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  border: 2px solid #0f172a;
}
@media (max-width: 900px) {
  .qti-shop-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem 1rem;
  }
  .qti-shop-search {
    margin: 0.7rem 0;
    max-width: 100%;
  }
  .qti-shop-actions {
    gap: 0.7rem;
    justify-content: flex-end;
  }
}
/* =============================
   Shop Page Layout (Sidebar + Content)
=============================== */
.shop-page-layout {
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  background: #f1f5f9;
}
.shop-sidebar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 240px;
  background: #0f172a; /* Darker Sidebar */
  box-shadow: 4px 0 24px 0 rgba(0,0,0,0.1);
  z-index: 1002;
  transition: width 0.25s cubic-bezier(.4,0,.2,1);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #1e293b;
}
body.shop-sidebar-collapsed .shop-sidebar-fixed {
  width: 0px !important;
  overflow: hidden;
  border-right: none;
}
.shop-content-area {
  margin-left: 240px;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: margin-left 0.25s cubic-bezier(.4,0,.2,1);
}
body.shop-sidebar-collapsed .shop-content-area {
  margin-left: 0;
}
@media (max-width: 900px) {
  .shop-sidebar-fixed {
    position: absolute;
    height: auto;
    min-height: 100vh;
    z-index: 1002;
  }
  .shop-content-area {
    margin-left: 0;
  }
}

/* =============================
   Shop Sidebar Content
=============================== */
.sidebar-header {
    height: 53px; /* Match header height */
    display: flex;
    align-items: center;
    padding: 0 1.2rem;
    background: #0f172a;
    border-bottom: 1px solid #1e293b;
    flex-shrink: 0;
}
.sidebar-brand {
    color: #3b82f6;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    white-space: nowrap;
}
.sidebar-brand span {
    color: #f8fafc;
}

.sidebar-section {
    padding: 0.8rem;
    overflow-y: auto;
    flex-grow: 1;
}
.sidebar-section.sidebar-help {
    margin-top: auto;
    flex-grow: 0;
}

.sidebar-widget {
    background: transparent;
    margin-bottom: 1rem;
}

.widget-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.category-list li {
    margin-bottom: 0.15rem;
}
.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.7rem;
    border-radius: 6px;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s, color 0.2s;
    font-weight: 500;
    white-space: nowrap;
}
.category-list a:hover {
    background: #1e293b;
    color: #fff;
}
.category-list a.active {
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
}
.cat-count {
    font-size: 0.75rem;
    background: #1e293b;
    padding: 1px 5px;
    border-radius: 4px;
    font-weight: 600;
}
.category-list a.active .cat-count {
    background: rgba(255,255,255,0.2);
}

.sidebar-section.sidebar-account {
    border-bottom: 1px solid #1e293b;
    padding-bottom: 1rem;
}
.account-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.account-info i {
    color: #3b82f6;
    font-size: 2.2rem;
}
.account-label {
    font-size: 0.8rem;
    color: #64748b;
}
.account-name {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.help-content {
    background: #1e293b;
    border-radius: 8px;
    text-align: center;
    padding: 1rem 0.8rem;
}
.help-content i {
    color: #3b82f6;
    margin-bottom: 0.5rem;
}
.help-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0.5rem 0 0.3rem 0;
    color: #fff;
}
.help-content p {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-bottom: 0.8rem;
}
.btn-small {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 6px;
    background: #3b82f6;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.18s;
    border: none;
}
.btn-small:hover {
    background: #2563eb;
}
.sidebar-toggle {
  background: #1e293b;
  color: #3b82f6;
  border: none;
  border-radius: 6px;
  padding: 0.3rem 0.7rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.18s;
}
.sidebar-toggle:hover {
  background: #3b82f6;
  color: #fff;
}

/* =============================
   Shop Main Content Styles
=============================== */
.shop-main-content {
    flex-grow: 1;
    padding: 1.5rem;
    overflow-x: hidden; /* Prevent horizontal scroll on body */
}

/* Featured Carousel */
.featured-section {
    margin-bottom: 2.5rem;
}
.featured-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
    border-left: 4px solid #3b82f6;
}
.product-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.product-carousel-track {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0.5rem 1.5rem 0.5rem; /* Bottom padding for shadow */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
    width: 100%;
}
.product-carousel-track::-webkit-scrollbar { 
    display: none;  /* Chrome/Safari/Webkit */
}
.carousel-item {
    flex: 0 0 260px; /* Fixed width for carousel items */
    max-width: 260px;
    display: flex;
    flex-direction: column;
}
.carousel-item .product-card {
    width: 100%;
    height: 100%;
}
.carousel-arrow {
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: absolute;
}
.carousel-arrow:hover {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}
.carousel-arrow.prev { left: -20px; }
.carousel-arrow.next { right: -20px; }

@media (max-width: 768px) {
    .carousel-arrow { display: none; } /* Hide arrows on mobile, use touch scroll */
    .product-carousel-track { padding-right: 1.5rem; }
}
.shop-category-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}
.shop-category-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.shop-category-header p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}
.sort-select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    background-color: #fff;
    font-size: 0.9rem;
    color: #0f172a;
    cursor: pointer;
    outline: none;
}
.no-products-message {
    background: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Product Grid & Cards */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.2rem; }
.product-card { border: 1px solid #e2e8f0; border-radius: 8px; overflow: hidden; transition: all 0.3s ease; background: #fff; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #cbd5e1; }
.product-image-link { display: block; }
.product-image { height: 180px; background: #f8fafc; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-info { padding: 1rem; text-align: left; flex: 1; display: flex; flex-direction: column; }
.product-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}
.quick-view-btn {
    position: absolute;
    bottom: -50px; /* Start hidden below */
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    z-index: 2;
}
.product-card:hover .quick-view-btn {
    bottom: 10px;
    opacity: 1;
}
.quick-view-btn:hover {
    background: #3b82f6;
    border-color: #3b82f6;
}

@media (max-width: 768px) {
    .quick-view-btn {
        bottom: 10px;
        opacity: 1;
        background: rgba(15, 23, 42, 0.95);
    }
}
.product-category {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}
.product-info h3 { font-size: 0.95rem; margin: 0 0 0.5rem 0; color: #0f172a; font-weight: 600; line-height: 1.4; }
.product-info h3 a { color: inherit; text-decoration: none; }
.product-info h3 a:hover { color: #3b82f6; }
.price { 
    font-weight: 700; 
    color: #0f172a; 
    margin-bottom: 0.8rem; 
    font-size: 1.1rem; 
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.price-sale {
    color: #ef4444; /* Red for sale price */
}
.price-original {
    color: #64748b; /* Muted color for original price */
    text-decoration: line-through;
    font-size: 0.9rem;
    font-weight: 400;
}

.add-to-cart-form { margin-top: auto; }
.btn-add-to-cart {
    width: 100%;
    padding: 0.5rem;
    background: #f1f5f9;
    color: var(--secondary);
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}
.btn-add-to-cart:hover {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}
.shop-footer {
    text-align: center;
    padding: 1.2rem;
    background: #e2e8f0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}
.page-link {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}
.page-link:hover, .page-link.active {
    background: #3b82f6;
    color: #fff;
    border-color: #3b82f6;
}

/* Search Form */
.search-form .input-group { display: flex; position: relative; }
.search-form input { width: 100%; padding: 12px 45px 12px 15px; border: 1px solid #e2e8f0; border-radius: 6px; transition: all 0.3s; background: #f8fafc; }
.search-form input:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1); outline: none; }
.search-form button { position: absolute; right: 5px; top: 5px; bottom: 5px; width: 35px; background: var(--accent); color: #fff; border: none; border-radius: 4px; cursor: pointer; transition: background 0.3s; display: flex; align-items: center; justify-content: center; }
.search-form button:hover { background: var(--accent-hover); }

.sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ef4444;
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
}
.badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #10b981; /* Emerald Green */
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 20px;
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
}
.badge-out-of-stock { position: absolute; top: 12px; right: 12px; background: #ef4444; color: white; padding: 4px 10px; font-size: 0.75rem; border-radius: 20px; font-weight: 600; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }

/* Quick View Modal */
.modal.show .product-quick-view {
    transform: scale(1);
    opacity: 1;
}
.product-quick-view {
    width: 90%;
    max-width: 900px;
    padding: 0;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
}
.product-quick-view .modal-body {
    display: flex;
    padding: 2rem;
    gap: 2rem;
}
.product-quick-view .close-modal {
    z-index: 10;
    right: 15px;
    top: 10px;
    font-size: 2rem;
}

.quick-view-image {
    flex: 1 1 45%;
    background: #f8fafc;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quick-view-image img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.quick-view-details {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
}
.quick-view-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem 0;
}
.quick-view-price {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.quick-view-price .price-sale { color: #ef4444; }
.quick-view-price .price-original {
    font-size: 1rem;
    margin-left: 0.5rem;
}

.quick-view-description {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-height: 120px;
    overflow-y: auto;
}

.quick-view-details .add-to-cart-form {
    margin-top: auto;
    display: flex;
    gap: 1rem;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 1.5rem;
}
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.quantity-selector input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
}
.quick-view-details .btn-add-to-cart {
    flex-grow: 1;
}

.view-full-details {
    display: inline-block;
    margin-top: 1rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}
.view-full-details:hover {
    text-decoration: underline;
}

/* =============================
   Amazon-Style Product Details
============================== */
.amz-container { max-width: 1500px; margin: 0 auto; background: #fff; min-height: 100vh; }
.amz-detail-layout { display: flex; gap: 2rem; padding: 2rem; }
.amz-detail-img-col { flex: 0 0 35%; position: sticky; top: 80px; align-self: flex-start; }
.amz-main-img { width: 100%; max-height: 500px; object-fit: contain; border-radius: 0; }

.amz-detail-center-col { flex: 1; padding: 0 1rem; }
.amz-product-title-h1 { font-size: 1.5rem; font-weight: 500; line-height: 1.3; color: #0f1111; margin-bottom: 0.5rem; }
.amz-store-link { color: #007185; text-decoration: none; font-size: 0.9rem; }
.amz-store-link:hover { text-decoration: underline; color: #c7511f; }
.amz-rating { font-size: 0.9rem; color: #0f1111; display: flex; align-items: center; }
.amz-rating i { color: #ffa41c; margin-right: 2px; }
.amz-divider { height: 1px; background: #e7e7e7; margin: 1rem 0; }
.amz-price-large { font-size: 1.75rem; color: #0f1111; display: flex; align-items: flex-start; }
.amz-price-symbol { font-size: 0.85rem; margin-top: 5px; }
.amz-price-fraction { font-size: 0.85rem; margin-top: 5px; }
.amz-bullet-points { margin: 0; padding-left: 1.2rem; }
.amz-bullet-points li { margin-bottom: 0.5rem; font-size: 0.95rem; color: #0f1111; }

.amz-detail-right-col { flex: 0 0 260px; }
.amz-buy-box { border: 1px solid #d5d9d9; border-radius: 8px; padding: 1.2rem; background: #fff; }
.amz-buy-price { font-size: 1.2rem; color: #b12704; font-weight: 500; margin-bottom: 0.5rem; }
.amz-delivery { font-size: 0.9rem; color: #565959; margin-bottom: 1rem; line-height: 1.4; }
.amz-stock-status { font-size: 1.1rem; margin-bottom: 1rem; font-weight: 500; }
.amz-btn { width: 100%; padding: 0.5rem; border-radius: 20px; border: none; cursor: pointer; font-size: 0.9rem; margin-bottom: 0.8rem; box-shadow: 0 2px 5px rgba(213,217,217,.5); text-align: center; display: block; text-decoration: none; }
.amz-btn-cart { background: #ffd814; border: 1px solid #fcd200; color: #0f1111; }
.amz-btn-cart:hover { background: #f7ca00; border-color: #f2c200; }
.amz-btn-buy { background: #ffa41c; border: 1px solid #ff8f00; color: #0f1111; }
.amz-btn-buy:hover { background: #fa8900; border-color: #e37b00; }
.amz-secure { font-size: 0.9rem; color: #007185; display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; cursor: pointer; }
.amz-secure:hover { color: #c7511f; text-decoration: underline; }

@media (max-width: 992px) {
    .amz-detail-layout { flex-direction: column; }
    .amz-detail-img-col { position: static; width: 100%; }
    .amz-detail-right-col { width: 100%; }
}

/* =============================
   Amazon-Style Product Card (Listing)
============================== */
.amz-card {
    background: #fff;
    border: 1px solid #f5f5f5;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    transition: none;
    box-shadow: none;
}
.amz-card:hover { box-shadow: none; transform: none; }
.amz-card-img-container { height: 220px; background: #f7f7f7; display: flex; align-items: center; justify-content: center; padding: 10px; margin-bottom: 0.5rem; }
.amz-card-img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.amz-card-body { padding: 0 10px 10px 10px; display: flex; flex-direction: column; flex: 1; }
.amz-card-title { font-size: 1rem; font-weight: 500; color: #0f1111; line-height: 1.3; margin-bottom: 0.3rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; height: 3.9em; }
.amz-card-title:hover { color: #c7511f; }
.amz-card-rating { font-size: 0.8rem; color: #007185; margin-bottom: 0.3rem; }
.amz-card-price { font-size: 1.3rem; color: #0f1111; font-weight: 500; }
.amz-card-price sup { font-size: 0.75rem; top: -0.5em; }
.amz-card-delivery { font-size: 0.85rem; color: #565959; margin-top: 0.3rem; }
.amz-badge-prime { color: #00a8e1; font-weight: 700; font-style: italic; font-size: 0.85rem; }

@media (max-width: 768px) {
    .product-quick-view .modal-body {
        flex-direction: column;
    }
    .quick-view-title {
        font-size: 1.3rem;
    }
}

/* Related Products Section */
.related-products-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}
.related-products-section h2 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}
