:root {
  --background: #000000;
  --primary-color: #000000; /* Default Blue */
  --secondary-color: #6c757d; /* Default Gray */
  --accent-color: #28a745;   /* Default Green */
  --bg-light: #f8f9fa;
  --text-dark: #212529;
  --font-family: sans-serif;
  --font-size: 1rem;
}
/* General Body Styles */
body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Header and Navigation */
.header {    
  color: #fff;
  padding: 1rem 0;
  display: flex;  
  align-items: center;
  justify-content: space-around;
  flex-direction: column;
}

h1{
  font-size: 3rem;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: bold;
}

/* Main Content Area */
main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.h2 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
}

/* Hero Section (Home Page) */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #e2f0cb; /* Light green background */
    border-radius: 8px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #0056b3;
}
/* PRODUCT CARD */

.border.border-gray-200.rounded-lg.shadow-lg {
  display: flex;
  flex-direction: column;

  position: relative;
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid rgba(13, 69, 138, 0.1);
  box-shadow: 0 10px 26px rgba(13, 69, 138, 0.12);
  overflow: hidden;
  transition: all 0.35s ease;
}

.border.border-gray-200.rounded-lg.shadow-lg:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(13, 69, 138, 0.18);
}
.border.border-gray-200.rounded-lg.shadow-lg img {
  background-color: #f8fafc;
}
.border.border-gray-200.rounded-lg.shadow-lg:hover img {
  transform: scale(1.06);
}

.border.border-gray-200.rounded-lg.shadow-lg .p-6 {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1rem 1.2rem 1.3rem;
}

.border.border-gray-200.rounded-lg.shadow-lg h4 {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: #0d458a;
  margin-bottom: 0.35rem;
}

.border.border-gray-200.rounded-lg.shadow-lg p {
  font-family: "Manrope", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(13, 69, 138, 0.95);
  margin-bottom: 0.8rem;
}

.border.border-gray-200.rounded-lg.shadow-lg .btn-primary {
  margin-top: auto;

  width: 100%;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: "Nunito", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  border-radius: 999px;
  border: 1.5px solid rgba(13, 69, 138, 0.7);
  background-color: #ffffff;
  color: rgba(13, 69, 138, 0.95);

  transition: all 0.3s ease;
}

.border.border-gray-200.rounded-lg.shadow-lg .btn-primary:hover {
  background-color: rgba(13, 69, 138, 0.95);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(13, 69, 138, 0.35);
  transform: translateY(-1px);
}
.border.border-gray-200.rounded-lg.shadow-lg h4 {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: #64748b;
  margin-bottom: 0.35rem;
}

.border.border-gray-200.rounded-lg.shadow-lg p {
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: rgba(13, 69, 138, 0.95);
  margin-bottom: 0.8rem;
  white-space: nowrap;
}
/*RESPONSIVE PRODUCT CARD*/
@media (max-width: 640px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.75rem;
  }

  .border.border-gray-200.rounded-lg.shadow-lg img {
    background-color: transparent;
    height: 215px;
    padding: 0.6rem;
  }

  .border.border-gray-200.rounded-lg.shadow-lg h4 {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .border.border-gray-200.rounded-lg.shadow-lg p {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
  }

  .border.border-gray-200.rounded-lg.shadow-lg .btn-primary {
    height: 40px;
    font-size: 0.7rem;
    letter-spacing: 0.4px;
  }
}

/* TITLE*/

h3.text-3xl {
  font-family: "Manrope", sans-serif;
  position: relative;
  display: inline-block;
  padding-bottom: 0.7rem;
}

h3.text-3xl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(13, 69, 138, 0.35);
  border-radius: 2px;
}
.add-to-cart {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #218838;
}

/* Cart Page Specifics */
.cart-items {
    margin-bottom: 30px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 20px;
}

.item-details {
    flex-grow: 1;
}

.item-details h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
}

.item-details p {
    margin: 0 0 5px 0;
    color: #555;
}

.remove-item {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.remove-item:hover {
    background-color: #c82333;
}

.cart-summary {
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.cart-summary h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.checkout-btn {
    background-color: #007bff;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    text-decoration: none;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    margin-top: 40px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease-in-out;
  display: inline-block; /* Ensure padding applies correctly */
  text-decoration: none;
  font-weight: 500;
}

.header-image {
  width: 100px;
  min-width: 100px;
}

@media only screen and (min-width: 600px) {
  .header-image {
    width: 130px;
  }

  .header {    
    color: #000;
    padding: 1rem 0;
    display: flex;    
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
  }
}
/*BUY WHATSAPP BUTTON*/
.whatsapp-buy-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.whatsapp-buy-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  background-color: #ffffff;
  color: #25D366;
  font-weight: 900;
  letter-spacing: 0.4px;
  padding: 1rem 1.4rem;
  border-radius: 18px;
  border: 1.5px solid rgba(37, 211, 102, 0.6);
  cursor: pointer;
  transition: all 0.35s ease;
  text-align: center;
}

.whatsapp-buy-btn .subtext {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.45px;
  color: rgba(37, 211, 102, 0.75);
}

.whatsapp-buy-btn:hover {
  background-color: #25D366;
  color: #ffffff;
  border-color: #25D366;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
  transform: translateY(-1px);
}

.whatsapp-buy-btn:hover .subtext {
  color: rgba(255, 255, 255, 0.9);
}

.whatsapp-buy-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}

/*ASK WHATSAPP BUTTON*/
.whatsapp-ask-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: rgba(37, 211, 102, 0.06);
  color: #25D366;
  font-weight: 600;
  letter-spacing: 0.35px;
  padding: 0.9rem 1.4rem;
  border-radius: 18px;
  border: 1.5px solid rgba(37, 211, 102, 0.45);
  cursor: pointer;
  transition: all 0.35s ease;
  text-align: center;
}

.whatsapp-ask-btn:hover {
  background-color: #25D366;
  color: #ffffff;
  border-color: #25D366;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.25);
  transform: translateY(-1px);
}

.whatsapp-ask-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.2);
}
/*FOOTER STYLE*/
.site-footer {
  position: relative;
background: linear-gradient(
    180deg,
    rgba(13, 69, 138, 0.08) 0%,
    rgba(13, 69, 138, 0.04) 45%,
    rgba(255,255,255,0.9) 100%
  );
  color: #334155;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin-top:10px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 70%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59,130,246,0.25),
    transparent
  );
  transform: translateX(-50%);
}
.site-footer .footer-container {
  max-width: 1240px;
  margin: auto;
  padding: 3.5rem 1.75rem 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
}
.site-footer .footer-logo {
  height: 90px;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}
.site-footer .footer-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 360px;
}
.site-footer .footer-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1e293b;
  margin-bottom: 1.2rem;
  position: relative;
}

.site-footer .footer-title::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(59,130,246,0.35);
  margin-top: 0.5rem;
  border-radius: 2px;
}

.site-footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li {
  margin-bottom: 0.6rem;
}

.site-footer .footer-links a {
  font-size: 0.9rem;
  color: #475569;
  text-decoration: none;
  position: relative;
  transition: color .3s ease;
}

.site-footer .footer-links a:hover {
  color: #2563eb;
}
.site-footer .footer-social {
  display: flex;
  gap: 0.75rem;
}

.site-footer .footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(59,130,246,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  text-decoration: none;
  transition:
    background .3s ease,
    transform .3s ease;
}

.site-footer .footer-social a:hover {
  background: rgba(59,130,246,0.15);
  transform: translateY(-2px);
}
.site-footer .footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(59,130,246,0.25),
    transparent
  );
}
.site-footer .footer-bottom {
  padding: 1.25rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  background: rgba(255,255,255,0.6);
}
@media (max-width: 1024px) {
  .site-footer .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .site-footer .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .footer-text {
    margin: auto;
  }

  .site-footer .footer-social {
    justify-content: center;
  }

  .site-footer .footer-title::after {
    margin-left: auto;
    margin-right: auto;
  }
}
/*NAVBAR STYLE*/
nav {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(13, 69, 138, 0.06) 0%,
    rgba(13, 69, 138, 0.03) 55%,
    rgba(255, 255, 255, 0.95) 100%
  );
  font-family: 'Inter', system-ui, -apple-system, 		  BlinkMacSystemFont, sans-serif;
  margin-bottom: 5px;
}
nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(13, 69, 138, 0.14),
    transparent
  );
}
nav a {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0e2e5f;
}
nav a:hover {
  color: #0d458a;
  background-color: rgba(13, 69, 138, 0.04);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(4px);
  border-radius: 1px;
}
nav ul ul {
  background: #ffffff;
  border: 1px solid rgba(13, 69, 138, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(4px);
}
nav ul ul a:hover {
  background-color: rgba(13, 69, 138, 0.06);
}
nav ul ul a {
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 500;
}
nav svg {
  color: rgba(13, 69, 138, 0.6);
}
/*RESPONSIVE NAVBAR*/
nav .fixed.inset-0 {
  background-color: rgba(13, 69, 138, 0.35) !important;
  backdrop-filter: blur(2px);
}

nav .fixed.top-0.right-0 {
  background: #ffffff;
  border-left: 1px solid rgba(13, 69, 138, 0.12);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}
nav .fixed.top-0.right-0 a {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #0e2e5f;
}
nav .fixed.top-0.right-0 a:hover {
  background-color: rgba(13, 69, 138, 0.06);
  color: #0d458a;
}
nav .border-t {
  border-color: rgba(13, 69, 138, 0.1);
}
.shadow-md {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06) !important;
}
.hover\:bg-gray-100:hover {
  background-color: rgba(13, 69, 138, 0.05) !important;
}
/*HEADER STYLE*/
:root {
  --brand-blue: 13, 69, 138;
  --brand-blue-main: #0d458a;
  --brand-border: rgba(13, 69, 138, 0.12);
  --brand-soft: rgba(13, 69, 138, 0.06);
  --brand-hover: rgba(13, 69, 138, 0.12);
  --text-primary: #1f1f1f;
  --transition-soft: 260ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header {
  background: #ffffff !important;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--brand-border);
}

.header-image {
  object-fit: contain;
}

.header input[type="text"] {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.25px;
  color: var(--text-primary);

  border-radius: 999px;
  border: 1px solid var(--brand-border);
  background-color: #ffffff;

  transition: border-color var(--transition-soft),
              box-shadow var(--transition-soft);
}

.header input[type="text"]:focus {
  border-color: rgba(13, 69, 138, 0.35);
  box-shadow: 0 0 0 3px rgba(13, 69, 138, 0.08);
}

.header svg {
  color: rgba(13, 69, 138, 0.55);
}
form.relative > div.absolute {
  left: 0;
  padding-left: 0.75rem;
  height: 100%;
  display: flex;
  align-items: center;
}
form.relative input {
  padding-left: 2.75rem;
}
form.relative svg {
  width: 1.1rem;
  height: 1.1rem;
  color: rgba(13, 69, 138, 0.55);
}
.header a[href="/carro"] {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  color: rgba(13, 69, 138, 0.85);
  transition: color var(--transition-soft);
}

.header a[href="/carro"]:hover {
  color: var(--brand-blue-main);
}
.header .relative span {
  top: -0.4rem;
  left: auto;
  right: -0.4rem;
  transform: none;
}
.header a svg {
  color: rgba(13, 69, 138, 0.85);
  transition: color 0.25s ease, transform 0.25s ease;
}
.header a:hover svg {
  color: rgba(13, 69, 138, 1);
  transform: scale(1.05);
}
.header form input {
  border-radius: 18px;
  border-color: rgba(13, 69, 138, 0.25);
}

.header form input:focus {
  border-color: rgba(13, 69, 138, 0.6);
  box-shadow: 0 0 0 3px rgba(13, 69, 138, 0.12);
}

.header form svg {
  color: rgba(13, 69, 138, 0.5);
}
.header > div:last-child {
  gap: 0.75rem;
}
/*REDES SOCIALES*/
.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: var(--brand-soft);
  color: var(--brand-blue-main);

  border: 1px solid var(--brand-border);
  transition: background-color var(--transition-soft),
              transform var(--transition-soft);
}

.social-links a:hover {
  background-color: var(--brand-hover);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .header {
    padding: 1.25rem 0;
  }

  .social-links {
    justify-content: center;
  }
}
/* PRODUCT FILTER*/
.p-4.rounded-lg.shadow-md.mb-6{
  background-color: rgba(13, 69, 138, 0.035);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(13, 69, 138, 0.08);
}

label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(13, 69, 138, 0.75);
}

input[type="text"],
input[type="number"] {
  background-color: #ffffff;
  border: 1px solid rgba(13, 69, 138, 0.25);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: #1f2937;
  transition: all 0.25s ease;
}

input::placeholder {
  color: #9ca3af;
}

input:focus {
  outline: none;
  border-color: rgba(13, 69, 138, 0.65);
  box-shadow: 0 0 0 3px rgba(13, 69, 138, 0.15);
}

.grid {
  row-gap: 1.75rem;
}
/*BOTONES*/
.btn-primary {
  margin-top: 2.5rem;
  width: 100%;
  background-color: #ffffff;
  color: rgba(13, 69, 138, 0.95);
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 1rem 1.4rem;
  border-radius: 18px;
  border: 1.5px solid rgba(13, 69, 138, 0.55);
  cursor: pointer;
  transition: all 0.35s ease;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-primary:hover {
  background-color: rgba(13, 69, 138, 0.95);
  color: #ffffff;
  border-color: rgba(13, 69, 138, 0.95);
  box-shadow: 0 12px 28px rgba(13, 69, 138, 0.25);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(13, 69, 138, 0.2);
}
/*TITLE*/
h3.text-3xl.font-bold.mb-8 {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(13, 69, 138, 0.95);
  margin-bottom: 2.25rem;
  padding-bottom: 0.9rem;
  line-height: 1.25;

  display: inline-block;
  width: fit-content;
  max-width: 100%;

  background-image: linear-gradient(
    90deg,
    rgba(13, 69, 138, 0.65),
    rgba(13, 69, 138, 0.15)
  );
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 2px;

  animation: titleUnderline 0.6s ease forwards;
}

@keyframes titleUnderline {
  from {
    background-size: 0% 2px;
  }
  to {
    background-size: 100% 2px;
  }
}
/*PRODUCT DETAIL*/
section .shadow-inner {
  box-shadow: inset 0 0 0 1px rgba(13, 69, 138, 0.06);
  border-radius: 18px;
}

section h1 {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.25rem;
}

section p.text-3xl {
  font-family: "Manrope", sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #0d458a;
  letter-spacing: -0.4px;
  margin-bottom: 0.6rem;
}

section .lg\:col-span-1.flex.flex-col.gap-4 {
  gap: 0.75rem;
}

section label {
  font-size: 0.9rem;
  color: #475569;
}

section button.rounded-lg.border-2 {
  min-width: 44px;
  height: 40px;
  border-radius: 10px;
  font-size: 0.8rem;
}

section .text-green-600 {
  font-size: 0.9rem;
  font-weight: 600;
}

section h2 {
  font-family: "Manrope", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

section .mt-8 {
  margin-top: 1.2rem;
}

section .text-gray-700 {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
}

section ul {
  margin-top: 0.6rem;
  padding-left: 1.1rem;
}

section ul li {
  margin-bottom: 0.35rem;
}

section ul strong {
  color: #0d458a;
  font-weight: 600;
}
/* RESPONSIVE PRODUCT DETAIL */
@media (max-width: 768px) {
  section .grid {
    grid-template-columns: 1fr !important;
    gap: 1.2rem !important;
  }

  section .lg\:col-span-1 {
    grid-column: span 1 / span 1 !important;
  }

  /*PRODUCT IMAGE*/
  section img {
    max-height: 230px;
    object-fit: contain;
    margin: 0 auto;
  }

  /* TITLE AND PRICE*/
  section h1 {
    font-size: 1.3rem;
    line-height: 1.35;
    margin-top: 0.5rem;
  }

  section p.text-3xl {
    font-size: 1.45rem;
    margin-bottom: 0.6rem;
  }

  /* VARIANT*/
  section .flex.flex-wrap.gap-2 {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.5rem;
  }

  section button.rounded-lg.border-2 {
    padding: 0.45rem 0;
    font-size: 0.7rem;
    border-radius: 10px;
    text-align: center;
  }

  /* QUANTITY*/
  section .flex.items-center.gap-4 {
    justify-content: center;
    gap: 0.8rem;
  }

  section .flex.items-center.gap-4 span {
    font-size: 0.95rem;
  }

  section .flex.items-center.gap-4 button {
    padding: 0.4rem 0.7rem;
  }

  /* CART BUTTON*/
  section .btn-primary {
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    border-radius: 14px;
  }

  /*WHATSAPP*/
  .whatsapp-buy-btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 12px;
    gap: 0.15rem;
  }

  .whatsapp-buy-btn .subtext {
    font-size: 0.55rem;
  }

  .whatsapp-ask-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.75rem;
    border-radius: 12px;
  }
}
/* ===============================
   PRODUCT DESCRIPTION – CARD STYLE
   =============================== */

section .mt-8 {
  margin-top: 1.2rem !important;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(
    180deg,
    rgba(13, 69, 138, 0.05),
    rgba(255, 255, 255, 0.9)
  );
  border-radius: 16px;
  border: 1px solid rgba(13, 69, 138, 0.12);
}

/* Título */
section .mt-8 h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d458a;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(13, 69, 138, 0.15);
}

/* Texto */
section .mt-8 .text-gray-700 {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
}

/* Lista */
section .mt-8 ul {
  margin-top: 0.6rem;
  padding-left: 1.1rem;
}

section .mt-8 ul li {
  margin-bottom: 0.35rem;
}

section .mt-8 ul strong {
  color: #0d458a;
  font-weight: 600;
}

/* ===============================
   MOBILE IMPROVEMENT
   =============================== */
@media (max-width: 768px) {

  section .mt-8 {
    margin-top: 1rem !important;
    padding: 0.9rem 1rem;
    border-radius: 14px;
  }

  section .mt-8 h2 {
    font-size: 1rem;
  }

  section .mt-8 .text-gray-700 {
    font-size: 0.85rem;
    line-height: 1.55;
  }
}