/* STREAMEDU banner theme */
:root{
  --primary:#11a5d8;
  --primary-dark:#0e88b3;
  --accent:#00bcd4;
  --text:#111827;
  --text-light:#6b7280;
  --bg:#f6fbfe;
  --white:#ffffff;
  --border:#e5e7eb;
  --shadow:0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg:0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -2px rgba(0,0,0,0.05);
}

body{
  font-family:'Inter','Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}

/* Navigation */
.navbar{
  background:var(--white) !important;
  box-shadow:var(--shadow);
  border-bottom:1px solid var(--border);
}

.navbar-brand{
  font-size:1.5rem;
  font-weight:800;
}

.navbar-brand span{
  color:var(--primary);
  font-weight:800;
}

.navbar-nav .nav-link{
  font-weight:500;
  color:var(--text) !important;
  transition:color 0.2s ease;
}

.navbar-nav .nav-link:hover{
  color:var(--primary) !important;
}

/* Buttons */
.btn-primary{
  background:var(--primary);
  border-color:var(--primary);
  font-weight:600;
  padding:0.75rem 1.5rem;
  border-radius:0.5rem;
  transition:all 0.2s ease;
}

.btn-primary:hover{
  background:var(--primary-dark);
  border-color:var(--primary-dark);
  transform:translateY(-1px);
  box-shadow:var(--shadow-lg);
}

.btn-outline-secondary{
  border-color:var(--border);
  color:var(--text);
  font-weight:500;
}

.btn-outline-secondary:hover{
  background:var(--primary);
  border-color:var(--primary);
  color:var(--white);
}

/* Hero sections */
.hero{
  background:linear-gradient(135deg,var(--primary) 0%,var(--accent) 100%);
  color:var(--white);
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity:0.3;
}

.hero .container{
  position:relative;
  z-index:2;
}

.hero h1{
  font-weight:800;
  text-shadow:0 2px 4px rgba(0,0,0,0.1);
}

.hero .lead{
  font-size:1.25rem;
  opacity:0.95;
}

/* Cards */
.card{
  border:0;
  border-radius:1rem;
  box-shadow:var(--shadow);
  transition:all 0.3s ease;
  overflow:hidden;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}

.card-body{
  padding:1.5rem;
}

.card-title{
  font-weight:600;
  color:var(--text);
  margin-bottom:0.75rem;
}

/* Product cards */
.product-card{
  transition:all 0.3s ease;
  border-radius:1rem;
  overflow:hidden;
}

.product-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-lg);
}

.product-card-img{
  width:100%;
  height:240px;
  object-fit:contain;
  background:var(--bg);
  padding:0.5rem;
  transition:transform 0.3s ease;
}

.product-card:hover .product-card-img{
  transform:scale(1.05);
}

/* Product image container for better spacing */
.product-image-container{
  height:240px;
  background:var(--bg);
  padding:1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  border-bottom:1px solid var(--border);
}

/* Ensure images don't get cut off */
.product-card img.product-card-img{
  max-height:100%;
  max-width:100%;
  object-fit:contain;
  transition:transform 0.3s ease;
}

.price{
  color:var(--primary-dark);
  font-weight:700;
  font-size:1.25rem;
}

/* Forms */
.form-control{
  border:2px solid var(--border);
  border-radius:0.5rem;
  padding:0.75rem 1rem;
  font-size:1rem;
  transition:all 0.2s ease;
}

.form-control:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(17,165,216,0.1);
}

.form-label{
  font-weight:600;
  color:var(--text);
  margin-bottom:0.5rem;
}

/* Tables */
.table{
  background:var(--white);
  border-radius:0.75rem;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.table thead th{
  background:var(--bg);
  border:0;
  font-weight:600;
  color:var(--text);
  padding:1rem;
}

.table tbody td{
  border:0;
  padding:1rem;
  vertical-align:middle;
}

.table tbody tr{
  border-bottom:1px solid var(--border);
}

.table tbody tr:last-child{
  border-bottom:0;
}

/* Footer */
.footer{
  background:var(--white);
  border-top:1px solid var(--border);
  margin-top:4rem;
}

/* Alerts */
.alert{
  border:0;
  border-radius:0.75rem;
  padding:1rem 1.5rem;
  font-weight:500;
}

.alert-info{
  background:rgba(17,165,216,0.1);
  color:var(--primary-dark);
  border-left:4px solid var(--primary);
}

/* Badges */
.badge{
  font-weight:600;
  padding:0.5rem 0.75rem;
  border-radius:0.5rem;
}

/* Utilities */
.text-muted{
  color:var(--text-light) !important;
}

.bg-light{
  background:var(--bg) !important;
}

/* New Homepage Styles */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  min-height: 80vh;
  position: relative;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  z-index: 2;
}


.floating-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 3;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.min-vh-75 {
  min-height: 75vh;
}

/* Features Section */
.features-section {
  background: var(--bg);
}

.feature-item {
  padding: 2rem 1rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  color: var(--primary);
}

/* Section Headers */
.section-header {
  margin-bottom: 3rem;
}

.section-header .badge {
  font-size: 0.9rem;
}

/* Product Overlay */
.product-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

/* Categories Section */
.category-card {
  background: var(--white);
  padding: 2rem 1rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.newsletter-form .form-control {
  border: 0;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
}

.newsletter-form .btn {
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
}

/* Product Page Styles */
.product-gallery {
  position: relative;
}

.main-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.main-image-wrapper {
  position: relative;
  background: var(--bg);
  border-radius: 15px;
  overflow: hidden;
}

.main-product-image {
  width: 100%;
  height: 400px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.5s ease;
}

.main-product-image.fade-out {
  opacity: 0;
}

.main-product-image.fade-in {
  opacity: 1;
}

.main-product-image:hover {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-image-container:hover .image-overlay {
  opacity: 1;
}

.thumbnail-gallery {
  margin-top: 1rem;
}

.thumbnail-item {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.thumbnail-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.thumbnail-image:hover,
.thumbnail-image.active {
  border-color: var(--primary);
  transform: scale(1.1);
}

/* Product Details */
.product-details {
  padding: 1rem 0;
}

.product-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.5rem;
}

.product-title {
  color: var(--text);
  line-height: 1.3;
}

.current-price {
  color: var(--primary);
}

.description-content {
  line-height: 1.6;
  color: var(--text-light);
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.feature-list li:last-child {
  border-bottom: none;
}

/* Quantity Controls */
.quantity-controls {
  max-width: 150px;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.quantity-input {
  width: 60px;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: 8px;
}

.quantity-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(17, 165, 216, 0.1);
}

/* Cart Page Styles */
.empty-cart {
  padding: 4rem 2rem;
}

.empty-cart-icon {
  color: var(--text-light);
}

.cart-item {
  transition: all 0.3s ease;
}

.cart-item:hover {
  background: var(--bg);
}

.cart-item-image {
  padding: 1rem;
  background: var(--bg);
  border-radius: 8px;
}

.cart-item-title {
  color: var(--text);
  font-weight: 600;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 600;
}

.total-price {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Order Summary */
.order-summary .card {
  box-shadow: var(--shadow-lg);
}

.summary-item {
  font-size: 0.95rem;
}

.summary-total {
  font-size: 1.1rem;
  color: var(--text);
}

.security-badges {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ========================================
   HEADER & NAVIGATION STYLES
======================================== */

/* Main Header */
.main-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Navbar Brand */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  color: var(--primary-dark) !important;
  transform: scale(1.05);
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: rotate(5deg);
}

/* Navigation Links */
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text) !important;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary) !important;
  background: var(--bg);
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: var(--bg);
  font-weight: 600;
}

/* Cart Badge */
.navbar-nav .badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 50px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* User Info */
.navbar-nav .nav-link span {
  color: var(--text-light);
  font-weight: 500;
}

/* Buttons in Navbar */
.navbar-nav .btn {
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.navbar-nav .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(17, 165, 216, 0.3);
}

/* Mobile Navbar */
@media (max-width: 991px) {
  .main-header {
    padding: 0.5rem 0;
  }
  
  .navbar-brand {
    font-size: 1.3rem;
  }
  
  .navbar-brand img {
    height: 32px;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    font-size: 1.2rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .navbar-collapse {
    background: white;
    border-radius: 15px;
    margin-top: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border: 1px solid var(--border);
  }
  
  .navbar-nav {
    gap: 0.5rem;
  }
  
  .navbar-nav .nav-link {
    margin: 0.25rem 0;
    text-align: center;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-weight: 500;
  }
  
  .navbar-nav .nav-link:hover {
    background: var(--bg);
    transform: none;
  }
  
  .navbar-nav .btn {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .navbar-nav .badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }
}

@media (max-width: 576px) {
  .main-header {
    padding: 0.25rem 0;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
  
  .navbar-brand img {
    height: 28px;
  }
  
  .navbar-toggler {
    font-size: 1.1rem;
  }
  
  .navbar-collapse {
    margin-top: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .navbar-nav .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
}

/* ========================================
   FOOTER STYLES
======================================== */

/* Main Footer */
.main-footer {
  margin-top: auto;
  background: var(--text);
}

/* Footer Top Section */
.footer-top {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.footer-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

/* Footer Brand */
.footer-brand h4 {
  color: white;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-brand p {
  line-height: 1.6;
  color: #b0b0b0;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: #b0b0b0;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(17, 165, 216, 0.4);
}

/* Footer Titles */
.footer-title {
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-link {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(5px);
  text-decoration: none;
}

.footer-link i {
  font-size: 0.9rem;
  width: 16px;
}

/* Contact Info */
.contact-info {
  margin-top: 0.5rem;
}

.contact-item h6 {
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.contact-item .footer-link {
  font-size: 0.9rem;
  color: #b0b0b0;
}

.contact-item i {
  font-size: 1.1rem;
  width: 20px;
}

/* Footer Bottom */
.footer-bottom {
  background: #0a0a0a;
  border-top: 1px solid #333;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  align-items: center;
}

.footer-bottom-link {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.footer-bottom-link:hover {
  color: white;
  background: var(--primary);
  border-color: var(--primary);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(17, 165, 216, 0.3);
}

/* Developer Credits */
.footer-credits{
  padding-top:0.75rem;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-credits p{
  color:#aeb3b8;
  font-size:0.82rem;
  margin:0;
  display:block !important;
  visibility:visible;
}

.footer-credits strong{ color:#eceff3; }

.footer-credits .credits-sep{ margin:0 0.5rem; color:#6b7280; }

.footer-credits .credits-break{ display:none; }

@media (max-width:576px){
  .footer-credits p{ font-size:0.78rem; line-height:1.5; }
  .footer-credits .credits-sep{ display:none; }
  .footer-credits .credits-break{ display:initial; }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(17, 165, 216, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(17, 165, 216, 0.4);
}

/* ========================================
   BREADCRUMB STYLES
======================================== */

.breadcrumb {
  background: var(--bg);
  padding: 1rem 0;
  margin: 0;
  border-bottom: 1px solid var(--border);
}

.breadcrumb-item {
  font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: var(--text-light);
  font-weight: 600;
}

.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: var(--text-light);
  font-weight: 500;
}

/* ========================================
   RESPONSIVE FOOTER
======================================== */

@media (max-width: 768px) {
  .main-footer {
    margin-top: 3rem;
  }
  
  .footer-top {
    padding: 3rem 0;
  }
  
  .footer-brand {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  
  .footer-brand h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .social-links {
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  .social-link {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }
  
  .footer-title {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1.2rem;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-link {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    justify-content: center;
  }
  
  .footer-link i {
    font-size: 1rem;
    width: 18px;
  }
  
  .contact-info {
    text-align: center;
  }
  
  .contact-item {
    margin-bottom: 2rem;
  }
  
  .contact-item h6 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .contact-item .footer-link {
    font-size: 0.95rem;
    justify-content: center;
  }
  
  .contact-item i {
    font-size: 1.2rem;
    width: 22px;
  }
  
  .footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
  }
  
  .footer-bottom-links {
    justify-content: center;
    margin-top: 1.5rem;
    gap: 1.5rem;
  }
  
  .footer-bottom-link {
    font-size: 0.9rem;
    padding: 0.25rem 0;
  }
  
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .main-footer {
    margin-top: 2rem;
  }
  
  .footer-top {
    padding: 2.5rem 0;
  }
  
  .footer-brand {
    margin-bottom: 2rem;
  }
  
  .footer-brand h4 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 350px;
  }
  
  .social-links {
    margin-top: 1rem;
    gap: 0.75rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-title::after {
    width: 35px;
  }
  
  .footer-link {
    padding: 0.4rem 0;
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 0;
  }
  
  .footer-bottom-links {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .footer-bottom-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
  
  .footer-link i {
    font-size: 0.9rem;
    width: 16px;
  }
  
  .contact-item {
    margin-bottom: 1.5rem;
  }
  
  .contact-item h6 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  
  .contact-item .footer-link {
    font-size: 0.9rem;
  }
  
  .contact-item i {
    font-size: 1.1rem;
    width: 20px;
  }
  
  .footer-bottom {
    padding: 1.25rem 0;
  }
  
  .footer-bottom-links {
    justify-content: center;
    gap: 0.5rem;
  }
  
  .footer-bottom-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
  
  .footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }
  
  .footer-bottom-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .footer-bottom-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
  
  .footer-bottom-link {
    font-size: 0.85rem;
    padding: 0.3rem 0;
    display: block;
  }
  
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

/* ========================================
   ADMIN NAVBAR MOBILE FIXES
======================================== */

/* Admin navbar mobile toggler visibility */
@media (max-width: 991px) {
  .navbar-dark .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0.1);
  }
  
  .navbar-dark .navbar-toggler:hover {
    border-color: rgba(255, 255, 255, 1);
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .navbar-dark .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
  }
  
  .navbar-dark .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%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
}

/* ========================================
   MOBILE-SPECIFIC IMPROVEMENTS
======================================== */

/* Mobile Footer - Simplified Design */
@media (max-width: 768px) {
  /* Better touch targets */
  .navbar-nav .nav-link,
  .footer-link,
  .social-link {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Ensure footer credits are visible on mobile */
  .footer-brand .footer-credits p{ display:block !important; }
  
  /* Improved spacing for mobile */
  .main-header .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .main-footer .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  /* Hide detailed sections on mobile - show only essential info */
  .footer-top .col-lg-2:nth-child(2),
  .footer-top .col-lg-2:nth-child(3) {
    display: none !important;
  }
  
  /* Mobile footer - simplified layout */
  .footer-top {
    padding: 1.5rem 0;
  }
  
  .footer-top .row {
    display: block;
  }
  
  .footer-top .col-lg-4 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    margin-bottom: 0;
    padding: 0;
  }
  
  /* Company Brand Section - Simplified */
  .footer-brand {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .footer-brand .d-flex {
    justify-content: center;
    margin-bottom: 0.75rem;
  }
  
  .footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-brand p {
    text-align: center;
    max-width: 100%;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0 auto;
    display: none; /* Hide description on mobile */
  }
  
  /* Social Links - Simplified */
  .social-links {
    justify-content: center;
    margin-top: 1rem;
    gap: 0.75rem;
  }
  
  .social-link {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  /* Contact Information - Essential only */
  .contact-info {
    text-align: center;
  }
  
  .contact-info .contact-item {
    background: rgba(255,255,255,0.05);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
  }
  
  .contact-info .contact-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
  }
  
  .contact-info .contact-item:last-child {
    margin-bottom: 0;
  }
  
  .contact-info .d-flex {
    flex-direction: row;
    align-items: center;
    text-align: left;
    justify-content: center;
  }
  
  .contact-info .d-flex i {
    margin-right: 0.75rem;
    margin-bottom: 0;
    font-size: 1.2rem;
    color: var(--primary);
    min-width: 20px;
  }
  
  .contact-info h6 {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    display: none; /* Hide labels on mobile */
  }
  
  .contact-info .footer-link {
    background: none;
    padding: 0;
    font-size: 0.85rem;
    text-align: center;
  }
  
  /* Keep address on mobile - essential contact info */
  .contact-info .contact-item:last-child {
    display: block;
  }
  
  /* Footer Bottom - Simplified */
  .footer-bottom {
    padding: 1rem 0;
    text-align: center;
  }
  
  .footer-bottom .row {
    display: block;
  }
  
  .footer-bottom .col-md-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
  }
  
  .footer-bottom .col-md-6:first-child {
    margin-bottom: 1rem;
  }
  
  .footer-bottom p {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }
  
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    display: flex;
    flex-direction: row;
  }
  
  .footer-bottom-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    display: inline-block;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  
  .footer-bottom-link:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
  }
}

/* Extra small devices - Ultra Simplified Mobile Footer */
@media (max-width: 480px) {
  .main-header .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  /* Ensure footer credits are visible on extra small devices */
  .footer-brand .footer-credits p{ display:block !important; }
  
  .main-footer .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .navbar-brand img {
    height: 26px;
  }
  
  /* Ultra simplified mobile footer */
  .footer-top {
    padding: 1rem 0;
  }
  
  /* Company Brand - Minimal */
  .footer-brand {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
  
  .footer-brand h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-brand p {
    display: none; /* Keep hidden on small mobile */
  }
  
  /* Social Links - Compact */
  .social-links {
    margin-top: 0.75rem;
    gap: 0.5rem;
  }
  
  .social-link {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  /* Contact Information - Essential only */
  .contact-info .contact-item {
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
  }
  
  .contact-info .d-flex i {
    font-size: 1rem;
    margin-right: 0.5rem;
    min-width: 16px;
  }
  
  .contact-info .footer-link {
    font-size: 0.8rem;
  }
  
  /* Footer Bottom - Minimal */
  .footer-bottom {
    padding: 0.75rem 0;
  }
  
  .footer-bottom .col-md-6:first-child {
    margin-bottom: 0.75rem;
  }
  
  .footer-bottom p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-bottom-links {
    gap: 0.5rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-bottom-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.6rem;
    margin: 0.1rem 0;
    width: auto;
    min-width: 80px;
    white-space: nowrap;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    bottom: 0.5rem;
    right: 0.5rem;
  }
}

/* Products Page Styles */
.page-header {
  background: linear-gradient(135deg, var(--bg) 0%, #f8fafc 100%);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
}

.product-stats .badge {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
}

/* Filters Sidebar */
.filters-sidebar .card {
  box-shadow: var(--shadow);
  border: none;
}

.filter-form .input-group-text {
  background: var(--bg);
  border-color: var(--border);
  color: var(--text-light);
}

.filter-form .form-control,
.filter-form .form-select {
  border-color: var(--border);
  transition: all 0.3s ease;
}

.filter-form .form-control:focus,
.filter-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(17, 165, 216, 0.1);
}

.filter-actions .btn {
  border-radius: 8px;
  font-weight: 600;
}

/* Category Links */
.category-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.category-link:hover {
  background: var(--bg);
  color: var(--primary);
  text-decoration: none;
}

.category-link.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.category-link .badge {
  font-size: 0.75rem;
}

/* Products Section */
.results-header {
  background: var(--bg);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.results-count .badge {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

/* Product Cards */
.product-card-wrapper {
  position: relative;
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.product-link {
  display: block;
  height: 100%;
}

.product-image-container {
  position: relative;
  height: 200px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.05);
}

.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;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
}

.product-actions .btn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.product-category .badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
}

.product-title {
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
  min-height: 2.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  color: var(--primary);
  font-size: 1.1rem;
}

/* No Products State */
.no-products {
  padding: 4rem 2rem;
  background: var(--bg);
  border-radius: 15px;
  border: 1px solid var(--border);
}

.no-products-icon {
  color: var(--text-light);
}

.no-products-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile First Responsive Design */
@media (max-width: 576px) {
  /* Container and spacing */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Navbar mobile improvements */
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .navbar-brand img {
    height: 28px;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .navbar-nav .btn {
    margin-top: 0.5rem;
    width: 100%;
  }
  
  /* Hero section mobile */
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-content {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero-content .lead {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  
  .floating-card {
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .floating-card i {
    font-size: 3rem;
  }
  
  .floating-card h4 {
    font-size: 1.1rem;
  }
  
  /* Features section mobile */
  .features-section {
    padding: 3rem 0;
  }
  
  .feature-item {
    margin-bottom: 2rem;
  }
  
  .feature-icon i {
    font-size: 2.5rem;
  }
  
  .feature-item h5 {
    font-size: 1.1rem;
  }
  
  .feature-item p {
    font-size: 0.9rem;
  }
  
  /* Product cards mobile */
  .product-card {
    margin-bottom: 1rem;
  }
  
  .product-image-container {
    height: 180px;
  }
  
  .product-card-img {
    max-height: 100%;
    max-width: 100%;
  }
  
  .product-title {
    font-size: 0.95rem;
    min-height: auto;
    -webkit-line-clamp: 2;
  }
  
  .product-price {
    font-size: 1rem;
  }
  
  /* Categories section mobile */
  .categories-section {
    padding: 3rem 0;
  }
  
  .category-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem 1rem;
  }
  
  .category-icon i {
    font-size: 2.5rem;
  }
  
  .category-card h5 {
    font-size: 1.1rem;
  }
  
  /* CTA section mobile */
  .cta-section {
    padding: 3rem 0;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content .lead {
    font-size: 1rem;
  }
  
  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  /* Newsletter section mobile */
  .newsletter-section {
    padding: 3rem 0;
  }
  
  .newsletter-form .input-group {
    flex-direction: column;
    width: 100%;
  }
  
  .newsletter-form .form-control {
    border-radius: 8px;
    margin-bottom: 0.5rem;
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.9);
    color: var(--text);
  }
  
  .newsletter-form .form-control:focus {
    border-color: white;
    background: white;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
  }
  
  .newsletter-form .form-control::placeholder {
    color: var(--text-light);
  }
  
  .newsletter-form .btn {
    border-radius: 8px;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    background: white;
    color: var(--primary);
    border: 2px solid white;
  }
  
  .newsletter-form .btn:hover {
    background: var(--bg);
    color: var(--primary);
  }
  
  /* Footer mobile */
  .footer {
    text-align: center;
  }
  
  .footer .row > div {
    margin-bottom: 2rem;
  }
  
  /* Page headers mobile */
  .page-header {
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .page-header h1 {
    font-size: 1.8rem;
  }
  
  .page-header .lead {
    font-size: 0.95rem;
  }
  
  .product-stats {
    margin-top: 1rem;
  }
  
  /* Filters sidebar mobile */
  .filters-sidebar {
    margin-bottom: 2rem;
  }
  
  .filter-form .input-group {
    flex-direction: column;
    width: 100%;
  }
  
  .filter-form .input-group-text {
    border-radius: 8px 8px 0 0;
    background: var(--bg);
    border-color: var(--border);
    color: var(--text-light);
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }
  
  .filter-form .form-control {
    border-radius: 0 0 8px 8px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-color: var(--border);
    width: 100%;
  }
  
  .filter-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(17, 165, 216, 0.1);
  }
  
  .filter-form .form-select {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-color: var(--border);
    width: 100%;
  }
  
  .filter-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(17, 165, 216, 0.1);
  }
  
  .category-links {
    gap: 0.25rem;
  }
  
  .category-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Results header mobile */
  .results-header {
    padding: 1rem;
    text-align: center;
  }
  
  .results-count {
    margin-top: 0.5rem;
  }
  
  /* Product grid mobile */
  .products-grid .row {
    margin: 0 -0.5rem;
  }
  
  .products-grid .col-6 {
    padding: 0 0.5rem;
  }
  
  /* Cart page mobile */
  .cart-item .row {
    flex-direction: column;
    text-align: center;
  }
  
  .cart-item-image {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .cart-item-image img {
    width: 120px;
    height: 120px;
  }
  
  .cart-item-details {
    text-align: center;
  }
  
  .cart-item-quantity {
    margin: 1rem 0;
  }
  
  .quantity-controls {
    justify-content: center;
  }
  
  .cart-item-total {
    margin: 1rem 0;
  }
  
  .cart-item-actions {
    margin: 1rem 0;
  }
  
  /* Order summary mobile */
  .order-summary .card {
    position: static !important;
    margin-top: 2rem;
  }
  
  /* Product detail page mobile */
  .main-product-image {
    height: 250px;
  }
  
  .thumbnail-image {
    width: 50px;
    height: 50px;
  }
  
  .product-details {
    margin-top: 2rem;
  }
  
  .quantity-controls {
    max-width: 100%;
    justify-content: center;
  }
  
  .action-buttons .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  /* No products state mobile */
  .no-products {
    padding: 2rem 1rem;
  }
  
  .no-products h3 {
    font-size: 1.5rem;
  }
  
  .no-products p {
    font-size: 0.95rem;
  }
  
  .no-products-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .no-products-actions .btn {
    width: 100%;
    max-width: 280px;
    margin-bottom: 0.5rem;
  }
  
  /* Empty cart mobile */
  .empty-cart {
    padding: 2rem 1rem;
  }
  
  .empty-cart h3 {
    font-size: 1.5rem;
  }
  
  .empty-cart p {
    font-size: 0.95rem;
  }
  
  /* Breadcrumb mobile */
  .breadcrumb {
    font-size: 0.85rem;
    padding: 0.75rem 0;
  }
  
  /* General mobile improvements */
  .display-3 {
    font-size: 2.2rem;
  }
  
  .display-6 {
    font-size: 1.6rem;
  }
  
  .h2 {
    font-size: 1.5rem;
  }
  
  .h4 {
    font-size: 1.25rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  
  .card-body {
    padding: 1rem;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.6rem;
  }
  
  .section-header .lead {
    font-size: 0.95rem;
  }
  
  /* Mobile form improvements */
  .form-control,
  .form-select {
    font-size: 16px !important; /* Prevents zoom on iOS */
    padding: 0.875rem 1rem;
    border-radius: 8px;
    border: 2px solid var(--border);
    width: 100%;
    min-height: 48px; /* Touch-friendly minimum height */
  }
  
  .form-control:focus,
  .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(17, 165, 216, 0.1);
    outline: none;
  }
  
  .form-control::placeholder {
    color: var(--text-light);
    opacity: 1;
  }
  
  .input-group-text {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  
  .btn {
    min-height: 48px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 8px;
  }
  
  /* Fix for mobile input zoom */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="search"],
  textarea,
  select {
    font-size: 16px !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  /* Mobile-specific input styling */
  .newsletter-form .input-group,
  .filter-form .input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  
  .newsletter-form .input-group .form-control,
  .filter-form .input-group .form-control {
    margin-bottom: 0.5rem;
  }
  
  .newsletter-form .input-group .btn,
  .filter-form .input-group .btn {
    margin-top: 0;
  }
}

/* Tablet responsive */
@media (min-width: 577px) and (max-width: 768px) {
  .hero-section {
    min-height: 65vh;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: auto;
    min-width: 200px;
  }
  
  .features-section .row > div {
    margin-bottom: 2rem;
  }
  
  .product-image-container {
    height: 200px;
  }
  
  .category-card {
    padding: 2rem 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: auto;
    min-width: 200px;
  }
}

/* Large mobile and small tablet */
@media (min-width: 769px) and (max-width: 991px) {
  .hero-section {
    min-height: 70vh;
  }
  
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .product-image-container {
    height: 220px;
  }
  
  .main-product-image {
    height: 350px;
  }
}

