.contact-info .contact-image {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-info .contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.contact-info .contact-image img:hover {
    transform: scale(1.03);
}

/* Contact Section Styles */
#contact {
    background-image:url('https://img.freepik.com/free-photo/minimal-work-space-creative-flat-lay-photo-workspace-desk-with-sketchbook-wooden-pencil-copy-space-white-background-top-view-flat-lay-photography_1253-989.jpg?t=st=1744906247~exp=1744909847~hmac=bae69d8136482e69095d70dc33844376dd83bbbba74491c86c83012c85cd3b13&w=996');
    padding: 60px 20px;
    font-family: 'Segoe UI', sans-serif;

}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #333;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form, .contact-info {
    flex: 1 1 45%;
    min-width: 300px;
}



.contact-form label {
    display: block;
    margin-bottom: 8px;
    color: #444;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4986d1;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: #4986d1;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #336cb1;
}

.contact-info h3 {
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .contact-info {
        width: 100%;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    font-family: 'Segoe UI', sans-serif;
    flex-wrap: wrap;
}

.pagination button {
    background-color: var(--primary-color);;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination button:hover {
    background-color: #336cb1;
}

.page-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.page-numbers span {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.page-numbers span:hover {
    background-color: #f0f0f0;
}

.page-numbers .active {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
}
@media (max-width: 500px) {
    .pagination {
        flex-direction: column;
        gap: 10px;
    }

    .page-numbers {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sort {
        width: 100%;
        justify-content: space-between;
    }
}

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 20px;
      background-image: url('https://images.pexels.com/photos/5833504/pexels-photo-5833504.jpeg');
    }



    /* Modal Styling */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
  .modal-content {
      background: white;
      padding: 40px;
      border-radius: 12px;
      max-width: 900px;
      width: 100%;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
    .modal-content img {
      width: 100%;
      max-width: 400px;
      border-radius: 8px;
    }

    .modal-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 24px;
      margin-bottom: 20px;
    }

    .modal-body {
      display: flex;
      gap: 40px;
    }

    .modal-body .product-info {
      flex: 1;
    }

    .modal-body .description {
      margin-top: 10px;
      font-size: 16px;
      color: #555;
    }

    .close-btn {
      font-size: 18px;
      color: #4986d1;
      cursor: pointer;
      text-decoration: underline;
    }

    .add-to-cart {
      padding: 10px 20px;
      font-size: 16px;
      background: #4986d1;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    .add-to-cart:hover {
      background: #3565a4;
    }
.auth-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.auth-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

.auth-modal-content h2 {
  text-align: center;
  color: var(--primary-color);
}

.auth-modal-content input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 12px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.auth-modal-content button {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.auth-modal-content p {
  text-align: center;
  margin-top: 15px;
  color: var(--primary-color);
  cursor: pointer;
}

.close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  color: #aaa;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #b06868;
    --secondary-color: #f0eeed;
    --accent-color: #ff3333;
    --text-color: #333333;
    --border-color: #dddddd;
    --hover-color: #8b5252;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}

/* Enhanced Filter Styles */
.filters {
    width: 300px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--secondary-color);
}

.filters-header h2 {
    font-size: 1.5rem;
    color: var(--text-color);
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 5px;
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--secondary-color);
}

.filter-section h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.filter-list {
    list-style: none;
}

.filter-list li {
    margin-bottom: 12px;
}

.filter-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.filter-list input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    cursor: pointer;
}

/* Price Range Styles */
.price-range {
    padding: 10px 0;
}

.range-slider {
    margin-bottom: 15px;
}

.slider {
    width: 100%;
    height: 4px;
    background: var(--secondary-color);
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    background: var(--hover-color);
}

.price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-inputs input {
    width: 80px;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    text-align: center;
}

/* Enhanced Color Options */
.color-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.color-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.color-dot:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.color-dot[style*="background-color: #FFFFFF"] {
    border: 2px solid #ddd;
}

.color-dot.selected {
    border: 2px solid var(--primary-color);
}

.color-dot.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}

/* Size Options */
.size-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.size-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.size-btn:hover {
    background-color: var(--secondary-color);
}

.size-btn input[type="checkbox"] {
    display: none;
}

.size-btn:has(input:checked) {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Apply Filters Button */
.apply-filters {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.apply-filters:hover {
    background-color: var(--hover-color);
}

/* Header styles */
header {
    padding: 20px 0;
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-weight: 800;
    font-size: 2rem;
}

.main-nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #b06868;
}

.search-cart {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
}

.search-box input {
    padding: 10px 40px 10px 15px;
    border: 1px solid #b06868;
    border-radius: 10px;
    width: 300px;
}

.search-box img {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
}

.cart {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* Main content styles */
main {
    padding: 40px 0;
}

.page-section {
    padding: 60px 0;
    min-height: 100vh;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Products section */
.products {
    flex: 1;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.product-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    background-color: #f0eeed;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor:pointer;
}

.product-info {
    padding: 15px 0;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars {
    color: #ffd700;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-price {
    font-size: 1.5rem;
}

.original-price {
    font-size: 1.2rem;
    color: #666;
    text-decoration: line-through;
}

.discount {
    background-color: rgba(255, 51, 51, 0.1);
    color: #ff3333;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 0.9rem;
}

/* Contact section styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: black;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #333;
}

.contact-info {
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 20px;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 10px;
    color: #666;
}

/* Footer styles */
footer {
    background-color: #f8f8f8;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.brand-logo {
    width: 152px;
    height: 152px;
    object-fit: cover;
}

.footer-links h4 {
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #b06868;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
}

/* Coming soon styles */
.coming-soon {
    text-align: center;
    padding: 100px 0;
}

.coming-soon h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.coming-soon p {
    color: #666;
}

/* Responsive design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .filters {
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }

    .color-options {
        justify-content: center;
    }

    .size-options {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 20px;
    }

    .search-cart {
        width: 100%;
        justify-content: center;
    }

    .search-box input {
        width: 100%;
    }

    .container {
        flex-direction: column;
    }

    .filters {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .size-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Modal container */
.auth-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Modal content */
.auth-modal-content {
  background-color: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* Close button */
.auth-modal .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* Form inputs and button */
.auth-modal-content input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin: 10px 0;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Text switch */

/* Responsive tweaks */
@media screen and (max-width: 480px) {
  .auth-modal-content {
    padding: 20px 15px;
  }

  .auth-modal .close {
    top: 5px;
    right: 10px;
    font-size: 22px;
  }

  .auth-modal-content input,
  .auth-modal-content button {
    font-size: 14px;
    padding: 10px;
  }
}/* Desktop layout */
.main-nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  gap: 30px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.search-cart {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 6px 10px;
  border-radius: 20px;
  background: #fff;
}

.search-box input {
  border: none;
  outline: none;
  font-size: 14px;
}

.search-box img {
  width: 18px;
  margin-left: 8px;
}

.cart {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart img {
  width: 22px;
}

/* Mobile bottom nav bar */
@media screen and (max-width: 7500px) {
    .mobile-bottom-nav {
      display: none;
    }
  }
  
  @media screen and (max-width: 768px) {
    .main-nav,
    .search-cart {
      display: none;
    }
  
    .mobile-bottom-nav {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: space-around;
      align-items: center;
      padding: 8px 0;
      z-index: 1000;
    }
  
    .mobile-bottom-nav a {
      text-decoration: none;
      color: #333;
      font-size: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .mobile-bottom-nav img {
      width: 22px;
      height: 22px;
      margin-bottom: 4px;
    }
  
    .mobile-bottom-nav svg {
      width: 20px;
      height: 20px;
    }
  
    .filters {
      display: none;
    }
  
    .products-header {
      display: none;
    }
  }
  
  @media screen and (max-width: 600px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 per row on small screens */
    }
  }
  
  /*--------------------------------------------------*/
  
  .products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .products-header span {
    font-size: 1rem;
    color: #333;
  }
  
  .sort {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #555;
  }
  
  .sort select {
    padding: 6px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    cursor: pointer;
  }
  
  .sort select:hover,
  .sort select:focus {
    border-color: #4986d1;
    box-shadow: 0 0 5px rgba(73, 134, 209, 0.3);
  }