* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Product Description Container - Responsive */
.product-description-container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0px;
    padding: 80px 20px;
    width: 100%;              /* Already set to 100% */
    max-width: 100%;          /* Changed from 1200px to 100% */
    margin: 0 auto;
    box-sizing: border-box;
}

/* Resize sections: smaller image, larger details */
.product-description-container{
  display:flex;
  align-items:flex-start;
}

.product-image-section{
  flex: 0 0 45%;           /* increased from ~32% to 45% */
  max-width: 550px;        /* larger max width */
}

.image-container{
  width: 100%;
  max-width: 100%;
}

.image-container img{
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.product-details-section{
  flex: 1 1 55%;           /* reduced from ~68% to 55% */
  max-width: 650px;        /* limit max width */
}

/* Image Container - Responsive */
.image-container{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F3F3F3;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    height: auto;
}

.image-container img{
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

/* Product Header Container - Responsive */
.product-header-container{
    display: flex;
    flex-direction: column;
    gap: 17px;
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 20px;
    width: 100%;
    max-width: 550px;
}

.star-ratings{
    display: flex;
    align-items: center;
}

.star-ratings p{
    font-size: 0.8em;
    color: #363636;
    font-weight: 700;
    padding-left: 5px;
}

.product-title{
    font-size: 1.4em;
    font-weight: 600;
    line-height: 1.3;
}

.product-brand{
    font-size: 0.85em;
    color: #555555;
    letter-spacing: 3px;
    font-weight: 600;
}

.product-price-container{
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

/* Rating row with share button */
.product-rating-share{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-rating-share .star-ratings{
  margin: 0;
}

.product-rating-share .product-share-btn{
  width: 30px;
  height: 24px;
}

.product-description-container .product-price{
    font-size: 5em;
    font-weight: 800;
}

.product-cashback{
    font-size: 0.8em;
    background-color: #FF5733;
    color: #FFFFFF;
    padding: 3px 15px;
    font-weight: 700;
    border-radius: 4px;
    white-space: nowrap;
}

.product-wp{
    font-size: 0.8em;
    background-color: #007bb8;
    color: #FFFFFF;
    padding: 3px 15px;
    font-weight: 700;
    border-radius: 4px;
    white-space: nowrap;
}

/* Share Button (matches cashback/wp badge style) */
.product-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 26px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85em;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.product-share-btn:hover {
    background-color: #05aa0a;
    transform: scale(1.05);
}

/* Share Card Overlay */
.share-card-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.share-card-overlay.active {
    opacity: 1;
    visibility: visible;
}

.share-card-wrapper {
    position: relative;
    max-width: 360px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.share-card-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.share-card-close:hover {
    color: #ff4444;
}

/* Share Card (the captured element) */
.share-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.share-card-header {
    background: #222222;
    padding: 12px 16px;
    text-align: center;
}

.share-card-logo {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.share-card-image {
    background: #f5f5f5;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin: 20px 20px 0px 20px;
}

.share-card-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.share-card-info {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.share-card-name {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.share-card-price {
    font-size: 1.4em;
    font-weight: 800;
    color: #05aa0a;
}

.share-card-appliances {
    padding: 16px 20px;
}

.share-card-appliances h4 {
    font-size: 0.85em;
    color: #666;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.share-card-appliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.share-card-appliance {
    display: flex;
    align-items: center;
    gap: 8px;
  background: #f5f5f5;
    padding: 8px 10px;
    border-radius: 8px;
}

.share-card-appliance img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.share-appliance-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.share-appliance-name {
    font-size: 0.72em;
    color: #555;
    line-height: 1.2;
}

.share-appliance-time {
    font-size: 0.78em;
    font-weight: 700;
    color: #202020;
}

.share-card-footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 0.75em;
    letter-spacing: 0.5px;
}

/* Share Action Buttons */
.share-card-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.share-action-btn {
    flex: 1;
    min-width: 100px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.85em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.share-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-whatsapp {
    background: #25D366;
    color: #fff;
}

.share-download {
    background: #333;
    color: #fff;
}

.share-native {
    background: #007AFF;
    color: #fff;
}

/* Mobile adjustments for share card */
@media (max-width: 480px) {
    .share-card-wrapper {
        width: 95%;
    }
    
    .share-card-image {
        padding: 15px;
    }
    
    .share-card-image img {
        max-height: 160px;
    }
    
    .share-card-info {
        padding: 12px 16px;
    }
    
    .share-card-name {
        font-size: 1em;
    }
    
    .share-card-price {
        font-size: 1.2em;
    }
    
    .share-card-appliances {
        padding: 12px 16px;
    }
    
    .share-card-appliance-grid {
        gap: 8px;
    }
    
    .share-card-appliance {
        padding: 6px 8px;
    }
    
    .share-card-appliance img {
        width: 24px;
        height: 24px;
    }
    
    .share-action-btn {
        padding: 10px 12px;
        font-size: 0.8em;
    }
}

/* Product Variation - Responsive */
.product-variation h2{
    font-size: 1em;
    font-weight: 600;
    border-top: 1px solid #d3d3d3;
    padding-top: 15px;
}

.variation{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 20px;
    border: 1px solid #d3d3d3;
    background-color: #F8F8F8;
    cursor: pointer;
    margin: 10px 0;
    border-radius: 8px;
    font-weight: 300;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.variation > div:first-child {
    display: flex;
    align-items: center;
    gap: 12px;
}

.variation input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #05aa0a;
}

.variation input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.variation label {
    cursor: pointer;
    user-select: none;
}

.variation.base-product {
    background-color: #e8f5e9;
    border-color: #05aa0a;
    font-weight: 500;
}

.variation.addon:hover {
    background-color: #e8e8e8;
    border-color: #999;
}

.variation.addon.selected {
    background-color: #f0f8f0;
    border-color: #05aa0a;
}

/* Package Total Styling */
.package-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1em;
    font-weight: 700;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
}

.total-label {
    font-size: 1em;
}

.total-price {
    font-size: 1.3em;
    letter-spacing: 0.5px;
}

/* Product Action Buttons - Product Description Section */
.product-description-container .product-action-btn{
    display: flex;
    gap: 10px;
    /* margin-top: 10px; */
    width: 100%;
    align-items: stretch; /* ensure equal height */
}

.product-description-container .product-action-btn form {
    flex: 1;
    margin: 0;
}

.product-description-container .add-to-cart-btn, 
.product-description-container .buy-now-btn{
    width: 100%;
    padding: 17px 0;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    height: auto; /* remove any fixed height */
    line-height: 1.2; /* consistent line height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-description-container .add-to-cart-btn:disabled,
.product-description-container .buy-now-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none;
}

.sold-out-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background: #333;
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.product-description-container .buy-now-btn{
    background-color: #05aa0a;
    color: #FFFFFF;
}

.product-description-container .buy-now-btn:hover{
    background-color: #048a08;
}

.product-description-container .add-to-cart-btn{
    background-color: #373737;
    color: #FFFFFF;
}

.product-description-container .add-to-cart-btn:hover{
    background-color: #1a1a1a;
}

/* Product Card Buttons - Separate Styling */
.product-card .btn-group{
  display: flex;
  flex-direction: row;
  gap: 8px;
  /* margin-top: 10px; */
  align-items: stretch; /* ensure equal height */
}

.product-card .product-card-add-btn, 
.product-card .product-card-buy-btn{
  width: 48%;
  padding: 10px 16px;
  font-size: 0.85em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  height: auto;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .product-card-add-btn{
  background-color: #313131;
  color: #ffffff;
}

.product-card .product-card-add-btn:hover{
  background-color: #1a1a1a;
}

.product-card .product-card-buy-btn{
  background-color: #05aa0ab6;
  color: white;
}

.product-card .product-card-buy-btn:hover{
  background-color: #048a08;
}

/* Product Specifications - Responsive */
.product-spec{
    padding: 20px 0;
    font-size: 0.9em;
}

.product-spec ul{
    list-style-type: disc;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-left: 20px;
}

/* Product Specification Section - Responsive */
.product-specification-container{
    background-color: #EDEDED;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 40px;
    padding: 60px 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Appliance Duration Container - Responsive */
.appliance-duration-container{
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 520px;
    min-width: 0;
    flex-shrink: 0;
    align-self: stretch;
}

.appliance-columns-wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex: 1;
}

.appliance-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 48%;
    flex: 1;
    justify-content: space-between;
}

.appliance-duration{
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}

.appliance-duration:hover{
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.appliance-duration img{
    height: 95px;
    width: 90px;
    object-fit: contain;
}

.duration-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.duration-details > div:first-child {
    font-size: 0.8em;
    color: #333333;
    font-weight: 500;
    line-height: 1.2;
}

.duration-time{
    font-weight: 700;
    color: #05aa0a;
    font-size: 0.85em;
}

/* Specification Section Wrapper - Responsive */
.specification-section-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 600px;
    width: 100%;
}

.specification-section-wrapper h2 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

/* Specification Table - Responsive */
.specification-table {
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.specification-table table {
    width: 100%;
    border-collapse: collapse;
}

.specification-table tr {
    border-bottom: 1px solid #E0E0E0;
}

.specification-table tr:last-child {
    border-bottom: none;
}

.specification-table td {
    padding: 18px 24px;
    font-size: 0.95em;
}

.specification-table td:first-child {
    background-color: #F5F5F5;
    font-weight: 600;
    color: #333333;
    width: 40%;
}

.specification-table td:last-child {
    color: #555555;
    font-weight: 400;
}

/* Force a perfect square image container on tablets */
@media (min-width: 769px) and (max-width: 1024px){
  .image-container{
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1 / 1;      /* square */
    height: auto;
  }
  .image-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;       /* no cropping */
  }

  /* Fallback for older browsers without aspect-ratio */
  @supports not (aspect-ratio: 1 / 1){
    .image-container{ position: relative; }
    .image-container::before{ content:""; display:block; padding-top:100%; }
    .image-container img{ position:absolute; inset:0; width:100%; height:100%; object-fit:contain; }
  }
}

/* TABLET VIEW (768px - 1024px) */
@media (max-width: 1024px) {
  .product-description-container{
    gap: 40px;
    padding: 60px 20px;
    width: 100%;             /* Changed from 90% to 100% */
    max-width: 100%;         /* Ensure 100% width */
  }

  .product-header-container{
    max-width: 100%;
  }

  .image-container{
    max-width: 450px;
  }

  .image-container img{
    max-width: 450px;
  }

  .product-title{
    font-size: 1.3em;
  }

  .product-price{
    font-size: 1.8em;
  }

  /* Specification section tablet adjustments */
  .product-specification-container{
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 0px;
  }

  .appliance-duration-container{
    max-width: 100%;
    width: 100%;
  }

  .appliance-columns-wrapper{
    gap: 12px;
  }

  .appliance-column {
    gap: 8px;
  }

  .appliance-duration img{
    height: 38px;
    width: 38px;
  }

  .specification-section-wrapper {
    max-width: 100%;
  }

  .specification-section-wrapper h2 {
    font-size: 1.6em;
  }

  .specification-table td {
    padding: 16px 20px;
    font-size: 0.9em;
  }

  .product-description-container .product-action-btn{
    align-items: stretch;
  }

  .product-description-container .add-to-cart-btn, 
  .product-description-container .buy-now-btn{
    padding: 15px 0;
    font-size: 0.95em;
    height: auto;
    line-height: 1.2;
  }
}

/* MOBILE VIEW (481px - 768px) */
@media (max-width: 768px) {
   .total-label {
    font-size: 0.95em;
   }

   .total-price {
    font-size: 1.2em;
    font-weight: 900;
   }

   .package-total{
    padding: 15px 5px;
   }

  .image-container{
    max-width: 100%;
    width: 100%;
  }

  .image-container img{
    max-width: 400px;
  }

  .product-header-container{
    width: 100%;
  }

  .product-title{
    font-size: 1.2em;
  }

  .product-description-container .product-price,
  .product-description-container .product-price-container .product-price{
    font-size: 1.5em !important;
  }

  .product-cashback{
    font-size: 0.75em;
    padding: 4px 12px;
  }

  .variation{
    padding: 15px 16px;
    font-size: 0.9em;
  }

  .add-to-cart-btn, .buy-now-btn{
    padding: 15px 0;
    font-size: 0.95em;
  }

  .product-spec{
    padding: 16px 0;
    font-size: 0.85em;
  }

  /* Specification section mobile */
  .product-specification-container{
    padding: 30px 12px;
    gap: 25px;
  }

  .appliance-columns-wrapper{
    gap: 10px;
  }

  .appliance-duration{
    padding: 10px;
    gap: 8px;
  }

  .appliance-duration img{
    height: 35px;
    width: 35px;
  }

  .duration-details > div:first-child {
    font-size: 0.75em;
  }

  .duration-time{
    font-size: 0.8em;
  }

  .specification-section-wrapper h2 {
    font-size: 1.4em;
    margin-bottom: 15px;
  }

  .specification-table td {
    padding: 14px 16px;
    font-size: 0.85em;
  }

  .specification-table td:first-child {
    width: 45%;
  }

  .product-description-container .product-action-btn{
    gap: 8px;
    align-items: stretch;
  }

  .product-description-container .product-action-btn form,
  .product-description-container .product-action-btn .buy-now-btn{
    flex: 1 1 0;
    min-width: 0;
  }

  .product-description-container .add-to-cart-btn, 
  .product-description-container .buy-now-btn{
    padding: 14px 0;
    font-size: 0.9em;
    width: 100%;
    height: auto;
    line-height: 1.2;
  }
}

/* SMALL MOBILE VIEW (320px - 480px) */
@media (max-width: 480px) {
  

  .image-container img{
    max-width: 100%;
  }

  .product-title{
    font-size: 1.1em;
  }

  .product-brand{
    font-size: 0.75em;
    letter-spacing: 2px;
  }

  .product-description-container .product-price,
  .product-description-container .product-price-container .product-price{
    font-size: 1.5em !important;
  }

  .product-price-container{
    gap: 10px !important;
  }

  .product-cashback{
    font-size: 0.7em;
    padding: 3px 10px;
  }

  .variation{
    padding: 12px 14px;
    font-size: 0.85em;
  }

  .add-to-cart-btn, .buy-now-btn{
    padding: 14px 0;
    font-size: 0.9em;
  }

  .product-spec{
    font-size: 0.8em;
  }

  .product-spec ul{
    gap: 6px;
    padding-left: 18px;
  }

  /* Specification section small mobile */
  .product-specification-container{
    padding: 25px 10px;
    gap: 20px;
  }

  .appliance-columns-wrapper{
    flex-direction: row;
    gap: 8px;
  }

  .appliance-column {
    width: 100%;
  }

  .appliance-duration{
    padding: 10px 12px;
  }

  .appliance-duration img{
    height: 40px;
    width: 40px;
  }

  .duration-details > div:first-child {
    font-size: 0.8em;
  }

  .duration-time{
    font-size: 0.85em;
  }

  .specification-section-wrapper h2 {
    font-size: 1.2em;
    margin-bottom: 12px;
  }

  .specification-table td {
    padding: 12px 14px;
    font-size: 0.8em;
  }

  .specification-table td:first-child {
    width: 50%;
  }

  .product-description-container .product-action-btn{
    gap: 8px;
    flex-direction: row;
    align-items: stretch;
  }

  .product-description-container .product-action-btn form,
  .product-description-container .product-action-btn .buy-now-btn{
    flex: 1 1 0;
    min-width: 0;
  }

  .product-description-container .add-to-cart-btn, 
  .product-description-container .buy-now-btn{
    padding: 13px 0;
    font-size: 0.85em;
    width: 100%;
    height: auto;
    line-height: 1.2;
  }
}

/* DESKTOP VIEW (1025px+) - all cards visible, no scroll */
@media (min-width: 1025px){
  .product-showcase{
    max-width: 1400px; /* increased to fit all 4 cards */
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

  .product-banner{
    flex: 0 0 auto;
  }

  .product-grid{
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap; /* allow wrapping if needed */
    gap: 18px !important; /* reduced gap to fit all cards */
    align-items: stretch;
    padding: 0;
    justify-content: center; /* center all cards */
    overflow-x: visible; /* no horizontal scroll */
    flex: 1;
  }

  .product-card{
    width: fit-content !important;
    min-width: 240px !important; /* reduced from 260px */
    max-width: 260px !important; /* reduced from 280px */
    height: auto;
    flex: 0 0 auto !important;
    margin: 0;
    position: relative;
    padding: 16px; /* reduced from 18px */
    background-color: #27272718;
    border-radius: 10px;
  }

  /* Show ALL 4 cards on desktop */
  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4){
    display: block !important;
  }

  .product-image{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }

  .product-image img{
    max-width: 200px; /* reduced from 220px */
    width: 100%;
    height: auto;
  }

  .product-info{
    padding: 8px 0;
    gap: 7px;
  }

  .product-name{
    font-size: 0.88em;
    line-height: 1.3;
  }

  .brand{
    font-size: 0.78em;
  }

  .star-ratings{
    font-size: 0.82em;
  }

  .product-price{
    font-size: 1.15em;
  }

  .btn-group{
    display: flex;
    flex-direction: row;
    gap: 7px;
    margin-top: 8px;
  }

  .product-card .btn-group{
    display: flex;
    flex-direction: row;
    gap: 7px;
    margin-top: 8px;
    align-items: stretch;
  }

  .product-card .product-card-add-btn, 
  .product-card .product-card-buy-btn{
    width: 48%;
    padding: 9px 14px;
    font-size: 0.82em;
    height: auto;
    line-height: 1.2;
  }

  .discount-badge{
    top: 10px;
    right: 10px;
    padding: 4px 7px;
    font-size: 0.78em;
  }
}

/* LARGE DESKTOP (1440px+) - more space available */
@media (min-width: 1440px){
  .product-showcase{
    max-width: 1600px; /* even more space */
    gap: 28px;
  }

  .product-grid{
    gap: 24px !important;
  }

  .product-card{
    min-width: 260px !important;
    max-width: 280px !important;
    padding: 18px;
  }

  .product-image img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .product-name{
    font-size: 0.9em;
  }

  .brand{
    font-size: 0.8em;
  }

  .star-ratings{
    font-size: 0.85em;
  }

  .product-price{
    font-size: 1.2em;
  }

  .btn-group{
    gap: 8px;
    margin-top: 10px;
  }

  .product-card .btn-group{
    gap: 8px;
    margin-top: 10px;
    align-items: stretch;
  }

  .product-card .product-card-add-btn, 
  .product-card .product-card-buy-btn{
    padding: 10px 16px;
    font-size: 0.85em;
    height: auto;
    line-height: 1.2;
  }

  .discount-badge{
    padding: 5px 8px;
    font-size: 0.8em;
  }

  .product-card .btn-group{
    gap: 8px;
    margin-top: 10px;
    align-items: stretch;
  }

  .product-card .product-card-add-btn, 
  .product-card .product-card-buy-btn{
    padding: 10px 16px;
    font-size: 0.85em;
    height: auto;
    line-height: 1.2;
  }
}

/* Full width at <=768px */
@media (max-width: 768px){
  
  .product-image-section,
  .product-details-section{
    width:100%;
    max-width:100%;
    padding:0 16px;              /* inner horizontal padding */
    box-sizing:border-box;
  }
}

/* Desktop only: make product image smaller */
@media (min-width: 1025px) and (max-width: 1439px){
  .image-container{
    max-width: 420px;  /* was 500px */
  }
  .image-container img{
    max-width: 420px;  /* match container */
    height: auto;
  }

  /* optional: slightly reduce gap for balance */
  .product-description-container{
    gap: 50px;
  }
}

/* Keep large desktop override if desired */
/* @media (min-width: 1440px){ 
  .image-container{ max-width: 500px; }
  .image-container img{ max-width: 500px; }
} */

/* Tablet: keep side by side at 1024px */
@media (min-width: 769px) and (max-width: 1024px){
 
  
  .product-image-section{ 
    flex: 0 0 40%;              /* 40% width */
    max-width: 400px;
  }
  
  .product-details-section{ 
    flex: 1 1 60%;              /* 60% width */
    max-width: none;
  }
  
  .image-container{
    aspect-ratio: 1 / 1;        /* keep square */
    width: 100%;
  }

  .image-container img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-title{
    font-size: 1.3em;
  }

  .product-price{
    font-size: 1.8em;
  }
}

/* Mobile: stack vertically below 768px */
@media (max-width: 768px){
  .product-description-container{ 
    flex-direction: column;     /* stack on mobile */
    gap: 30px;
    padding: 20px 0px;
    width: 100%;
    max-width: 100%;
  }
  
  .product-image-section,
  .product-details-section{ 
    flex: 0 0 100%; 
    max-width: 100%; 
  }

  .image-container img{
    max-width: 100%;
  }

  .product-title{
    font-size: 1.1em;
  }

  .product-brand{
    font-size: 0.75em;
    letter-spacing: 2px;
  }

  .product-price{
    font-size: 1em;
  }

  .product-price-container{
    gap: 15px;
  }

  .product-cashback{
    font-size: 0.7em;
    padding: 3px 10px;
  }

  .variation{
    padding: 12px 14px;
    font-size: 0.85em;
  }

  .add-to-cart-btn, .buy-now-btn{
    padding: 14px 0;
    font-size: 0.9em;
  }

  .product-spec{
    font-size: 0.8em;
  }

  .product-spec ul{
    gap: 6px;
    padding-left: 18px;
  }

  /* Specification section small mobile */
  .product-specification-container{
    padding: 25px 10px;
    gap: 20px;
  }

  .appliance-columns-wrapper{
    flex-direction: row;
    gap: 8px;
  }

  .appliance-column {
    width: 100%;
  }

  .appliance-duration{
    padding: 10px 12px;
  }

  .appliance-duration img{
    height: 40px;
    width: 40px;
  }

  .duration-details > div:first-child {
    font-size: 0.8em;
  }

  .duration-time{
    font-size: 0.85em;
  }

  .specification-section-wrapper h2 {
    font-size: 1.2em;
    margin-bottom: 12px;
  }

  .specification-table td {
    padding: 12px 14px;
    font-size: 0.8em;
  }

  .specification-table td:first-child {
    width: 50%;
  }

  .product-description-container .product-action-btn{
    gap: 8px;
    flex-direction: row;
    align-items: stretch;
  }

  
}

/* DESKTOP VIEW (1025px+) - all cards visible, no scroll */
@media (min-width: 1025px){
  .product-showcase{
    max-width: 1400px; /* increased to fit all 4 cards */
    margin: 0 auto;
    padding: 20px;
    gap: 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

  .product-banner{
    flex: 0 0 auto;
  }

  .product-grid{
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap; /* allow wrapping if needed */
    gap: 18px !important; /* reduced gap to fit all cards */
    align-items: stretch;
    padding: 0;
    justify-content: center; /* center all cards */
    overflow-x: visible; /* no horizontal scroll */
    flex: 1;
  }

  .product-card{
    width: fit-content !important;
    min-width: 240px !important; /* reduced from 260px */
    max-width: 260px !important; /* reduced from 280px */
    height: auto;
    flex: 0 0 auto !important;
    margin: 0;
    position: relative;
    padding: 16px; /* reduced from 18px */
    background-color: #27272718;
    border-radius: 10px;
  }

  /* Show ALL 4 cards on desktop */
  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4){
    display: block !important;
  }

  .product-image{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
  }

  .product-image img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .product-info{
    padding: 8px 0;
    gap: 7px;
  }

  .product-name{
    font-size: 0.88em;
    line-height: 1.3;
  }

  .brand{
    font-size: 0.78em;
  }

  .star-ratings{
    font-size: 0.82em;
  }

  .product-price{
    font-size: 1.15em;
  }

  .btn-group{
    display: flex;
    flex-direction: row;
    gap: 7px;
    margin-top: 8px;
  }

  .product-card .btn-group{
    display: flex;
    flex-direction: row;
    gap: 7px;
    margin-top: 8px;
    align-items: stretch;
  }

  .product-card .product-card-add-btn, 
  .product-card .product-card-buy-btn{
    width: 48%;
    padding: 9px 14px;
    font-size: 0.82em;
    height: auto;
    line-height: 1.2;
  }

  .discount-badge{
    top: 10px;
    right: 10px;
    padding: 4px 7px;
    font-size: 0.78em;
  }
}

/* LARGE DESKTOP (1440px+) - more space available */
@media (min-width: 1440px){
  .product-showcase{
    max-width: 1600px; /* even more space */
    gap: 28px;
  }

  .product-grid{
    gap: 24px !important;
  }

  .product-card{
    min-width: 260px !important;
    max-width: 280px !important;
    padding: 18px;
  }

  .product-image img{
    max-width: 220px;
  }

  .product-name{
    font-size: 0.9em;
  }

  .brand{
    font-size: 0.8em;
  }

  .star-ratings{
    font-size: 0.85em;
  }

  .product-price{
    font-size: 1.2em;
  }

  .btn-group{
    gap: 8px;
    margin-top: 10px;
  }

  .product-card .btn-group{
    gap: 8px;
    margin-top: 10px;
    align-items: stretch;
  }

  .product-card .product-card-add-btn, 
  .product-card .product-card-buy-btn{
    padding: 10px 16px;
    font-size: 0.85em;
    height: auto;
    line-height: 1.2;
  }

  .discount-badge{
    padding: 5px 8px;
    font-size: 0.8em;
  }

  .product-card .btn-group{
    gap: 8px;
    margin-top: 10px;
    align-items: stretch;
  }

  .product-card .product-card-add-btn, 
  .product-card .product-card-buy-btn{
    padding: 10px 16px;
    font-size: 0.85em;
    height: auto;
    line-height: 1.2;
  }
}

/* -----------------------------------------------------------
Related product section
---------------------------------------------------------- */

.product-header{
  justify-content: center;
  text-align: center;
  padding: 50px 10px 10px 10px;
}

.product-header h2 {
  margin: 0;
}

.product-header i{
  font-size: 0.8em;
}

/* View All Button Styles */
.view-all-btn {
  color: black;
  border: 1.2px solid #000000;
  text-decoration: none;
  padding: 15px 24px;
  border-radius: 25px;
  font-size: 1em;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
  font-family: "montserrat", sans-serif;
  font-weight: 400;
}

.view-all-btn:hover {
  background: #ebebebb4;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(211, 211, 211, 0.3);
}

/* Desktop View All Button Container */
.desktop-view-all-container {
  display: block;
  text-align: center;
  padding: 20px 10px;
  /* margin-top: 10px; */
}

/* Mobile View All Button Container */
.mobile-view-all {
  display: none;
  text-align: center;
  padding: 0 10px;
  /* margin-top: 10px; */
}

.product-showcase{
  display: flex;
  flex-direction: row;
  font-family: "Roboto", sans-serif;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  margin: 0 auto; /* Center the showcase */
  max-width: 1200px; /* Limit max width for better centering */
  width: 100%; /* Ensure full width utilization */
}

.product-banner{
  flex: 0 0 auto; /* Don't grow or shrink */
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-banner img{
  width: 470px;
  border-radius: 10px;
}

.product-grid{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; /* No wrapping on desktop */
  gap: 80px;
  justify-content: center; /* Center the grid */
  align-items: flex-start;
  flex: 1; /* Allow grid to take remaining space */
}

.product-card{
  background-color: #27272718;
  border-radius: 10px;
  padding: 20px;
  width: fit-content;
  min-width: 250px;
  height: fit-content;
  position: relative;
  flex: 0 0 calc(33.333% - 14px);
}

/* Hide the 4th product card on desktop */
.product-card:nth-child(4) {
  display: block;
}

/* Discount badge styling */
.discount-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff0000;
  color: white;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: 600;
  z-index: 5;
}

.product-image{
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 8px;
}

.product-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 250px;
}

.brand{
  font-size: 0.8em;
  color: #666;
}

.star-ratings{
  display: flex;
  gap: 3px;
  align-items: center;
}

.product-price-container .product-price{
  font-size: 2em;
  font-weight: 800;
}

.product-name{
  font-size: 0.9em;
}

.btn-group{
  display: flex;
  gap: 10px;
}

.add-cart-btn{
  background-color: #313131;
  color: #ffffff;
}

.buy-now-btn{
  background-color: #05aa0ab6;
  color: white;
}

.product-info{
  padding: 1px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-info p{
  font-size: 0.9em;
}

@media (max-width: 768px){
  .product-header{
    justify-content: center;
    text-align: center;
    padding: 30px 10px 10px 10px;
  }

  .product-header h2 {
    text-align: center;
  }

  /* Hide desktop view all button container on mobile */
  .desktop-view-all-container {
    display: none;
  }

  /* Show mobile view all button */
  .mobile-view-all {
    display: block;
  }

  .product-showcase{
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
    align-items: center;
    margin: 0 auto; /* Keep centering on mobile */
    max-width: 100%; /* Full width on mobile */
    gap: 0px;
  }

  .product-banner{
    width: 100%;
    margin: 0 0 20px 0;
  }

  .product-banner img{
    width: 100%;
    max-width: 100%;
  }

  .product-grid{
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px !important;
    width: 100%;
    padding: 0;
  }

  .product-card{
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 12px;
    flex: initial !important;
    margin: 0;
  }

  .product-card:nth-child(4) {
    display: block;
  }

  .discount-badge {
    top: 6px;
    right: 6px;
    padding: 3px 5px;
    font-size: 0.65em;
  }

  .product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 6px;
  }

  .product-image img{
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  .star-ratings{
    font-size: 0.65em;
    gap: 2px;
  }

  .product-name{
    font-size: 0.75em;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .brand{
    font-size: 0.65em;
  }

  .product-price{
    font-size: 1em;
    font-weight: 800;
  }

  .product-info{
    padding: 6px 0;
    gap: 5px;
  }

  .product-info p{
    font-size: 0.75em;
  }

  .btn-group{
    flex-direction: column;
    gap: 5px;
    margin-top: 6px;
  }

  .product-card-add-btn, .product-card-buy-btn{
    width: 100%;
    padding: 7px 1px;
    font-size: 0.5em;
    margin-top: 0;
  }

  .view-all-btn {
    width: 99%;
    border-radius: 8px;
  }
}

/* Small mobile (≤480px) - single column */
@media (max-width: 480px){
  .product-header{
    padding: 20px 5px 10px 5px;
  }

  .desktop-view-all-container,
  .mobile-view-all {
    padding: 0 5px;
  }

  .view-all-btn {
    padding: 15px 20px;
    font-size: 0.9em;
    width: 95%;
    border-radius: 8px;
  }

  .product-card .btn-group{
    flex-direction: column;
    gap: 5px;
    margin-top: 6px;
    align-items: stretch;
  }

  .product-card .product-card-add-btn, 
  .product-card .product-card-buy-btn{
    width: 100%;
    padding: 7px 10px;
    font-size: 0.75em;
    margin-top: 0;
    height: auto;
    line-height: 1.2;
  }

  /* ...existing small mobile styles... */
}
/* Make View Product links look like buttons */
a.product-card-buy-btn, a.buy-now-btn {
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

a.product-card-buy-btn:hover, a.buy-now-btn:hover {
  background-color: #048a08;
}

/* Force all product card images to be square across all viewports */
.product-card .product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 6px;
  margin-bottom: 10px;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
}


/* Product Image Gallery Styles */
.image-thumbnails-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 0 35px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.image-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  flex: 1;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.image-thumbnails::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.thumbnail-item {
  min-width: 90px;
  width: 90px;
  height: 90px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f5f5f5;
}

.thumbnail-item:hover {
  border-color: #004a75;
  transform: scale(1.05);
}

.thumbnail-item.active {
  border-color: #007bb8;
  border-width: 3px;
  box-shadow: 0 2px 8px rgba(0,123,184,0.3);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.thumbnail-nav {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.thumbnail-nav:hover {
  background: #004a75;
  color: white;
  border-color: #004a75;
}

.thumbnail-prev {
  left: 0;
}

.thumbnail-next {
  right: 0;
}

.thumbnail-nav i {
  font-size: 14px;
}

/* Responsive adjustments for gallery */
@media (max-width: 1024px) {
  .thumbnail-item {
    min-width: 80px;
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .image-thumbnails-container {
    padding: 0 30px;
  }
  
  .thumbnail-item {
    min-width: 70px;
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .image-thumbnails-container {
    padding: 0 25px;
  }
  
  .thumbnail-item {
    min-width: 60px;
    width: 60px;
    height: 60px;
  }
}

/* ===== Gallery Slider Section ===== */
.gallery-slider-section {
  max-width: 100%;
  margin: 0px auto;
  padding: 20px 40px;
  background-color: #f7f7f7;
  justify-items: center;
  box-sizing: border-box;
}

.gallery-slider-header {
  margin-bottom: 20px;
  padding-left: 40px;
}

.gallery-slider-header h2 {
  font-size: 1.4em;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gallery-slider-header h2 i {
  color: #048a08;
  font-size: 0.9em;
}

.gallery-slider-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 50px;
}

.gallery-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
}

.gallery-slider-track::-webkit-scrollbar {
  display: none;
}

.gallery-slide {
  flex: 0 0 calc(25% - 15px);
  min-width: calc(25% - 15px);
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #f5f5f5;
  border: 2px solid #e0e0e0;
  transition: all 0.3s ease;
  scroll-snap-align: start;
}

.gallery-slide:hover {
  transform: scale(1.03);
  border-color: #048a08;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #048a08;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  color: #048a08;
}

.gallery-nav:hover {
  background: #048a08;
  color: white;
}

.gallery-prev {
  left: 0;
}

.gallery-next {
  right: 0;
}

.gallery-nav i {
  font-size: 18px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: #048a08;
  transform: scale(1.2);
}

/* Lightbox Styles */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
  transition: transform 0.3s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
  color: #ff6b6b;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-nav i {
  font-size: 24px;
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  background: rgba(0,0,0,0.5);
  padding: 8px 20px;
  border-radius: 20px;
}

/* Tablet View - 2 images */
@media (max-width: 1024px) {
  .gallery-slide {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  
  .gallery-slider-container {
    padding: 0 40px;
  }
  
  .gallery-nav {
    width: 40px;
    height: 40px;
  }
}

/* Mobile View - 1 image */
@media (max-width: 768px) {
  .gallery-slider-section {
    padding: 20px 15px;
    margin: 0px auto;
    width: 100%;
  }
  
  .gallery-slider-header {
    padding-left: 10px;
  }
  
  .gallery-slider-header h2 {
    font-size: 1.2em;
  }
  
  .gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
  
  .gallery-slider-container {
    padding: 0 35px;
  }
  
  .gallery-slider-track {
    gap: 10px;
  }
  
  .gallery-nav {
    width: 35px;
    height: 35px;
  }
  
  .gallery-nav i {
    font-size: 14px;
  }
  
  .lightbox-nav {
    width: 45px;
    height: 45px;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .gallery-slider-container {
    padding: 0 30px;
  }
  
  .gallery-nav {
    width: 30px;
    height: 30px;
  }
}

