html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: "Montserrat", "Open Sans", sans-serif !important;
}


  .row {
    margin:0px;
  }

  /* Navbar Styles */  /* Navbar Styles */  /* Navbar Styles */

  nav .logo img {
    width: 447px;
    height: 167px /* Adjust based on your logo size */
}

/* Navbar Styles */
header {
    background-color: white;
    padding: 0px 0px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-top: 5px;
}



.nav-links {
    list-style: none;
    display: flex;
    margin-right: 60px;
    padding: 0;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF5A5F;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FBEBF4;
    min-width: 160px;
    padding: 10px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    padding: 8px 0;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ff5a5f;
    color: white;
}

/* HIDE hamburger*/
@media (min-width: 768px) {
    .hamburger {
        display: none;
         }

  

}



/* Hamburger Icon */
.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #FF007C;
}


/* Mobile Dropdown Menu */
/* Reset link styles */
.hamburger-dropdown ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 10px 15px;
    background: none; /* Remove any background effect */
    border-radius: 0; /* Remove rounded edges */
    font-size: 10px;
    font-family: "Montserrat", "Open Sans"!important;

}

/* Add hover effect for links */
.hamburger-dropdown ul li a:hover {
    background-color: #F5F5F5; /* Light gray hover */
    color: #000; /* Change text color on hover */
    font-weight: bold;
}

/* Remove any default list styling */
.hamburger-dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Ensure dropdown styles are consistent */
.hamburger-dropdown {
    display: none; /* Hidden by default */
    position: absolute;
    top: 50px; /* Adjust based on your menu placement */
    right: 0;
    background-color: #F5F5F5;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 200px; /* Adjust width as needed */
}




.hamburger {
    position: relative;
    z-index: 101; /* Ensure it's above other content */
}

.hamburger-dropdown {
    position: absolute;
    top: 100%; /* Align just below the hamburger menu */
    right: 0;

}

/* Mobile and Tablet Styles */
@media (max-width: 768px) {
    nav {
        margin-right: 20px;
        margin-left: 20px;
    }
    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px 0;
    }
    nav .logo img {
        width: 198.79px;
        height: 70px /* Adjust based on your logo size */
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin-left: 0;
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 18px;
        padding: 10px 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger:hover + .hamburger-dropdown {
        display: block;
    }
}





.content-container header{
    font: #FF007C !important ;
}


.background-container {
    background-image: url('images/fotoprincipal.png'); /* Image path */
    background-size: cover; /* Ensures the image scales to cover the container */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */
    width: 100%; /* Full width */
    min-height: 100vh; /* Full viewport height */
    height: auto; /* Adjust height dynamically */
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
@media (max-width: 768px) {
    .background-container {
        background-size: contain; /* Ensures the entire image is visible */
        min-height: 25vh; /* Adjust height dynamically */
    }
}





/* SEARCHA*/
.headerbusca {
    color: #DD0079;
    font-size: 80px;
    text-align: center;
}



.search-container {
    background: white;
    border-radius: 25px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto 0 5%;
}

.search-group {
    display: flex;
    flex: 1;
    gap: 20px;
    position: relative;
}

/* Add vertical lines between fields */
.search-field:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #e0e0e0;
}

.search-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.search-field label {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 5px;
}

.search-field input {
    border: none;
    font-size: 16px;
    color: #666;
    width: 100%;
    padding: 5px 0;
    outline: none;
}

.search-field input::placeholder {
    color: #999;
}

.search-button {
    background-color: #DD0079;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #cc006f;
}

/* Make it responsive */
@media (max-width: 768px) {


    .content-container {
        background-color: #F7F7F7;
    }
    /* SEARCHA*/
    .headerbusca {
        font-size: 30px;
        color: #FF007C;
        text-align: center;
    }



    .search-container {
        background: white;
        border-radius: 25px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        max-width: 1000px;
        margin: 0 5% 0 5%;
    }

    .search-group {
        display: flex;
        flex: 1;
        gap: 10px;
        position: relative;
    }

    /* Add vertical lines between fields */
    .search-field:not(:last-child)::after {
        content: '';
        position: absolute;
        right: -0px;
        top: 10%;
        height: 80%;
        width: 1px;
        background-color: #e0e0e0;
    }

    .search-field {
        flex: 1;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .search-field label {
        font-weight: bold;
        font-size: 6px;
        margin-bottom: 5px;
    }

    .search-field input {
        border: none;
        font-size: 6px;
        color: #666;
        width: 100%;
        padding: 5px 0;
        outline: none;
    }

    .search-field input::placeholder {
        color: #999;
    }

    .search-button {
        background-color: #DD0079;
        color: white;
        border: none;
        border-radius: 25px;
        padding: 15px 0px;
        font-size: 6px;
        cursor: pointer;
        transition: background-color 0.3s;
        width: 30%;
    }

    .search-button:hover {
        background-color: #cc006f;
    }

     /* SEARCHBAR OFFFF 
    .ccdesktop{
        display: none;
        visibility: hidden;
    }*/
}


.background-container {
  position: relative;
}

@media (max-width: 768px) {

  .content-container.ccdesktop {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 20px; /* space from background */
  }

}

@media (max-width: 768px) {
  .background-container {
    margin-bottom: 520px; /* adjust to height of search box */
  }
}


/* search bar ccs */

 @media (max-width: 768px) {

  #searchFormCelular {
    padding: 16px;
    border-radius: 12px;
  }

  .search-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
   
  }

  .search-field {
    width: 100%;
    border: none !important;
    box-shadow: none !important;
  }

    .search-field label {
    font-size: 14px;
  }

  .search-field select,
  .search-field input {
    font-size: 16px;   /* prevents iOS zoom */
    padding: 8px;
  }

    .search-button {
    width: 90%;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
  }

  
  .search-field::after,
  .search-field::before {
    content: none !important;
  }
}

/* Container */
.containersquares {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four columns */
    gap: 10px; /* Space between items */
    max-width: 1200px; /* Maximum width of the container */
    margin: 0 auto; /* Center the container */
}

/* Small Squares */
.square.small {
    background-size: cover; /* Make the image cover the square */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* No repeating */
    width: 100%;
    max-width: 388px; /* Maximum width for small squares */
    aspect-ratio: 1 / 1; /* Maintain square aspect ratio */
    border-radius: 15px; /* Rounded edges */
}

/* Large Square */
.square.large {
    grid-column: 2 / span 2; /* Center the large square in the second and third columns */
    grid-row: span 2; /* Span across two rows */
    background-size: cover; /* Make the image cover the square */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* No repeating */
    width: 100%;
    max-width: 824px; /* Maximum width for the large square */
    aspect-ratio: 1 / 1; /* Maintain square aspect ratio */
    border-radius: 15px; /* Rounded edges */
}

/* Responsive Design for Tablets */
@media (max-width: 768px) {
    .containersquares {
        grid-template-columns: repeat(2, 1fr); /* Two columns */
        
    }

    .square.large {
        grid-column: 1 / span 2; /* Large square spans both columns */
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    .containersquares {
        display: grid;
        grid-template-columns: minmax(auto, 244px) minmax(auto, 112px);
        grid-template-rows: repeat(2, 112px);
        gap: 10px;
        justify-content: center;
        align-items: center;
        max-width: 100%; /* Ensure container doesn't exceed viewport */
        padding: 0 10px; /* Add some padding on the sides */
        margin: 0 auto; /* Center the container */
        box-sizing: border-box; /* Include padding in width calculation */
    }

    .square.large {
        grid-column: 1 / 2;
        grid-row: 1 / span 2;
        width: 100%; /* Make width relative to container */
        height: 234px;
        border-radius: 15px;
        background-size: cover;
        background-position: center;
    }

    .square.small {
        width: 100%; /* Make width relative to container */
        height: 112px;
        border-radius: 15px;
        background-size: cover;
        background-position: center;
    }

    .square:nth-child(4),
    .square:nth-child(5) {
        display: none;
    }
}


/* Footer Styling */
.footer {
    background-color: #DD0079; /* Footer background color */
    color: white; /* Text color */
    
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Space between left and right sections */
    align-items: center; /* Center items vertically */
    max-width: 100%; /* Optional: Set a max width for the footer content */
    padding-right: 50px;
    padding-left: 50px;
    height: 216px;
    margin: 0 auto; /* Center content horizontally */
}

.footer-logo img {
    max-height: 200px; /* Adjust logo size */
}

.footer-right {
    display: flex;
    align-items: center; /* Center vertically */
    gap: 20px; /* Space between social icons and links */
}

.social-icons i {
    font-size: 30px;
    color: white;
}

.social-icons i:hover {
    transform: scale(1.2); /* Scale up on hover */
}

.footer-links a {
    color: white; /* White text */
    text-decoration: none; /* Remove underline */
    margin-left: 10px;
    font-size: 16px;
    font-family: "Open Sans", sans-serif !important;
    text-transform: uppercase;
}

.footer-links a:hover {
    text-decoration: underline; /* Add underline on hover */
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column; /* Stack content vertically */
        text-align: center; /* Center-align text */
    }

    

    .footer-right {
        flex-direction: column; /* Stack right content vertically */
        gap: 10px;
    }

    
}

@media (max-width: 480px) {
   

    .ultimalinea a{
    font-size: 6px;
    margin-top: 10px!important;
    margin-bottom: 5px!important;
    }

    .footer-right {
        flex-direction: column; /* Stack right content vertically */
        gap: 0;
    }
    .footer-content {
        display: flex;
        justify-content: center; /* Space between left and right sections */
        flex-direction: row;
        align-items: center; /* Center items vertically */
        max-width: 100%; /* Optional: Set a max width for the footer content */
        height: 86px;
        margin: 0 auto; /* Center content horizontally */
        padding-left: 0;
        padding-right: 0;
        background-color: #FF007C;
    }

    .footer-logo img {
        max-height: 44px; /* Adjust logo size */
        padding-right: 60px;
    }

    .social-icons i {
        font-size: 10px;
        color: white;
    }
    
  
    .footer-links a {
        color: white; /* White text */
        text-decoration: none; /* Remove underline */
        margin-left: 10px;
        font-size: 7px;
        font-family: "Open Sans", sans-serif !important;
        text-transform: uppercase;
    }

    .tituloprincipal{
        font-size: 20px!important;
    }

}

.tituloprincipal {
    font-family: "Montserrat", "Open Sans", sans-serif !important;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}


/* Add all other CSS styles from previous response */
/* Add all other CSS styles from previous response */

.products-section {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background: white;
    position: relative;
}

.image-container {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.modal > div {
    background-color: transparent; /* Make sure the inner div is transparent */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80vh;
}

.modal-image {
    max-width: 90vw; /* Limits image width to 90% of viewport width */
    max-height: 70vh; /* Limits image height to 70% of viewport height */
    width: auto;
    height: auto;
    border-radius: 10px;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin: 5px;
    cursor: pointer;
}

.thumbnail.active {
    border: 2px solid #007bff;
}

.discount-badge{
    background-color: #DD0079;
    border:none;
    border-radius:25px;
    color: white;
    width: 219px;
    height: 42;
}

.preview-btn {
    background-color: white;
    color:#DD0079 ;
    border-color:#DD0079 ;
    border-radius:25px;
    border: 1px solid #DD0079 !important; 
    height: 42px;
}

.product-title {
    font-size: 20px;
    font-weight: bold;

}

.product-color {
    font-size: 16px;
    
}

.price {
    color: #DD0079;
    font-size: 15px;
    font-weight: bold;
}

.features {
    font-size: 15px;

}

.buy-btn {
    background-color: #DD0079;
    color: white;
    border:  none;
    border-radius:  25px;
    padding:  15px 40px;
    font-size: 16px;
    height: 42px;
    
}

.centrarbotonescelularescompra {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.info-btn {
    background-color: white;
    color: #DD0079;
    border-color: #DD0079;
    border-radius:  25px;
    padding:  15px 40px;
    font-size: 16px;
    border: 1px solid #DD0079 !important; 
    height: 42px;
}


/* medio del las secundarias */

.secundariastitulo {
    font-family: 'MADE GoodTime Grotesk', sans-serif;
    font-size: 100px; 
    text-align: center;                                           
    background-color:#DD0079 ;
    color: white;
    height: 367px;
    padding-top: 10px;
}

.imagenflecha {
    height: 81.09px;
    width: 81.09px;
}

.textomedio{
    margin-left: 10%;
    margin-right: 10%;
    text-align: justify;
}


@media (max-width: 480px) {

    .secundariastitulo {
        font-family: 'MADE GoodTime Grotesk', sans-serif;
        font-size: 40px; 
        text-align: center;                                           
        background-color:#DD0079 ;
        color: white;
        height: 180px;
        padding-top: 10px;
    }
    
    .imagenflecha {
        height: 40.09px;
        width: 40.09px;
    }
    
    .textomedio{
        margin-left: 10%;
        margin-right: 10%;
        text-align: justify;
    }

    

}

@media (max-width:768px) {
    .imagenflecha {
        height: 40.09px;
        width: 40.09px;
    }
    .secundariastitulo {
        font-family: 'MADE GoodTime Grotesk', sans-serif;
        font-size: 30px; 
        text-align: center;                                           
        background-color:#DD0079 ;
        color: white;
        height: 180px;
        padding-top: 10px;
    }
}



/* FORM CSS CONTACT */ 
.background-containerdos {
    background-image: url('images/contactanos.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  @media (max-width: 768px) {
    .background-containerdos {
      background-size: contain;
      min-height: 25vh;
    }
  }


.form-section {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: left;
}


.form-container {
    flex: 1;
    background: transparent;
    padding: 30px;
    border-radius: 10px;
    margin-left: 50%;
    text-align: center;
    
}

h1 {
    color: #DD0079;
    margin-bottom: 30px;
    font-size: 100px;
    font-family: 'MADE GoodTime Grotesk', sans-serif!important;
    font-weight: lighter;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #DD0079;
    border-radius: 25px;
    font-size: 20px;
    outline: none;
    font-family: "Montserrat", "Open Sans", sans-serif !important;
    background-color: transparent;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    
    background: #DD0079;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 20px;
    transition: background 0.3s;
    font-family: "Montserrat", "Open Sans", sans-serif !important;
}

.btn-submit:hover {
    background: #DD0079;
}

.message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (min-width:768px) {
    .form-containerdos {
        display: none;
    }
}


@media (max-width: 768px) {

    .form-container{
        display: none;
    }

    .form-containerdos {
        text-align: center;
    }

    .form-section {
        display: flex;
        flex-direction: row;
        gap: 40px;
        align-items: left;
    }  
    
    
    h1 {
        margin-top: 30px;
        color: #DD0079;
        margin-bottom: 30px;
        font-size: 40px;
        font-family: 'MADE GoodTime Grotesk', sans-serif!important;
    }
    
    .form-group {
        margin-bottom: 20px;
        
    }
    
    .form-control {
        width: 50%;
        padding: 12px;
        border: 2px solid #DD0079;
        border-radius: 25px;
        font-size: 6px;
        outline: none;
        margin-left: 25%;
        font-family: "Montserrat", "Open Sans", sans-serif !important;
        
    }
    
    textarea.form-control {
        min-height: 120px;
        resize: vertical;
    }
    
    .btn-submit {
        margin-top: 20px;
        background: #DD0079;
        color: white;
        border: none;
        padding: 12px 30px;
        border-radius: 25px;
        cursor: pointer;
        font-size: 6px;
        transition: background 0.3s;
        margin-bottom: 70px;
        font-family: "Montserrat", "Open Sans", sans-serif !important;
    }
    
    .btn-submit:hover {
        background: #DD0079;
    }
    
    .message {
        padding: 10px;
        margin-bottom: 20px;
        border-radius: 5px;
        text-align: center;
        display: none;
    }
}


/* LOGIN - REGISTER */ 

.background-containerlr {
    background-image: url('images/login.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  @media (max-width: 768px) {
    .background-containerlr {
        background-size: contain; /* Ensures the entire image is visible */
        min-height: 25vh; /* Adjust height dynamically */
    }
   .fechaabajogris {
    display: none;
   }

   .content-containerlr{
    display: none;
   }



}
@media (min-width: 768px) {
.content-containerlrdos{
    display: none;
}

}
.fechaabajogris {
    text-align: center;
}

.content-containerlr{
    margin-left: 10%;
}


#personaButton {
    background-image: url('images/persona.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100px; /* Adjust width */
    height: 100px; /* Adjust height */
    border: none; /* Optional: removes border */
    cursor: pointer; /* Adds pointer cursor for clickable feel */
    background-color: #FBEBF4;
    
}

#negocioButton {
    background-image: url('images/empresa.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100px; /* Adjust width */
    height: 100px; /* Adjust height */
    border: none; /* Optional: removes border */
    cursor: pointer; /* Adds pointer cursor for clickable feel */
    background-color: #FBEBF4;
}

.registratelr {
    font-family: "Montserrat", "Open Sans", sans-serif !important;
    font-size: 40px;
    font-weight: bold;
    color: #DD0079;
}

.form-containerlr {
    flex: 1;
    background: transparent;
    padding: 30px;
    margin-left: 20%;
    margin-top: 5%;
    margin-bottom: 5%;
    background-color: #FBEBF4;
    text-align: center;

    
  }

.form-containerlogin {
    flex: 1;
    background: transparent;
    padding: 30px;
    margin-right: 20%;
    margin-top: 5%;
    margin-bottom: 5%;
    background-color: #FFFFFF;
    text-align: center;
}

.loginregisterlr{
    background-color: #F7F7F7;
}

@media (max-width: 768px) {
    .form-containerlr {
        flex: 1;           
        background-color: #FBEBF4;
        text-align: center;
    
        
      }
    
    .form-containerlogin {
        flex: 1;       
       
        background-color: #FFFFFF;
        text-align: center;
        
    }

    .form-containerlr, .form-containerlogin {
        margin: 0; /* Reset margin */

    }
    .alregistrarte {
        font-size: 10px;
    }
    .textomedio {
        font-size: 12px;
    }

    .row {
        display: list-item!important;
    }


    .formlogin {       
        font-size: 10px!important;
        
    }
}


.loginrl {
    font-family: "Montserrat", "Open Sans", sans-serif !important;
    font-size: 40px;
    font-weight: bold;
    color: black;
  }

  .formlogin {
    width: 70%;
    padding: 12px;
    border: 1px solid black;
    border-radius: 15px;
    font-size: 20px;
    outline: none;
    font-family: "Montserrat", "Open Sans", sans-serif !important;
    background-color: transparent;
  }



/* LOGIN - REGISTER PERSONA*/ 

.formregister {
    width: 408px;
    padding: 12px;
    border: 1px solid #DD0079;
    border-radius: 15px;
    font-size: 20px;
    outline: none;
    font-family: "Montserrat", "Open Sans", sans-serif !important;
    background-color: transparent;
    color: #DD0079;
  }

  .registrodepersona {
    text-align: center;
  }



  @media (max-width: 768px) { 

    .registromarginone {
        padding: 0 0 0 35px;
      }
      .registromargintwo {
        padding: 0 0 0 35px;
      }

      .formregister {
        width: 350px;        
        border: 1px solid #DD0079;
        border-radius: 15px;
        font-size: 10px;
        outline: none;
        font-family: "Montserrat", "Open Sans", sans-serif !important;
        background-color: transparent;
        color: #DD0079;
      }

 }


 
/* vendetucelular*/ 

.image-containerthree {
    display: flex;
    justify-content: center; /* Center the image-container horizontally */
    margin-top: 20px; 
}
.image-placeholder {
    width: 100px;
    height: 100px;
    border: 1px dashed #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.image-placeholder img {
    max-width: 100%;
    max-height: 100%;
}


textarea.formregister {
    min-height: 120px;
    resize: vertical;
  }
  textarea.formregister {
    height: auto;
}

.formregister {
    width: 100%;
}


.secundariastitulobusqueda {
    font-family: 'MADE GoodTime Grotesk', sans-serif;
    font-size: 100px; 
    text-align: center;                                           
    background-color:#DD0079 ;
    color: white;    
    padding-top: 10px;
}

.search-containerone {
    background:white;
    border-radius:25px;
    padding:20px;
    display: flex;
    align-items: center;
    gap:20px;
    max-width: 1000px;
    margin: auto;
}

.barradebusqueda {
    text-align: center;
    background-color: #DD0079;
}

.colorrojo {
    background-color: #DD0079;
}

@media (max-width: 768px) {
    .search-containerone {
    background:  white;
    border-radius:  25px;
    padding:  20px;
    display: flex;
    align-items: center;
    gap:  10px;
    max-width: 1000px;
    margin:  0 5% 0 5%;
    }
  }

  @media (max-width: 768px) {
    .secundariastitulobusqueda {
      font-family: 'MADE GoodTime Grotesk', sans-serif;
      font-size: 30px;
      text-align: center;
      color: white;
    }
  }


  /* 3cards shown on desktop*/


  #products-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #F7F7F7;
    padding:50px 100px 50px 100px;
  }
  
  @media (min-width: 992px) {
    #products-section {
      grid-template-columns: repeat(3, 1fr); /* Exactly 3 columns on desktop */
      
    }
  }
  
  @media (max-width: 992px) {
    #products-section {
      padding: 0px;
      
    }
  }


  .product-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card .image-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px; /* or adjust to fit your image proportions */
    overflow: hidden;
    margin-bottom: 15px;
  }
  
  .product-card .image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
  
  
  
  /* Grid for displaying 3 cards per row on desktop */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Force 3 cards per row */
    gap: 20px;
    padding: 10px;
    max-width: 1200px;
    margin:0 auto;
  }
  @media (max-width: 991px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 on tablets */
    }
  }
  
  @media (max-width: 600px) {
    .product-grid {
      grid-template-columns: 1fr; /* 1 on mobile */
    }
  }
  
  /* Card styling */
  #products-section {
    display: flex;
    flex-wrap: wrap;               /* Allow wrapping of cards */
    gap: 20px;                     /* Space between cards */
    justify-content: center;       /* Center cards horizontally */
  }
  .product-card {
    flex: 1 1 30%;                 /* Each card takes 30% of the row */
    max-width: 300px;              /* Limit the card width */
    box-sizing: border-box;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    text-align: center;
    transition: transform 0.3s ease-in-out;
  }
  
  .product-card:hover {
    transform: scale(1.05);        /* Slight zoom effect on hover */
  }
  
  /* Optional: Make the image inside the card responsive */
  .product-card img {
    max-width: 100%;               /* Ensure image scales properly */
    height: auto;
    border-radius: 5px;
  }
  /* Image inside the card */
  .product-image {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
  }
  
  /* Modal image and thumbnails */
  .modal-content {
    max-width: 80vw;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
  }
  
  .thumbnail-container {
    display: flex;                /* Use flexbox to arrange the thumbnails horizontally */
  flex-direction: row !important;          /* Ensure the thumbnails are in a row */
  gap: 10px;                    /* Space between thumbnails */
  overflow-x: auto;             /* Allow horizontal scrolling if there are too many thumbnails */
  padding: 10px 0;              /* Add padding to the top and bottom */
  }
  
  .thumbnail {
    width: 80px;                  /* Set width for thumbnails */
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    border-radius: 5px;
    object-fit: cover;
  }
  
  .thumbnail.active {
    border: 2px solid #007bff; /* Highlight active image */
  }

  .thumbnail:hover {
  transform: scale(1.1);        /* Zoom effect on hover */
}
  
  /* Modal background */
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0; top: 0;
    width: 100%; height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
  }
  
  .close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
  }

 
  @media (max-width: 768px) {
    .product-card {
        width: 80%;    /* Set the card width to 80% on smaller screens */
        margin: 10px auto; /* Auto margin to center the card */
    }

    .product-cards-container {
        display: flex;
        flex-direction: column;  /* Stack cards vertically on mobile */
        align-items: center;     /* Center the cards horizontally */
    }
}

.edicionnombre {
    margin-left: 5%;
    font-weight: bold;
    color: #DD0079;
}



 