/*
Theme Name: Minimog Child
Theme URI: http://minimog.thememove.com/
Author: ThemeMove
Author URI: http://thememove.com/
Version: 1.0.0
Template: minimog
Text Domain:  minimog-child
Tags: editor-style, featured-images, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
*/

/* ============================
   KEY SPECS GRID LAYOUT
=============================== */

/* Grid container for key specifications */
.key-specs-block {
    margin: 20px 0;
}

/* Title of the section */
.key-specs-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Key specs grid */
.key-specs-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

/* Individual item in the grid */
.key-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Key specs value styling */
.key-spec-value {
    font-size: 16px;
    font-weight: 600;
    margin-top: 8px;
	text-align: center;
}

/* Key specs label styling */
.key-spec-label {
    font-size: 14px;
    color: #888;
	text-align: center;
}

/* Icon styling */
.key-spec-icon {
    margin-bottom: 10px;
	display: flex;
    justify-content: center;
}
}

.key-spec-icon img {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
}

/* ============================
   RESPONSIVE STYLES
=============================== */

/* Mobile responsiveness */
@media (max-width: 767px) {
    .key-specs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .key-spec-value {
        font-size: 14px;
    }

    .key-spec-label {
        font-size: 12px;
    }

    .key-spec-icon img {
        max-width: 100px;
        max-height: 40px;
    }
}







/* ===== Sticky Side Buttons – Enhanced ===== */
.sticky-side-buttons .side-btn{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;

  background: #1f2a3a; /* default bg */
  color: #fff;

  min-width: 68px;
  padding: 14px 12px;

  font-size: 13px;
  font-weight: 700;
  letter-spacing: .3px;
  text-align: center;
  line-height: 1.25;

  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  transition: all .25s ease;
}

/* LEFT: Buy Now */
.sticky-side-buttons .side-btn-left{
  left: 0;
  background: #57AE44;
  border-radius: 0 14px 14px 0;
}

/* RIGHT: EMI Available */
.sticky-side-buttons .side-btn-right{
  right: 0;
  background: #57AE44;
  padding-right: 18px; /* 👈 extra breathing space */
  border-radius: 14px 0 0 14px;
}

/* Hover state */
.sticky-side-buttons .side-btn:hover{
  background: black;
  color: white;
}

/* Text-specific styling */
.sticky-side-buttons .side-btn-text{
  text-transform: uppercase;
}



/* Mobile refinement */
/* ✅ Mobile refinement (less obstruction) */
@media (max-width: 767px){

	.sticky-side-buttons{
		display: none;
	}
}
