* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar h1 {
    font-family: 'Rancho', cursive;
    font-size: 2rem;
    color: #d84570;
}

.navbar-links {
    display: flex;
    column-gap: 20px;
}

.navbar-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    position: relative;
    transition: color 0.3s ease;
}
.navbar-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: #d84570;
    transition: width 0.3s ease;
}
.navbar-links a:hover {
    color: #d84570;
}
.navbar-links a:hover::after {
    width: 100%;
}

.navbar-menu-toggle {
    display: none;
}

/* ===================== */
/* Side Navbar */
/* ===================== */
.side-navbar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background: #fff;
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.15);
  transition: left 0.4s ease;
  z-index: 1100;
  display: flex;
  flex-direction: column;
}
.side-navbar.open {
  left: 0;
  animation: slideIn 0.4s ease forwards;
}
@keyframes slideIn {
  from { left: -250px; }
  to { left: 0; }
}
@keyframes slideOut {
  from { left: 0; }
  to { left: -250px; }
}

.side-navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.side-navbar-header h2 {
  font-family: 'Rancho', cursive;
  color: #d84570;
  font-size: 1.8rem;
}

.side-navbar-close {
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
}
.side-navbar-close:hover {
  transform: rotate(90deg);
  color: #d84570;
}

.side-navbar-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.side-navbar-link a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease, padding-left 0.3s ease;
}
.side-navbar-link a:hover {
  color: #d84570;
  padding-left: 8px;
}

/* Overlay */
#sidenav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#sidenav-overlay.show {
  opacity: 1;
}

/* ===================== */
/* Header Section */
/* ===================== */
.header-section {
    position: relative;
    text-align: center;
    color: white;
    padding: 50px 20px;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
}
.header-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: -1;
}
.header-text h2 {
    font-family: 'Rancho', cursive;
    font-size: 4rem;
    margin-bottom: 20px;
}
.header-text p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}
.shop-button {
    padding: 12px 24px;
    background-color: #d84570;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}
.shop-button:hover {
    background-color: #c03d61;
}

/* ===================== */
/* Sections */
/* ===================== */
.service-section {
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
}
.service-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}
.service-container > div {
    text-align: center;
    max-width: 300px;
    padding: 20px;
}

.new-arrival, .most-wanted {
    padding: 40px 20px;
    text-align: center;
    margin: 20px;
}
.new-arrival h2, .most-wanted h2 {
    font-family: 'Rancho', cursive;
    font-size: 3rem;
    margin-bottom: 30px;
}
.new-arrival-container, .most-wanted-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.new-arrival-box, .most-wanted-box {
    text-align: center;
    flex-basis: 30%;
    max-width: 350px;
    position: relative;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px;
    
}
.new-arrival-box img, .most-wanted-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}
.new-arrival-box:hover img, .most-wanted-box:hover img {
    transform: scale(1.05);
}
.new-arrival-box:hover, .most-wanted-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.new-arrival-box button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #d84570;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}
.most-wanted-box button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #d84570;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}
.new-arrival-box:hover button {
    opacity: 1;
}
.most-wanted-box:hover button {
    opacity: 1;
}
.most-wanted-box p {
    font-weight: bold;
    margin-top: 10px;
    color: black;
}
.new-arrival-box p {
    font-weight: bold;
    margin-top: 10px;
    color: black;
}

/* Newsletter */
.news {
    background-color: #d84570;
    color: white;
    text-align: center;
    padding: 40px 20px;
}
.news h2 {
    font-family: 'Rancho', cursive;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.news p { margin-bottom: 20px; }
.news input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
    margin-right: 10px;
}
.news button {
    padding: 10px 20px;
    background-color: #fff;
    color: #d84570;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    text-align: center;
}
.footer h2 {
    font-family: 'Rancho', cursive;
    font-size: 2rem;
    margin-bottom: 10px;
}
.footer p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.footer-icons i {
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}
.footer-icons i:hover {
    color: #d84570;
}

/* ===================== */
/* Contact Page */
/* ===================== */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.contact-section h2 {
    font-family: 'Rancho', cursive;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #d84570;
}
.contact-section form {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.contact-section label {
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-section input, .contact-section textarea {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}
.contact-section textarea { resize: vertical; }
.contact-section button {
    padding: 12px 24px;
    background-color: #d84570;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}
.contact-section button:hover {
    background-color: #c03d61;
}

/* ===================== */
/* Login / Signup / Forgot Password */
/* ===================== */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 20px;
}
.login-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  text-align: center;
  animation: fadeUp 0.6s ease;
}
.login-box h2 {
  font-family: 'Rancho', cursive;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #d84570;
}
.login-box form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.login-box label {
  text-align: left;
  margin-bottom: 6px;
  font-weight: bold;
  font-size: 0.95rem;
  color: #444;
}
.login-box input {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.login-box input:focus {
  border-color: #d84570;
  box-shadow: 0 0 5px rgba(216, 69, 112, 0.3);
  outline: none;
}

/* Styled dropdowns */
#signup-question,
#forgot-question {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  color: #333;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' viewBox='0 0 24 24' width='24'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
}
#signup-question:focus,
#forgot-question:focus {
  border-color: #d84570;
  box-shadow: 0 0 5px rgba(216, 69, 112, 0.3);
  outline: none;
}
#signup-question option,
#forgot-question option {
  padding: 10px;
  font-size: 1rem;
}
#forgot-form label {
  display: block;
  text-align: left;

  font-weight: bold;
  font-size: 0.95rem;
  color: #444;
}

#forgot-form input,
#forgot-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

#forgot-form input:focus,
#forgot-form select:focus {
  border-color: #d84570;
  box-shadow: 0 0 5px rgba(216, 69, 112, 0.3);
  outline: none;
}

#check-email {
  background-color: #d84570;
}

#check-email:hover {
  background-color: #d84570;
}

.login-button {
  padding: 12px 24px;
  background-color: #d84570;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
  margin-top: 10px;
}
.login-button:hover {
  background-color: #c03d61;
  transform: scale(1.05);
}
.login-text {
  margin-top: 15px;
  font-size: 0.9rem;
}
.login-text a {
  color: #d84570;
  text-decoration: none;
  font-weight: bold;
}
.login-text a:hover {
  text-decoration: underline;
}

/* Error message */
.error-message {
  color: #ff4d4d;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: none;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===================== */
/* Cart Page */
/* ===================== */
.cart-section {
  width: 90%;
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.cart-section h2 {
  font-family: 'Rancho', cursive;
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #d84570;
  text-align: center;
}
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  animation: fadeInCart 0.5s ease;
}
@keyframes fadeInCart {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.cart-img {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 20px;
}
.cart-details { flex-grow: 1; }
.cart-details p {
  margin: 5px 0;
  font-size: 1rem;
  color: #333;
}
.quantity-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}
.quantity-controls button {
  background: #d84570;
  color: white;
  border: none;
  border-radius: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s;
}
.quantity-controls button:hover {
  background: #c03d61;
}
.remove-btn {
  background: #ff4d4d;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.3s;
}
.remove-btn:hover { background: #e60000; }
.cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 15px;
}
.cart-actions button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s;
}
#checkout-btn {
  background: #28a745;
  color: white;
}
#checkout-btn:hover {
  background: #218838;
  transform: scale(1.05);
}
#clear-cart-btn {
  background: #ff4d4d;
  color: white;
}
#clear-cart-btn:hover {
  background: #e60000;
  transform: scale(1.05);
}
#cart-total {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}
.cart-item-details p {
  margin: 4px 0;
}
.cart-item-details p strong {
  color: #333;
}

/* ===================== */
/* Toast Notification */
/* ===================== */
#toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 12px;
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-weight: bold;
}
#toast.show {
  visibility: visible;
  animation: slideUp 0.4s ease, fadeout 0.5s 2s forwards;
}
#toast.success { background-color: #28a745; }
#toast.error { background-color: #ff4d4d; }
@keyframes slideUp {
  from { bottom: -50px; opacity: 0; }
  to { bottom: 30px; opacity: 1; }
}
@keyframes fadeout {
  from { bottom: 30px; opacity: 1; }
  to { bottom: 0; opacity: 0; }
}

/* ===================== */
/* Order Placed Page */
/* ===================== */
.order-placed-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  padding: 20px;
}
.order-placed-box {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 600px;
  width: 100%;
  animation: fadeUp 0.8s ease;
}
.order-placed-box h2 {
  font-family: 'Rancho', cursive;
  font-size: 2.2rem;
  margin: 20px 0 10px;
  color: #28a745;
}
.order-placed-box p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}
.order-success-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 15px;
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.shop-more-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #d84570;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}
.shop-more-button:hover {
  background-color: #c03d61;
  transform: scale(1.05);
}

/* ===================== */
/* Responsive */
/* ===================== */
@media screen and (max-width: 768px) {
    .navbar-links { display: none; }
    .navbar-menu-toggle { display: block; }
    .products-box { flex-basis: 75%; }

}
@media screen and (max-width: 480px) {
    .products-box { flex-basis: 90%; }
    .new-arrival-box, .most-wanted-box { flex-basis: 100%; }

}
/* ===================== */
/* Auth Dropdown (Navbar + Side Navbar) */
/* ===================== */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown > a {
  cursor: pointer;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 120%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  min-width: 120px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 2000;
}

.dropdown-content a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  text-align: center;
}

.dropdown-content a:hover {
  background: #f5f5f5;
  color: #d84570;
}

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

/* Side navbar dropdown alignment */
.side-navbar .dropdown-content {
  left: 0;
  right: auto;
}

/* Mobile search bar  */
@media screen and (max-width: 480px) {
  .search-section {
    flex-direction: row;
    justify-content: center;
    padding: 15px 10px;
  }
  .search-section input {
    width: 65%;
    margin-bottom: 0;
  }
  .search-section button {
    width: auto;
  }
  .news input {
    width: 70%;
    margin-bottom: 10px;
  }

}



/* Product grid */
.products {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.products-box {
  text-align: center;
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  
}
.products-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.products-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.products-box h3 {
  font-size: 1.1rem;
  margin: 8px 0;
  font-weight: 600;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.products-box p {
  font-weight: bold;
  color: #d84570;
  margin: 5px 0;
  font-size: 1rem;
}
.product-button {
  padding: 10px;
  background-color: #d84570;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.2s;
}
.product-button:hover {
  background-color: #c03d61;
  transform: scale(1.05);
}
/* Tablet (2 per row) */
@media screen and (max-width: 768px) {
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-box img { height: 200px; }
}

/* Mobile (small screens) */
@media screen and (max-width: 480px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 10px;
  }
  
  .products-box {
    width: 100%; 
    margin: 0; 
    padding: 12px;
  }
  
  .products-box h3 {
    font-size: 0.95rem;
    white-space: normal;
    height: 2.4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  
  .products-box img { 
    height: 120px;
  }
  
  .product-button { 
    width: 100%; 
    font-size: 0.9rem;
    padding: 8px;
  }
  

  body {
    padding: 0 10px;
  }
}
@media screen and (max-width: 350px) {
  .products {
    grid-template-columns: 1fr;
  }
  
  .products-box img {
    height: 150px;
  }
}
/* ===================== */
/* Search Bar + Collection Page */
/* ===================== */
.search-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: #fff;
  gap: 10px;
  border-bottom: 1px solid #eee;
}
.search-section input {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 70%;
  max-width: 500px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.search-section input:focus {
  border-color: #d84570;
  box-shadow: 0 0 5px rgba(216, 69, 112, 0.3);
  outline: none;
}
.search-section button {
  padding: 12px 18px;
  border: none;
  background: #d84570;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}
.search-section button:hover {
  background: #c03d61;
  transform: scale(1.05);
}
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
/* Product Detail Page Styles */
.product-detail-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-detail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-image {
  flex: 1;
  min-width: 300px;
}

.product-image img {
  width: 100%;
  border-radius: 8px;
}

.product-info {
  flex: 1;
  min-width: 300px;
}

.product-price {
  font-size: 1.5rem;
  color: #d84570;
  font-weight: bold;
  margin: 15px 0;
}

.product-description {
  margin: 20px 0;
  line-height: 1.6;
  color: #555;
}

.size-selector, .quantity-selector {
  margin: 20px 0;
}

.size-selector select, .quantity-selector input {
  padding: 8px;
  margin-left: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.quantity-selector input {
  width: 60px;
}

.add-to-cart-btn {
  padding: 12px 24px;
  background-color: #d84570;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
  width: 100%;
  margin-top: 20px;
}

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

/* Responsive design for product page */
@media screen and (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
  }
  
  .product-image, .product-info {
    min-width: 100%;
  }
}
.product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-link:hover {
  opacity: 0.8;
}
