/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
  color: #222;
}

main, .main-content {
  flex: 1 0 auto;
}

nav {
  background: rgba(30, 34, 40, 0.98);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  width: 100%;
}

.nav-logo {
  font-size: 2rem;
  font-weight: bold;
  color: #f7b32b;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navbar-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.navbar-links a.active, .navbar-links a:hover {
  background: #f7b32b;
  color: #222;
}

/* Dropdown styles */
.navbar-links .dropdown {
  position: relative;
  display: inline-block;
}

.navbar-links .dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(30, 34, 40, 0.98);
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 8px;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
}

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

.navbar-links .dropdown-content a {
  color: #fff;
  padding: 0.75rem 1rem;
  text-decoration: none;
  display: block;
  border-radius: 0;
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navbar-links .dropdown-content a:last-child {
  border-bottom: none;
}

.navbar-links .dropdown-content a:hover {
  background-color: #f7b32b;
  color: #222;
}

/* Hero/Section backgrounds */
.section-bg {
  min-height: 32vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e25303;
  position: relative;
  overflow: hidden;
}

.section-bg.products,
.section-bg.about,
.section-bg.contact {
  background: #e25303;
}

/* Fallback for images: if imgs/bg1.jpg exists, use it for home, etc. */
.section-bg[data-bgimg] {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,34,40,0.25);
  z-index: 1;
}

.section-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #222;
  padding: 0 2rem;
}

.section-bg .section-content h1,
.section-bg .section-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.32), 0 1px 0 #e25303;
}

.section-bg .section-content p {
  font-size: 1.05em;
  margin-bottom: 2rem;
  color: #111;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-bg .section-content .small-text {
  color: #fff;
  font-size: 1.05em;
  font-weight: 500;
  margin-top: 0.5em;
  display: block;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  background: #f7b32b;
  color: #222;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  margin: 0 0.5rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn:hover {
  background: #222;
  color: #f7b32b;
}

/* Product Cards */
.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 3rem 0;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 2rem;
  justify-content: center;
}

/* Override section-content max-width for products sections */
.section .section-content {
  max-width: none;
  width: 100%;
  padding: 0 2rem;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  padding: 2rem 1.5rem;
  text-align: left;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
}

.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: #f7b32b;
}

.product-card .product-description,
.product-card .product-description p {
  color: #444;
  margin-bottom: 0.5rem;
}

.product-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #e25303;
  margin-bottom: 1rem;
}

.product-card .btn {
  margin: 0;
  width: 100%;
}

.product-img {
  width: 100%;
  height: 180px;
  background: #f5f5f5 url('data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\' width=\'320\' height=\'180\'><rect width=\'100%\' height=\'100%\' fill=\'%23f5f5f5\'/><text x=\'50%\' y=\'50%\' font-size=\'20\' fill=\'%23ccc\' text-anchor=\'middle\' alignment-baseline=\'middle\'>No Image</text></svg>') center center no-repeat;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* About/Contact/Other Sections */
.section {
  padding: 4rem 2rem;
  background: #fff;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #f7b32b;
  text-align: center;
}

.section p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Footer */
footer {
  flex-shrink: 0;
  background: #222;
  color: #fff;
  padding: 2rem 2rem 1rem 2rem;
  text-align: center;
  font-size: 1rem;
  margin-top: 0;
  border-top: none;
}

footer a {
  color: #f7b32b;
  text-decoration: none;
  margin: 0 0.5rem;
}

footer a:hover {
  text-decoration: underline;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    pointer-events: none;
}

.toast {
    background: #fff;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #28a745;
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    animation: slideInRight 0.3s ease-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toast.success {
    border-left-color: #28a745;
}

.toast.error {
    border-left-color: #dc3545;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 14px;
}

.toast.success .toast-title {
    color: #28a745;
}

.toast.error .toast-title {
    color: #dc3545;
}

.toast-message {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    line-height: 1;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: #666;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast.removing {
    animation: slideOutRight 0.3s ease-in forwards;
}

/* Responsive Toast */
@media (max-width: 600px) {
    .toast-container {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: none;
    }
}

/* Contact Page Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease-in-out;
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-content h2 {
    color: #e25303;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #e25303;
}

/* Modal Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Modal */
@media (max-width: 600px) {
    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-content h2 {
        font-size: 1.3rem;
    }
}





/* Responsive */
@media (max-width: 900px) {
  .section-content {
    padding: 0 1.5rem;
  }
  
  .section .section-content {
    padding: 0 1.5rem;
  }
  
  .section {
    padding: 3rem 1.5rem;
  }
  
  .section-bg .section-content p {
    max-width: 600px;
  }
  
  .btn {
    margin: 0.5rem 0.5rem;
  }
  
  /* Stack buttons vertically on medium screens */
  .section-content .btn {
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 0.5rem auto;
  }
  
  .products-list {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .product-card {
    padding: 1.5rem 1rem;
  }
  
  .navbar-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1.5rem;
  }
  
  /* Mobile dropdown styles */
  .navbar-links .dropdown-content {
    position: static;
    display: none;
    background-color: transparent;
    box-shadow: none;
    margin-top: 0;
    border-radius: 0;
  }
  
  .navbar-links .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .navbar-links .dropdown-content a {
    padding: 0.5rem 1rem;
    margin: 0.25rem 0;
    border-bottom: none;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
  }
  
  footer {
    padding: 2rem 1.5rem 1rem 1.5rem;
  }
}

@media (max-width: 600px) {
  .section-content {
    padding: 0 1rem;
  }
  
  .section .section-content {
    padding: 0 1rem;
  }
  
  .section {
    padding: 2rem 1rem;
  }
  
  .section-bg .section-content p {
    max-width: 500px;
  }
  
  .btn {
    margin: 0.75rem 0.5rem;
    display: block;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* Ensure buttons in sections have proper vertical spacing */
  .section-content .btn {
    margin: 0.75rem auto;
    display: block;
    width: 100%;
    max-width: 280px;
  }
  
  .section-bg .section-content h1,
  .section-bg .section-content h2 {
    font-size: 1.5rem;
  }
  
  .section-bg .section-content p {
    font-size: 1rem;
  }
  
  .navbar-container {
    padding: 0 1rem;
  }
  
  .navbar-links {
    gap: 1rem;
  }
  
  .products-list {
    gap: 1rem;
    padding: 0 0.5rem;
  }
  
  .product-card {
    width: 100%;
    min-width: auto;
    max-width: 100%;
    padding: 1.5rem 1rem;
  }
  
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
}

/* Landscape orientation on mobile devices */
@media (max-width: 900px) and (orientation: landscape) {
  .section-bg {
    min-height: 50vh;
    padding: 2rem 0;
  }
  
  .section-bg .section-content h1,
  .section-bg .section-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .section-bg .section-content p {
    font-size: 0.95em;
    margin-bottom: 1rem;
  }
  
  .section {
    padding: 1.5rem 2rem;
  }
  
  .section-content {
    padding: 0 1.5rem;
  }
  
  .section .section-content {
    padding: 0 1.5rem;
  }
}

/* Small landscape orientation on mobile devices */
@media (max-width: 600px) and (orientation: landscape) {
  .section-bg {
    min-height: 60vh;
    padding: 1.5rem 0;
  }
  
  .section-bg .section-content h1,
  .section-bg .section-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }
  
  .section-bg .section-content p {
    font-size: 0.9em;
    margin-bottom: 0.75rem;
  }
  
  .section {
    padding: 1rem 1rem;
  }
  
  .section-content {
    padding: 0 1rem;
  }
  
  .section .section-content {
    padding: 0 1rem;
  }
  
  .btn {
    margin: 0.5rem 0.5rem;
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
  }
  
  .section-content .btn {
    margin: 0.5rem auto;
    max-width: 250px;
  }
}

/* Product Modal Styles */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
}

.product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    display: none;
    max-width: 95vw;
    max-height: 90vh;
    width: 1400px;
    height: 800px;
    overflow: hidden;
}

.product-modal-content {
    display: flex;
    height: 100%;
    position: relative;
    gap: 0;
}

.product-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    z-index: 10002;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.product-modal-close:hover {
    color: #000;
    background: white;
    transform: scale(1.1);
}

.product-modal-img-container {
    flex: 0 0 60%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    padding: 40px;
    box-sizing: border-box;
    min-height: 0;
}

.product-modal-img {
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: zoom-in;
    display: block;
}

.product-modal-zoom-result {
    position: fixed;
    width: 300px;
    height: 300px;
    border: 2px solid #ddd;
    background-color: white;
    background-size: 800%;
    background-repeat: no-repeat;
    z-index: 10004;
    display: none;
    pointer-events: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.product-modal-info {
    flex: 0 0 40%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 0 10px 10px 0;
    overflow-y: auto;
    max-height: 100%;
}

.product-modal-info h2 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 28px;
}

.product-modal-info p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.product-modal-info ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.product-modal-info li {
    margin-bottom: 8px;
    color: #666;
}

.product-modal-info strong {
    color: #333;
    font-weight: 600;
}

.product-modal-info .price {
    font-size: 24px;
    font-weight: bold;
    color: #e25303;
    margin-bottom: 30px;
}

.product-modal-info .btn {
    display: none;
}

/* Modal Navigation Buttons */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 10003;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.modal-nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-nav-prev {
    left: 20px;
}

.modal-nav-next {
    right: 20px;
}

/* Image Counter */
.image-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10003;
}

/* Modal Buy Button */
.modal-buy-button {
    background: #e25303;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(226, 83, 3, 0.3);
    transition: all 0.3s ease;
    margin-top: auto;
    align-self: flex-start;
    width: 100%;
}

.modal-buy-button:hover {
    background: #d14802;
}

/* Empty State Styling */
.empty-state {
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    margin: 2rem 0;
    transition: all 0.3s ease;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-state:hover {
    background: #f1f3f4;
    border-color: #adb5bd;
}

.empty-state > div {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
    width: 100%;
}

.empty-state i {
    color: #6c757d;
}

.empty-state h3 {
    color: #495057;
    font-weight: 600;
}

.empty-state p {
    color: #6c757d;
    line-height: 1.5;
}

/* Search Panel Styling */
.search-panel {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-panel:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
}

.search-panel-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
}

.clear-filters-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

.filter-section h4 {
    margin: 0 0 1rem 0;
    color: #495057;
    font-size: 1rem;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
}

.filter-option:hover {
    background: #e9ecef;
}

.filter-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #ced4da;
    border-radius: 4px;
    margin-right: 0.75rem;
    position: relative;
    transition: all 0.2s ease;
}

.filter-option:hover .checkmark {
    border-color: #adb5bd;
}

.filter-option input:checked ~ .checkmark {
    background-color: #e25303;
    border-color: #e25303;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-option input:checked ~ .checkmark:after {
    display: block;
}

.filter-label {
    flex: 1;
    color: #495057;
    font-weight: 500;
    font-size: 0.95rem;
}

.product-count {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 400;
}

.coming-soon-message {
    text-align: center;
    padding: 2rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

/* Layout adjustments for search panel */
.products-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
}

.search-panel {
    flex: 0 0 280px;
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

/* Only apply these constraints when inside a products-container */
.products-container .products-list {
    flex: 1;
    max-width: calc(100% - 400px - 4rem); /* Account for left panel + reduced right space + gaps */
    padding: 0; /* Remove padding when inside search container */
    margin: 0; /* Remove margin when inside search container */
}



/* Responsive design for search panel */
@media (max-width: 900px) {
    .products-container {
        flex-direction: column;
        gap: 1rem;
        max-width: none;
    }
    
    .search-panel {
        flex: none;
        width: 100%;
        position: static;
        max-height: none;
        order: -1;
    }
    
    .products-container .products-list {
        max-width: none;
    }
    

    
    .search-panel-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .clear-filters-btn {
        align-self: flex-end;
    }
}

@media (max-width: 600px) {
    .search-panel {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .search-panel-header h3 {
        font-size: 1.1rem;
    }
    
    .filter-options {
        gap: 0.5rem;
    }
    
    .filter-option {
        padding: 0.375rem;
    }
    
    .checkmark {
        height: 16px;
        width: 16px;
        margin-right: 0.5rem;
    }
    
    .checkmark:after {
        left: 4px;
        top: 1px;
        width: 3px;
        height: 6px;
    }
}

/* Pagination Styling */
.pagination-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.pagination-btn {
    background: #e25303;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(226, 83, 3, 0.2);
}

.pagination-btn:hover:not(:disabled) {
    background: #d14802;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(226, 83, 3, 0.3);
}

.pagination-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.pagination-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.page-counter {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.page-input-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-input {
    width: 60px;
    height: 32px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    background: white;
    transition: all 0.3s ease;
}

.page-input:focus {
    outline: none;
    border-color: #e25303;
    box-shadow: 0 0 0 3px rgba(226, 83, 3, 0.1);
}

.page-input-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

/* Responsive pagination */
@media (max-width: 600px) {
    .pagination-container {
        justify-content: center;
        margin: 2rem 0;
    }
    
    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .pagination-info {
        flex-direction: row;
        gap: 1rem;
    }
    
    .page-input-container {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .page-input {
        width: 50px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .empty-state {
        min-height: 300px;
    }
    
    .empty-state > div {
        padding: 2rem 1rem;
    }
}

/* Responsive Design for Modal */
@media (max-width: 1200px) {
    .product-modal {
        width: 95vw;
        height: 90vh;
    }
    
    .product-modal-info {
        flex: 0 0 300px;
        padding: 25px;
    }
    
    .product-modal-img-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .product-modal {
        width: 95vw;
        height: 90vh;
        flex-direction: column;
    }
    
    .product-modal-content {
        flex-direction: column;
    }
    
    .product-modal-img-container {
        flex: 0 0 60%;
        border-radius: 10px 10px 0 0;
    }
    
    .product-modal-info {
        flex: 0 0 40%;
        padding: 20px;
        border-radius: 0 0 10px 10px;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .modal-nav-prev {
        left: 10px;
    }
    
    .modal-nav-next {
        right: 10px;
    }
    
    .product-modal-close {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    .faded-strike {
      position: relative;
      color: #6c757d;
      opacity: 0.5;
      text-decoration: none;
      padding: 0 4px;
    }
    
    .faded-strike::after {
      content: '';
      position: absolute;
      left: 0; right: 0; top: 50%;
      border-bottom: 2px solid #e25303;
      transform: translateY(-50%);
      pointer-events: none;
    }
    
    .sale { color: #e25303; font-weight: bold; }
}
