/* Breadcrumb */
.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px 0;
    font-size: 14px;
}
.product-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.product-breadcrumb a:hover {
    color: var(--secondary-color);
}
.product-breadcrumb i {
    font-size: 12px;
    color: var(--text-muted);
}
.product-breadcrumb span {
    color: var(--primary-color);
    font-weight: 500;
}


@media (max-width: 900px) {
    .product-view-wrapper { padding: 0 24px 50px 24px; }
    .product-grid { grid-template-columns: 1fr; gap: 32px; }
    .material-item, .finish-item, .wind-item { grid-template-columns: 1fr; text-align: center; }
    .material-swatch, .finish-swatch, .wind-swatch { margin: 0 auto; }
    .select-material-btn, .select-finish-btn, .select-wind-btn { width: 100%; }
}
@media (max-width: 640px) {
    .product-view-wrapper { padding: 0 16px 40px 16px; }
    .product-left h1 { font-size: 24px; }
    .product-gallery { grid-template-columns: repeat(4, 1fr); }
    .popup-content { padding: 24px; }
}

.product-grid{
margin:auto;
display:grid;
grid-template-columns: 1fr 1fr;
gap:40px;
margin-top: 20px;
}

/* LEFT SIDE */

.product-left h1{
font-size:32px;
margin-bottom:10px;
}

.product-rating{
color:#f5a623;
margin-bottom:20px;
}

.product-main-image {
    width: 100%;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    margin-bottom: 16px;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}
.product-gallery img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: border-color 0.2s;
}
.product-gallery img:hover {
    border-color: var(--secondary-color);
}

.product-description {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}


/* RIGHT SIDE */

.product-right{
    background: #fcf8f8;
    padding: 30px;
    border-radius: 24px;
}

.product-right h2{
margin-bottom:0px;
text-align: center;
}

.product-options-preview{
display:flex;
gap:5px;
margin-bottom:20px;
}

.preview-option{
flex: 1;
text-align:center;
font-size: 16px;
display: flex;
align-items: center;
gap: 15px;
padding: 10px;
border: 2px solid var(--button-primary);
border-radius: 6px;
cursor: pointer;
}

.preview-option.active{
border: 2px solid var(--button-secondary);
background: var(--faded-primary);
color: var(--text-light);
}

.preview-option img{
width:40px;
display:block;
margin-bottom:5px;
}

.product-right label{
display:block;
margin-top:15px;
margin-bottom:5px;
font-weight:600;
}

.material-pick {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.material-pick label {
    font-size: 16px;
    font-weight: 600;
}

.product-select,.shape-select,.sizes-select, .Material-select, .finish-select, .wind-select, .variation-select, .quantity-select, .application-select,
.quantity-input{
width:100%;
padding: 14px 16px;
border: 2px solid var(--border-light);
border-radius: 12px;
font-size: 18px;
font-family: "jost", sans-serif !important;
appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c6c6f' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 16px center;
cursor: pointer;
}

.shape-select:focus, .Material-select:focus, .finish-select:focus, 
.application-select:focus, .wind-select:focus, .variation-select:focus, .price-tier-select:focus {
    outline: none;
    border-color: var(--button-primary);
    box-shadow: 0 0 0 3px rgba(17, 155, 51, 0.1);
}

.size-inputs{
display:flex;
gap:10px;
align-items:center;
flex-wrap:wrap;
}

.size-inputs input:focus{
  outline: none;
  border-color: var(--button-primary);
  box-shadow: 0 0 0 3px rgba(17, 155, 51, 0.1);
}

.size-inputs input{
flex:1;
border: 2px solid var(--border-light);
border-radius: 12px;
height: 50px;
padding: 15px;
min-width: 0;      /* Prevents inputs from pushing the container wide */
box-sizing: border-box; /* Ensures padding doesn't increase the width */
font-family: "jost", sans-serif !important;
font-size: 18px;
}

.product-total{
margin-top:20px;
font-size:20px;
}

.upload-artwork{
margin-top:20px;
width:100%;
padding:14px;
background: var(--button-primary);
color: var(--text-dark);
border:none;
border-radius:6px;
font-weight:600;
font-family: "jost", sans-serif !important;
font-size: 16px;
cursor:pointer;
}

/* MOBILE */

@media(max-width:900px){

.product-builder{
padding:20px 5px;
}

.product-container{
grid-template-columns:1fr;
gap:60px;
}

.product-right{
    padding: 10px;
}

.product-gallery img{
width:70px;
}

.preview-option{
display: block;
padding: 10px;
}

.preview-option img{
    /* Center horizontally */
    margin-left: auto;
    margin-right: auto;
}

.size-inputs input {
    flex: 1;           /* Distributes space equally */
    min-width: 0;      /* Prevents inputs from pushing the container wide */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't increase the width */
}

}


.compare-link {
    font-size: 14px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}
.compare-link:hover {
    text-decoration: underline;
}

/* Popup Overlay */
.material-compare-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.material-compare-popup.active {
  display: block;
}

.popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Popup Content */
.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-light);
    border-radius: 24px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 5px;
}

.popup-close:hover {
  color: #333;
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: #333;
  font-size: 24px;
}

/* Material List */
.material-list {
  display: grid;
  gap: 20px;
}

.material-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  align-items: flex-start;
}

.material-item:hover {
  border-color: var(--button-primary);
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.15);
}

.material-item.selected {
  border-color: var(--button-primary);
  background-color: #f0f7ff;
}

.material-swatch {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.material-swatch img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.material-info {
  flex: 1;
}

.material-info h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 18px;
}

.material-description {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.material-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #555;
}

.material-specs li {
  margin-bottom: 5px;
  line-height: 1.4;
}

.material-specs strong {
  color: #333;
}

.select-material-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  background-color: var(--button-primary);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: center;
}

.select-material-btn:hover {
  background-color: var(--button-primary);
}

.select-material-btn.active {
  background-color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
  .material-item {
    flex-direction: column;
  }
  
  .material-swatch {
    width: 100%;
    height: 150px;
  }
  
  .select-material-btn {
    width: 100%;
  }
  
  .popup-content {
    padding: 20px;
    width: 95%;
  }
}

.finish-compare-link {
  font-size: 14px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.finish-compare-link:hover {
  text-decoration: underline;
}

/* Popup Overlay */
.finish-compare-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.finish-compare-popup.active {
  display: block;
}

.finish-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Popup Content */
.finish-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  padding: 30px;
  max-width: 900px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.finish-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 5px;
}

.finish-popup-close:hover {
  color: #333;
}

.finish-popup-content h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: #333;
  font-size: 24px;
}

/* finish List */
.finish-list {
  display: grid;
  gap: 20px;
}

.finish-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  align-items: flex-start;
}

.finish-item:hover {
  border-color: var(--button-primary);
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.15);
}

.finish-item.selected {
  border-color: var(--button-primary);
  background-color: #f0f7ff;
}

.finish-swatch {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.finish-swatch img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.finish-info {
  flex: 1;
}

.finish-info h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 18px;
}

.finish-description {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.finish-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #555;
}

.finish-specs li {
  margin-bottom: 5px;
  line-height: 1.4;
}

.finish-specs strong {
  color: #333;
}

.select-finish-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  background-color: var(--button-primary);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: center;
}

.select-finish-btn:hover {
  background-color: var(--button-primary);
}

.select-finish-btn.active {
  background-color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
  .finish-item {
    flex-direction: column;
  }
  
  .finish-swatch {
    width: 100%;
    height: 150px;
  }
  
  .select-finish-btn {
    width: 100%;
  }
  
  .finish-popup-content {
    padding: 20px;
    width: 95%;
  }
}



/* Application method*/
.application-method-compare-link {
  font-size: 14px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.application-method-compare-link:hover {
  text-decoration: underline;
}

/* application Popup Overlay */
.application-method-compare-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.application-method-compare-popup.active {
  display: block;
}

.application-method-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* aaplication Popup Content */
.application-method-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  padding: 30px;
  max-width: 900px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.application-method-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 5px;
}

.application-method-popup-close:hover {
  color: #333;
}

.application-method-popup-content h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: #333;
  font-size: 24px;
}

/* application List */
.application-method-list {
  display: grid;
  gap: 20px;
}

.application-method-description {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .application-method-popup-content {
    padding: 20px;
    width: 95%;
  }
}




/* Wind Compare*/
.wind-compare-link {
  font-size: 14px;
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
}

.wind-compare-link:hover {
  text-decoration: overline;
}

/* Popup Overlay */
.wind-compare-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.wind-compare-popup.active {
  display: block;
}

.wind-popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

/* Popup Content */
.wind-popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 8px;
  padding: 30px;
  max-width: 900px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.wind-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  line-height: 1;
  padding: 5px;
}

.wind-popup-close:hover {
  color: #333;
}

.wind-popup-content h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: #333;
  font-size: 24px;
}

/* wind List */
.wind-list {
  display: grid;
  gap: 20px;
}

.wind-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
  align-items: flex-start;
}

.wind-item:hover {
  border-color: var(--button-primary);
  box-shadow: 0 2px 8px rgba(0, 102, 204, 0.15);
}

.wind-item.selected {
  border-color: var(--button-primary);
  background-color: #f0f7ff;
}

.wind-swatch {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wind-swatch img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.wind-info {
  flex: 1;
}

.wind-info h3 {
  margin: 0 0 10px 0;
  color: #333;
  font-size: 18px;
}

.wind-description {
  margin: 0 0 15px 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.wind-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: #555;
}

.wind-specs li {
  margin-bottom: 5px;
  line-height: 1.4;
}

.wind-specs strong {
  color: #333;
}

.select-wind-btn {
  flex-shrink: 0;
  padding: 10px 20px;
  background-color: var(--button-primary);
  color: var(--text-dark);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  align-self: center;
}

.select-wind-btn:hover {
  background-color: var(--button-primary);
}

.select-wind-btn.active {
  background-color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
  .wind-item {
    flex-direction: column;
  }
  
  .wind-swatch {
    width: 100%;
    height: 150px;
  }
  
  .select-wind-btn {
    width: 100%;
  }
  
  .wind-popup-content {
    padding: 20px;
    width: 95%;
  }
}


.btn-continue {
    width: 100%; padding: 16px 32px; background: var(--button-primary); color: white;
    border: none; border-radius: 48px; font-family: var(--main-font); font-weight: 600;
    font-size: 18px; cursor: pointer; transition: all 0.3s ease; margin-top: 24px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
}
.btn-continue:hover { 
    background: #0d852b; 
    transform: translateY(-2px); 
    box-shadow: var(--shadow-md); 
}

/* Quantity & Price */
.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.price-tier-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--main-font);
    font-size: 18px;
    background: var(--bg-light);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c6c6f' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}
.price-tier-select:focus {
    outline: none;
    border-color: var(--button-primary);
    box-shadow: 0 0 0 3px rgba(17, 155, 51, 0.1);
}

.customQuantity {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-family: var(--main-font);
    font-size: 18px;
}
.customQuantity:focus {
    outline: none;
    border-color: var(--button-primary);
    box-shadow: 0 0 0 3px rgba(17, 155, 51, 0.1);
}

/* Price Display */
.price-display {
    background: var(--bg-muted);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
}
.pd-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}
.pd-row:last-child {
    border-bottom: none;
}
.pd-row.pd-total-row {
    font-weight: 700;
    font-size: 1.2em;
    color: var(--secondary-color);
    border-top: 2px solid var(--border-light);
    padding-top: 14px;
    margin-top: 4px;
}
.pd-label {
    color: var(--text-muted);
}


/* Add to Cart Button */
.add-to-cart-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.add-to-cart-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--button-primary);
    color: white;
    border: none;
    border-radius: 48px;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.add-to-cart-btn:hover {
    background: #0d852b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.add-to-cart-btn:active {
    transform: scale(0.98);
}

.add-to-cart-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.add-to-cart-btn i {
    font-size: 18px;
}

.cart-message {
    text-align: center;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    animation: fadeSlideIn 0.3s ease;
}

.cart-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.cart-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Toast */
.product-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: #1a1a1a;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    z-index: 1001;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
}



/* process */
.process-section{
    padding:70px 20px;
    background:#f8f8f8;
}

.process-container{
    max-width:1100px;
    margin:auto;
}

.process-title{
    text-align:center;
    font-size:32px;
    margin-bottom:50px;
}

.process-steps{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.process-step{
    background:#fff;
    padding:35px 25px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.06);
}

.step-number{
    width:50px;
    height:50px;
    margin:auto;
    margin-bottom:15px;
    border-radius:50%;
    background:#000;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    font-size:20px;
}

.process-step h3{
    margin-bottom:10px;
    font-size:20px;
}

.process-step p{
    font-size:15px;
    line-height:1.6;
}

/* Mobile */

@media (max-width:768px){
    .process-steps{
        grid-template-columns:1fr;
    }
}



.comparison-section{
margin:auto;
padding:40px 0px;
}

.comparison-title{
    text-align:center;
    font-size:32px;
    margin-bottom:10px;
}

.comparison-section p{
    text-align:center;
    font-size:18px;
    color:#555;
    margin-bottom:50px;
}

.tabs{
display:flex;
gap:10px;
margin-bottom:20px;
justify-content: center;
}

.tab-btn{
padding:10px 20px;
border:none;
background: #eee;
cursor:pointer;
font-weight:600;
border-radius:6px;
}

.tab-btn.active{
background: var(--button-primary);
color: #fff;
}

.tab-content{
display:none;
}

.tab-content.active{
display:block;
}

.comparison-table{
width:100%;
border-collapse:collapse;
background: #fff;
}

.comparison-table th,
.comparison-table td{
padding:14px;
border:1px solid #ddd;
text-align:center;
font-size:14px;
}

.comparison-table th{
background: #f5f5f5;
font-weight:600;
}

.fa-circle-check{
color: #2ecc71;
}

@media (max-width:768px){

.comparison-table{
font-size:12px;
}

.comparison-table th,
.comparison-table td{
padding:10px;
}

}


/* Reviews*/
.reviews-section{
    background:#f9f9f9;
    padding:60px 20px;
}

.reviews-container{
    max-width:1100px;
    margin:auto;
}

.reviews-header{
    text-align:center;
    margin-bottom:40px;
}

.reviews-header h2{
    font-size:30px;
    margin-bottom:10px;
}

.overall-rating{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:5px;
}

.rating-number{
    font-size:40px;
    font-weight:bold;
}

.stars{
    color:#f5a623;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.review-card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.review-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.review-text{
    font-size:16px;
    line-height:1.6;
    margin-bottom:10px;
}

.review-date{
    font-size:12px;
    color:#777;
}

/* Mobile */
@media (max-width:768px){
    .reviews-grid{
        grid-template-columns:1fr;
    }
}
