.single-tag {
    display:inline-block;
    background:#e0f7fa;
    color:#006d77;
    padding:4px 10px;
    font-size:12px;
    border-radius:20px;
    margin-bottom:6px;
}

.single-cta-btn {
  display: inline-block;
  background: #1a73e8;
  color: #222;
  padding: 10px 25px;
  border-radius: 4px;
  text-decoration: none;
  margin-top: 10px;
}
.single-about, .single-products-preview, .single-contact {
  padding: 50px 20px;
  text-align: center;
}
.single-products-list {
  max-width: 1400px;
  margin: auto;
  padding: 40px 20px;
}

.single-products-list h2 {
  text-align: center;
  margin-bottom: 35px;
  font-size: 34px;
  font-weight: 700;
  color: #0c0c0c;
}
.single-product-card {
  background: #fafafa;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 15px;
}

.price {
  color: #1a73e8;
  font-weight: bold;
}


/* Product Grid */
.single-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 40px auto;
  max-width: 1200px;
  padding: 0 20px;
}

/* Product Card */
.single-product-card {
  background: #ffffffbb;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.single-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.single-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.single-product-info {
  padding: 15px 18px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.single-product-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.single-product-info p {
  font-size: 14px;
  color: #444;
  margin-bottom: 14px;
  flex: 1;
}

.price {
  font-weight: bold;
  color: #1a73e8;
  display: block;
  margin-bottom: 10px;
}

.single-btn {
  display: inline-block;
  text-align: center;
  background-color: #1a73e8;
  color: #fff;
  width: 100%;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}

.single-btn:hover {
  background-color: transparent;
  color: #1a73e8;
  border: solid 2px;
  border-color: #1a73e8;
}
.single-product-detail {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.single-product-detail-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.single-product-detail-card img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
}

.single-detail-info {
  flex: 1;
  padding: 20px;
}

.single-detail-info h1 {
  margin-top: 0;
  font-size: 1.8rem;
  color: #222;
}

.single-detail-info .price {
  color: #1a73e8;
  font-size: 1.3rem;
  margin: 10px 0;
}
/* ==== PRODUCT DETAIL PAGE ==== */

.single-product-detail {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
}

.single-product-detail-card {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  align-items: stretch;
}

.single-product-detail-card img {
  width: 100%;
  max-width: 450px;
  object-fit: cover;
  flex: 1;
}

.single-detail-info {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.single-detail-info h1 {
  margin: 0 0 20px;
  font-size: 2rem;
  color: #222;
}

.single-detail-info .price {
  color: #1a73e8;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.single-detail-info p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}



/* Responsive adjustments */
@media (max-width: 768px) {
  .single-product-detail-card {
    flex-direction: column;
  }
  .single-detail-info {
    padding: 20px;
  }
  .single-detail-info h1 {
    font-size: 1.6rem;
    text-align: center;
  }

}

.button-row {
  display: flex;
  gap: 12px;
  margin-top: 25px;
  align-items: center;
  flex-wrap: wrap; 
}

.single-detail-info .single-btn-back{
  background-color: #1a73e8;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  border: none;
  transition: 0.2s ease;
  display: inline-block;
  margin: 0;         
  line-height: 1.2;  
}
.single-detail-info .single-btn-buy {
  background: #0e3746;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  border: none;
  transition: 0.2s ease;
  display: inline-block;
  margin: 0;         
  line-height: 1.2;  
}

.single-detail-info .single-btn-back:hover,
.single-detail-info .single-btn-buy:hover {
  background-color: transparent;
  color: #1a73e8;
  border: 2px solid #1a73e8;
}


@media (max-width: 768px) {
  .button-row {
    flex-direction: column;
    align-items: center;
  }

  .button-row a {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }
}



/* ==== PRODUCT IMAGE GALLERY ==== */


.single-gallery-main img {
  width: 100%;
  max-width: 450px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.single-gallery-main img:hover {
  transform: scale(1.02);
}

.single-gallery-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.single-gallery-thumbs img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.2s ease;
}

.single-gallery-thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .single-gallery-thumbs img {
    width: 55px;
    height: 55px;
  }
}
/* ==== CLEAN PRODUCT IMAGE GALLERY ==== */
.list-product-image {
    background: #f4f4f4;      
    padding: 15px;            
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;            
    overflow: hidden;
}

.list-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;      
    border-radius: 8px;
    background: #fff;
    padding: 8px;
}

.single-product-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px;
    position: relative;
}

/* Main image */
.single-product-gallery img.single-gallery-main {
    width: 100%;
    max-width: 450px;
    height: auto;           
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    object-fit: contain;     
    background: #f4f4f4;     
    padding: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.single-product-gallery img.single-gallery-main:hover {
    transform: scale(1.02);
}

/* Thumbnails */
.single-product-gallery .single-gallery-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.single-product-gallery .single-gallery-thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.single-product-gallery .single-gallery-thumbs img.active,
.single-product-gallery .single-gallery-thumbs img:hover {
    opacity: 1;
    transform: scale(1.05);
    border: 2px solid #1a73e8;
}

/* Arrows */
.single-product-gallery button.single-prev,
.single-product-gallery button.single-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 0.2rem 0.5rem;
    cursor: pointer;
    z-index: 2;
    border-radius: 4px;
}

.single-product-gallery button.single-prev:hover,
.single-product-gallery button.single-next:hover {
    background-color: transparent;
    color: #1a73e8;
    border: solid 2px #1a73e8;
}

.single-product-gallery button.single-prev { left: 5px; }
.single-product-gallery button.single-next { right: 5px; }

/* Mobile adjustments */
@media (max-width: 768px) {
    .single-product-gallery .single-gallery-thumbs img {
        width: 55px;
        height: 55px;
    }
}
/* INLINE CONTACT BOX */
.inline-contact-box {
    margin-top: 20px;
    padding: 25px 28px;
    background: #f4f7fb;
    border-radius: 14px;
    border: 1px solid #dce6f5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    animation: fadeIn 0.3s ease;
}

/* Smooth fade animation (optional) */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.inline-contact-box h3 {
    margin-bottom: 18px;
    color: #0c2c4c;
    font-weight: 700;
}

/* INPUTS + TEXTAREA */
.inline-contact-box input,
.inline-contact-box textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;

    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 10px;

    font-size: 15px;
    outline: none;

    transition: all 0.25s ease;
}

/* Hover */
.inline-contact-box input:hover,
.inline-contact-box textarea:hover {
    background: #eef4ff;
}

/* Focus with BLUE GLOW */
.inline-contact-box input:focus,
.inline-contact-box textarea:focus {
    border-color: #1a73e8;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.25);
}

/* Textarea */
.inline-contact-box textarea {
    height: 120px;
    resize: none;
}

/* SUBMIT BUTTON */
.submit-inline-btn {
    background: #1a73e8;
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 10px;
    cursor: pointer;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;

    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    text-align: center;
}

/* Hover */
.submit-inline-btn:hover {
    background: #0c57b3;
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.35);
}

.contact-toggle-btn {
    margin-top: 15px;
    padding: 12px 18px;
    background: #1a73e8;
    border: none;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;

    font-weight: 600;
    transition: 0.2s;
}

.contact-toggle-btn:hover {
    background: #0c57b3;
}
.single-btn-buy {
    background: #1a73e8;
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    transition: 0.2s ease;
}

.single-btn-buy:hover {
    background: #1357ad;
    color: #fff;
}