/* ================= GENERAL STYLES ================= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.main-content {
    padding-bottom: 90px; /* or more if needed */
}

/* Container Styles */
.container, .responsive-container {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

input[readonly] {
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    color: #555;
    cursor: not-allowed;
}

/* Flexbox Layout */
.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Centered Content */
.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    flex-direction: column;
}

/* Card-like Display */
.box {
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.box:hover {
    transform: translateY(-5px);
}

/* ================= HEADER & NAVIGATION ================= */
/* Header Styling */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2c3e50;
    padding: 10px 20px;
    color: white;
    position: relative;
    flex-wrap: wrap;
}

.header h1 {
    margin: 0;
    font-size: 24px;
}

/* Left side: Logo + Menu */
.header-left {
    display: flex;
    align-items: center;
}

/* Proper Spacing for Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    background: #007bff;
    border-radius: 5px;
    font-weight: bold;
}

.nav-menu a.admin:hover {
    background-color: #cc4626;
}

/* Admin Dashboard Button */
.nav-menu a.admin {
    background-color: #ff5733;
}

.nav-menu a.admin:hover {
    background-color: #cc4626;
}

/* Styling for Buttons */
.nav-menu a.button {
    background-color: #007bff;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.nav-menu a:hover {
    background: #0056b3;
}

/* Ensure Admin Dashboard Button is Visible */
.nav-menu a.button.admin {
    background-color: #ff5733;
}

.nav-menu a.button.admin:hover {
    background-color: #cc4626;
}

/* Right side: Welcome Text & Cart */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Welcome Message - Now Centered & Visible */
.welcome-text {
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-weight: bold;
    margin: 10px 0;
    width: 100%;
}

/*--------Signup and Login-------*/
/* Login Page Styling */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.login-box {
    width: 350px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login-box h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.login-box label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin: 10px 0 5px;
    color: #333;
}

.login-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

.login-button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.login-button:hover {
    background-color: #0056b3;
}

.error-message {
    color: red;
    font-weight: bold;
    margin-bottom: 15px;
}

.login-options {
    margin-top: 15px;
}

/* Logout Button */
.logout-btn {
    background-color: #dc3545;
}

.logout-btn:hover {
    background-color: #c82333;
}

.signup-link, .forgot-password {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
}

.signup-link:hover, .forgot-password:hover {
    text-decoration: underline;
}

/* Signup Page */
.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.signup-box {
    width: 400px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.signup-box label {
    display: block;
    text-align: left;
    font-weight: bold;
    margin: 10px 0 5px;
}

.signup-box input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

.captcha-container {
    margin: 15px 0;
}

/* âœ… Email Verification Message Styling */
.verification-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    text-align: center;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.verification-container h2 {
    color: #333;
    font-size: 24px;
}

.verification-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.success {
    color: #28a745; /* Green Success Message */
    font-weight: bold;
}

.success-message {
    color: green;
    font-weight: bold;
    text-align: center;
    margin-top: 15px;
}

.error {
    color: #dc3545; /* Red Error Message */
    font-weight: bold;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
}

/* âœ… CRUD Categories Styling */
.dashboard-section {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.table-view {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.table-view th, .table-view td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.product-thumb {
    max-width: 60px;
    height: auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 2px;
}

.table-view th {
    background-color: #007bff;
    color: white;
    text-align: center;
}

.table-view tr:hover {
    background-color: #f1f1f1;
}

/* âœ… Styled Buttons */
.back-to-login {
    display: inline-block;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
}

.back-to-login:hover {
    background: #0056b3;
}

.info-icon {
    cursor: pointer;
    font-size: 0.9em;
    margin-left: 6px;
    vertical-align: middle;
}

.edit-btn, .delete-btn {
    display: inline-block;
    padding: 8px 12px;
    margin: 3px;
    border-radius: 5px;
    font-size: 14px;
    text-decoration: none;
}

.edit-btn {
    background-color: #28a745;
    color: white;
}

.edit-btn:hover {
    background-color: #218838;
}

.delete-btn {
    background-color: #dc3545;      /* Bright red */
    color: #fff !important;         /* Force white text */
    font-weight: bold;
    font-size: 16px;
    padding: 10px 16px;
    border: 2px solid #a71d2a;
    border-radius: 5px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
}

.delete-btn:hover {
    background-color: #a71d2a;
    border-color: #7f141f;
    color: #fff !important;
}

.empty-message {
    font-size: 18px;
    color: #888;
    text-align: center;
    padding: 20px;
}

/* Ensure Cart Icon Stays on the Right */
.cart-container {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.cart-actions {
    position: sticky;
    margin-top: 20px;
    text-align: center;
}

/* Cart Icon */
.cart-icon {
    position: absolute;
    top: 15px;
    right: 20px; /* Moves it to the right side of the header */
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.cart-icon i {
    font-size: 24px;
    margin-right: 5px;
}

.cart-icon span {
    background: red;
    color: white;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 14px;
    position: absolute;
    top: -5px;
    right: -10px;
}

/* Cart Table Styling */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cart-table th, .cart-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}

.cart-table th {
    background-color: #2c3e50;
    color: white;
}

/* Cart Product Image */
.cart-thumbnail {
    width: 80px;
    height: auto;
    border-radius: 5px;
    border: 1px solid #ddd;
}

/* Grand Total Styling */
.grand-total {
    font-size: 20px;
    text-align: right;
    margin-top: 15px;
    font-weight: bold;
}

/* Cart Buttons */
.cart-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.checkout-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s ease-in-out;
}

.checkout-btn:hover {
    background: #218838;
}

.checkout-button {
    padding: 10px 25px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
}

/* Overlay Styling */
#recalc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.recalc-toast {
    background: #fff;
    border: 2px solid #28a745;
    border-radius: 8px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.4s ease-out;
}

.recalc-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #c3e6cb;
    border-top: 4px solid #28a745;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    animation: spin 0.8s linear infinite;
}

.recalc-message {
    font-weight: bold;
    color: #28a745;
    font-size: 16px;
}

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

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

.zoom-container {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.zoom-hint {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 2;
    animation: fadeOutHint 3s ease-in-out forwards;
}

@keyframes fadeOutHint {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; display: none; }
}

/* Update Button */
.update-btn {
    background: #ffc107;
    color: black;
    border: none;
    padding: 6px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.update-btn:hover {
    background: #e0a800;
}

.update-button {
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.update-button:hover {
    background-color: #218838;
}

/* Editing Banner */
.edit-banner {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 10px;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Remove Button */
.remove-btn {
    display: inline-block;
    padding: 6px 10px;
    background: #dc3545;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s;
}

.remove-btn:hover {
    background: #c82333;
}

/* Empty Cart Styling */
.empty-cart {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin: 20px 0;
}

/* Category Selector - Moved Below Header */
.category-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    padding: 10px 0;
    margin-top: 5px;
    border-top: 1px solid #ddd;
}

.category-filter-container {
    display: flex;
    justify-content: center;  /* Center it horizontally */
    align-items: center;
    margin-top: 10px;  /* Add spacing from the header */
}

.category-filter-container form {
    display: flex;
    gap: 10px;
    align-items: center;
}

.category-filter-container select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.category-filter-container button {
    background: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.category-filter-container button:hover {
    background: #0056b3;
}

/* ================= PRODUCT GRID ================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    padding: 10px;
}


/* Product Card */
.product {
    max-width: 250px;
    flex: 1 1 200px;
    margin-bottom: 20px;
}

.product:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.product h3 {
    margin: 0;
    font-size: 18px;
}

.product p {
    margin: 5px 0;
    font-size: 14px;
}

.product-link {
    text-decoration: none;
    color: inherit;
}

.product-link h4,
.product-link p {
    text-decoration: none;
}

.product-link h3 {
    color: red;
}

/* Product Thumbnails */
.product-thumbnail {
    width: 150px !important;
    height: auto;
    border-radius: 5px;
    margin: 10px auto;
    cursor: pointer;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s;
}

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

/* ================= AFFILIATES ================= */
/* Affiliate Page Styling */
.affiliate-grid {
    display: grid;
    grid-template-columns: 150px 1fr 2fr 1fr;
    gap: 15px;
    padding: 20px;
    align-items: center;
}

/* Column Headers */
.affiliate-header {
    font-weight: bold;
    text-align: left;
    padding-bottom: 10px;
    border-bottom: 2px solid #ccc;
}

/* Affiliate Cell */
.affiliate-cell {
    padding: 10px;
}


.affiliate-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.affiliate-card:hover {
    transform: scale(1.05);
}

.affiliate-card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.affiliate-card p {
    font-size: 14px;
    color: #666;
}

/* Affiliate Thumbnail */
.affiliate-thumbnail {
    width: 100px;
    height: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.affiliate-thumbnail:hover {
    transform: scale(1.1);
}

.visit-btn {
    display: inline-block;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.visit-btn:hover {
    background: #0056b3;
}

/* ============SHIPPING ADDRESS=============== */
.form-grid {
    max-width: 600px;
    margin: 0 auto 20px auto;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background: #f9f9f9;
}

.form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
}

.form-row label {
    font-weight: bold;
    margin-bottom: 4px;
}

.form-row input {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #bbb;
}

.button.primary {
    background-color: #0077cc;
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.button.primary:hover {
    background-color: #005fa3;
}

.back-link-container {
    margin-top: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.button.secondary {
    background-color: #eee;
    color: #333;
    padding: 8px 14px;
    border: 1px solid #bbb;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.button.secondary:hover {
    background-color: #ddd;
}


/* ================= BUTTONS ================= */
.button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
}

.button:hover {
    background-color: #0056b3;
}

.add-to-cart-btn {
    background-color: #e67e22;
    color: white;
    border: none;
    cursor: pointer;
    width: 100%;
    padding: 10px;
    font-weight: bold;
}

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

/* Out of Stock Message */
.out-of-stock {
    color: red;
    font-weight: bold;
    font-size: 18px;
}

/* Disabled Add to Cart Button */
.add-to-cart-btn.disabled {
    background-color: grey;
    cursor: not-allowed;
    opacity: 0.6;
}

/* Delete Button */
.delete-btn {
    color: red;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
}

/* View Details Button */
.view-details-btn {
    padding: 8px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.view-details-btn:hover {
    background: #0056b3;
}

/* Back Button */
.back-button-container {
    text-align: center;
    margin-top: 20px;
}

.back-button {
    display: block;
    margin-top: 20px;
    text-align: center;
    background-color: #007bff;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
}

.back-button:hover {
    background-color: #0056b3;
}

/* ================= PRODUCT DETAILS PAGE ================= */
.product-detail-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Product Image Gallery */
.product-detail-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    max-width: 400px;
}

.product-detail-images a {
    display: inline-block;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.product-detail-images a:hover {
    transform: scale(1.1);
}

/* Product Information */
.product-info {
    flex: 1;
    max-width: 400px;
    padding: 15px;
}

.product-info p {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.product-info strong {
    color: #000;
}

/* ================= FOOTER ================= */
.footer {
    text-align: center;
    padding: 10px;
    background: #222;
    color: white;
    margin-top: 20px;
}

.footer-link {
    color: #fff;                 /* ✅ White text for dark background */
    text-decoration: none;      /* ❌ No underline */
    font-weight: 500;
}

.footer-link:hover {
    text-decoration: underline; /* 👁 Slight feedback on hover */
    color: #ddd;                /* 🔄 Slightly lighter for hover effect */
}

/* ðŸ”’ Hide cards by default (desktop/tablet) */
.product-cards {
    display: none;
}

.product-table {
    display: table;
}

/* Default (Desktop): show table, hide cards */
.table-view {
  display: table;
  width: 100%;
  border-collapse: collapse;
}

.card-grid {
    display: none;
}

/* ================= RESPONSIVE DESIGN ================= */
/* For tablets */
@media screen and (max-width: 768px) {
  /* 🔒 Hide standard tables */
  .table-view,
  .table-view thead,
  .table-view tbody,
  .table-view tr,
  .table-view td,
  .table-view th {
    display: none !important;
  }

  /* ✅ Enable Card Grid for tablet/mobile */
  .card-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .card img {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    border-radius: 4px;
  }

  .card h3 {
    margin-top: 0;
    font-size: 18px;
    color: #333;
  }

  .card p {
    margin: 5px 0;
    font-size: 14px;
    color: #444;
  }

  .card .actions {
    margin-top: 10px;
  }

  .card .edit-btn,
  .card .delete-btn {
    display: inline-block !important;
    padding: 6px 10px;
    font-size: 13px;
    margin-right: 5px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
  }

  .card .edit-btn {
    background-color: #28a745;
    color: white;
  }

  .card .delete-btn {
    background-color: #dc3545;
    color: white;
  }

  /* ✅ Optional Product Grid (if used elsewhere) */
  .product {
    flex: 1 1 calc(45% - 20px);
    max-width: calc(45% - 20px);
  }

  .product-grid {
    flex-wrap: wrap;
  }

  .container {
    width: 100%;
    padding: 15px;
  }

  /* Buttons + Navbar */
  button {
    font-size: 12px;
    padding: 8px 12px;
  }

  .edit-btn, .delete-btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 5px;
  }
}

/* For mobile phones */
@media screen and (max-width: 480px) {
  /* 🔒 Hide Tables on Phones */
  .table-view,
  .table-view thead,
  .table-view tbody,
  .table-view tr,
  .table-view td,
  .product-table {
    display: none !important;
  }

  /* ✅ Responsive Card Layout */
  .card-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
  }

  .card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }

  .card img {
    width: 70px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    border-radius: 4px;
  }

  .card h3 {
    margin-top: 0;
    font-size: 16px;
    color: #333;
  }

  .card p {
    margin: 4px 0;
    font-size: 13px;
    color: #444;
  }

  .card .actions {
    margin-top: 8px;
  }

  .card .edit-btn,
  .card .delete-btn {
    display: inline-block !important;
    width: auto !important;
    padding: 6px 10px;
    font-size: 12px;
    margin-right: 5px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
  }

  .card .edit-btn {
    background-color: #28a745;
    color: white;
  }

  .card .delete-btn {
    background-color: #dc3545;
    color: white;
  }

  /* 🔧 Utility Styles */
  button {
    font-size: 12px;
    padding: 6px 10px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
  }

  .responsive-container {
    overflow-x: auto;
    width: 100%;
  }
}
