:root {
    --goldenrod: goldenrod;
    --white: white;
    --dark-gray: #333;
    --light-gray: #f4f4f4;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

#product-total {
    display: none;  /* This will hide the total price element */
}
/* Social Link Styles */
.social-link {
    background-color: brown; /* Brown background for social media links */
    color: white; /* White text for icons */
    border-radius: 5px; /* Rounded corners */
    padding: 8px; /* Padding for social links */
    transition: background-color 0.3s; /* Smooth background change on hover */
}

.social-link:hover {
    background-color: darkorange; /* Darker background on hover */
}

    .equipment-section {
        padding-top: 80px;
        background-image: url('/static/SPAPHOTOS/imagex.jpg');
        margin-bottom: 0;
        margin-top: 80px;
        padding-bottom: 50px;
    }
    .equipment-section h2{
        margin-top: 75px;
        padding: 5px;
        margin-left: 10px;
        color: black;
        display: flex;
        font-size: 21px;
        font-weight: 300;

    }

    
    .checkmark {
        margin-right: 8px; /* Space between the tick and the text */
        color: white; /* Adjust color as needed */
        font-size: 2rem; /* Increase size for thickness */
        font-weight: bold; /* Make it bold */
        transform: scaleY(1.5); /* Stretch vertically for longer appearance */
        margin-top:-20px ;
    }

    .equipment-container {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 10px;
    }

    .equipment-card {
        background-color: white;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        cursor: pointer;
        transition: transform 0.2s;
        margin-left: 15px;
        margin-bottom: 2px;
        margin-top: 10px;
    }

    .equipment-card:hover {
        transform: scale(1.05);
    }

    .equipment-card img {
        width: 100px;  /* Adjust width as needed */
        height: 100px; /* Adjust height to match */
        border-radius: 10%; /* Makes the image circular */
        object-fit: cover; /* Ensures the image covers the dimensions without distortion */
        margin-bottom: 8px; /* Space between the image and text */
    }
    .equipment-card p {
        margin-top: 8px;
        font-weight: 600; /* Semi-bold for a balanced look */
        font-size: 1rem; /* Adjust font size for readability */
        color: #333; /* Darker color for better legibility */
        line-height: 1.5; /* Improve line spacing for clarity */
        text-transform: capitalize; /* Optional: Capitalize the first letter of each word for consistency */
        margin-bottom: 12px; /* Add bottom margin for spacing between paragraphs */
        padding: 10px; /* Padding to give text room inside the background */
        background-color: #f9f9f9; /* Light background color for contrast */
        border-radius: 8px; /* Rounded corners for a soft look */
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle box shadow for depth */
        transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition effects */
    }

    
.cart {
    cursor: pointer; /* Change cursor to pointer on hover */
    display: flex;
    align-items: center;
    color: green; /* White text */
    padding: 10px;
}

.cart p {
    margin: 0 0 0 5px; /* Margin to space count from icon */
    font-size: 0.9rem; /* Smaller font size for cart count */
}

/* Header Styles */
.header {
    height: 80px;
    width: 70%;
    background-color: var(--goldenrod);
    border-radius: 3px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.header .logo {
    font-size: 30px;
    font-weight: bold;
    color: var(--white);
}

.cart {
    display: flex;
    background-color: rgb(1, 1, 78);
    justify-content: space-between;
    align-items: center;
    padding: 7px 10px;
    border-radius: 3px;
    width: 80px;
    margin-right: 2%;
    margin-left: 0;
}

.fa-solid {
    color: var(--goldenrod);
}

.cart p {
    height: 22px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background-color: var(--goldenrod);
    color: var(--white);
}




.sidebar {
    flex: 1;
    border-radius: 5px;
    background-color: var(--light-gray);
    padding: 15px;
    text-align: center;
}

   
  




/* Head and Foot Styles */
.head {
    background-color: var(--goldenrod);
    border-radius: 3px;
    height: 20px;
    padding: 10px;
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    width: max-content;
}

.foot {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px solid #333;
}





#payButton:hover {
    background-color: #218838;
}

/* Notification Styles */
.notification {
    
    display: none;
    background-color: #4CAF50;
    color: var(--white);
    text-align: center;
    padding: 16px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.notification.show {
    display: block;
    opacity: 1;
}

/* Spinner Styles */
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

/* Navigation Bar Styles */


/* Container Styles */


/* Media Queries */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack elements on small screens */
    }
}

/* Keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Modal Container */

/* Cart Item Styles */
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: var(--white);
    border-bottom: 1px solid #aaa;
    border-radius: 3px;
}

.cart-item p {
    font-size: 16px;
    padding: 10px;
}

.row-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--goldenrod);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rowimg {
    max-width: 43px;
    max-height: 43px;
    border-radius: 50%;
}

.fa-trash:hover {
    cursor: pointer;
    color: #333;
}

.remove-button {
    background: transparent;
    border: none;
    color: red;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    padding: 10px;
    margin-left: 10px;
    width: min-content;
}

.remove-button:hover {
    text-decoration: underline; /* Underline on hover for feedback */
}

.footercart {
 
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-top: 10px;
        gap: 10px; /* Space between elements */
        width: 100%;
    
}

/* Phone Input Styles */
#phone {
    flex: 1;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 15px;
    margin-top: 10px;
}

/* Payment Button Styles */
#payButton {
    background-color: #28a745;
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;

}

/* Close Button */
.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Cart Icon */
.cart {
    cursor: pointer;
    position: relative;
    padding: 10px;
}

/* Carousel for Cart Items */
.carousel-container {
    display: flex;
    overflow-x: auto; /* Horizontal scrolling for carousel */
    gap: 20px;
    width: 100%;
    margin-top: 20px;
    padding: 10px;
}

.carousel-item {
    flex: 0 0 auto; /* Prevent shrinking */
    width: 250px; /* Width of each cart item */
    height: 350px; /* Height of each cart item */
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.carousel-item:hover {
    transform: scale(1.05); /* Slight scaling on hover */
}

/* Cart Item Image */
.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Cart Item Title and Price */
.carousel-item .title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 10px 0;
}

.carousel-item .price {
    font-size: 1.1rem;
    color: #333;
}

/* Cart Item Text */
.cart-item p {
    font-size: 16px;
    padding: 10px;
}

/* Row Image (Cart Item Image) */
.row-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--goldenrod);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove Button Styles */
.remove-button {
    background: transparent;
    border: none;
    color: red;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    padding: 10px;
    margin-left: 10px;
    width: min-content;
}

.remove-button:hover {
    text-decoration: underline; /* Underline on hover for feedback */
}

/* Modal Footer Styles */

/* Phone Input Styles */
#phone {
    width: 100%;
    max-width: 300px;
    padding: 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
}

/* Payment Button Styles */
#payButton {
    padding: 10px;
    background-color: #28a745;
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: min-content;
    margin-top: 10px;
}

#payButton:hover {
    background-color: #218838;
}

/* Notification Styles */
.notification {
    display: none;
    background-color: #4CAF50;
    color: var(--white);
    text-align: center;
    padding: 16px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.notification.show {
    display: block;
    opacity: 1;
}

/* Spinner Styles */
.spinner {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 10px;
}

/* Keyframes for Spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Media Queries */
@media (max-width: 768px) {
    .modal {
        width: 90%; /* Adjust modal width on smaller screens */
        max-height: 75vh;
    }

    

    .foot {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
    }
}/* Style for the notification */
#notification {
    position: fixed;         /* Fixed position */
    top: 50%;                /* Center vertically */
    left: 50%;               /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust for exact centering */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    color: white;
    font-size: 18px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1001;  /* Ensure the notification is above other content */
    opacity: 0;
    transition: opacity 0.3s ease-in-out; /* Smooth fade in/out */
}

/* Show notification */
#notification.show {
    opacity: 1;
}

/* Style for the overlay */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000; /* Below the notification */
    display: none; /* Hidden by default */
}

/* Overlay visible */
#overlay.show {
    display: block;
}

/* Cart fade out effect */
#cart {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

/* Cart inactive while notification is shown */
#cart.fade {
    opacity: 0.5;
    pointer-events: none; /* Prevent interactions */
}
/* Cart Icon Movement */
.cart {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease; /* Smooth transition for moving */
}

/* Cart Icon Moved State */
.cart.moved {
    transform: translateX(10px); /* Move the cart icon slightly to the right */
    transform: translateY(10px);                                          
}

/* Cart Notification Style */
.cart-notification {
    position: fixed;
    bottom: 80px; /* Position the notification above the cart icon */
    left: 50%;
    transform: translateX(-50%); /* Center it horizontally */
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* Notification fade out */
.cart-notification.fade-out {
    opacity: 0;
}


  
/* General body and container setup */


/* Section title styling */
h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 10px;
    padding-top: 8px;
}
.main-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 10px;
    padding-top: 20px;
    margin-left: 20px;
    margin-top: 20px;
}




.scroll-arrow {
    cursor: pointer;
    font-size: 30px;
    color: #333;
    background-color: peru;
    border-radius: 50%;
    padding: 10px;
    transition: background-color 0.3s, transform 0.3s ease;
}

.scroll-arrow:hover {
    background-color: #f0a500; /* Golden highlight */
    transform: scale(1.1);
}
/* Main content container setup */
.main-content-container {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
/* Product navigation (scroll arrows) */
.product-navigation {
    display: flex;
    flex-direction: column; /* Stack arrows above/below grid if needed */
    gap: 15px;
    width: 100%;
    margin: 20px 0;
}

/* Product container as a 3x3 grid */
.product-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    grid-auto-rows: auto;
    gap: 20px;
    padding: 10px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

/* Product box styling */
.box {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    height: 300px;
}

.box:hover {
    transform: scale(1.05);
}

/* Image styling inside the box */
.img-box {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* Product name and price styling */
.bottom {
    text-align: center;
    padding: 10px 0;
}

.bottom p {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

.bottom h2 {
    font-size: 18px;
    color: #f0a500;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 576px) {
    .product-container {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* Product link styling */
.prdetails-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background-color: #f0a500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.prdetails-link:hover {
    background-color: #d88700;
}

/* Scrollbar styling for the product containers */
.product-container::-webkit-scrollbar,
.additional-product-container::-webkit-scrollbar,
.furniture-container::-webkit-scrollbar,
.clothing-container::-webkit-scrollbar,
.phones-container::-webkit-scrollbar,
.tools-container::-webkit-scrollbar {
    height: 8px;
}

.product-container::-webkit-scrollbar-thumb,
.additional-product-container::-webkit-scrollbar-thumb,
.furniture-container::-webkit-scrollbar-thumb,
.clothing-container::-webkit-scrollbar-thumb,
.phones-container::-webkit-scrollbar-thumb,
.tools-container::-webkit-scrollbar-thumb {
    background-color:blue;
    border-radius: 10px;
}

/* Hidden scrollbar for smooth scrolling */
.product-container,
.additional-product-container,
.furniture-container,
.clothing-container,
.phones-container,
.tools-container {
    -ms-overflow-style: none;  /* For IE */
    scrollbar-width: none; /* For Firefox */
    background-color: lightgoldenrodyellow;
}

/* Section margin */
section {
    margin-bottom: 40px;
    background-color:white;
    border-radius: 5px;
}

@media  (max-width: 769px) {

  
    .cart {
  
      margin-left: 25px;
    }
    .top-banner a {
        color: #FFD700; /* Gold color for the phone number link */
        text-decoration: none; /* Remove underline from the link */
        width: 90%;
        color: white; 
        background-color: transparent; 
        margin-left: 8%; 
        margin-top: 10%;
      }
      


  }
  
@media  (max-width: 600px) {

  
    .cart {
  
      margin-left: 25px;
    }
    .top-banner a {
        color: #FFD700; /* Gold color for the phone number link */
        text-decoration: none; /* Remove underline from the link */
        width: 90%;
        color: white; 
        background-color: transparent; 
        margin-left: 8%; 
        margin-top: 25px;
      }
      


  }
    
@media  (width: 712px) {

    .navbar{
        padding-top: 5px;
        margin-top: 15px;
    }

  
    .cart {
  
      margin-left: 25px;
    }
    .top-banner a {
        color: #FFD700; /* Gold color for the phone number link */
        text-decoration: none; /* Remove underline from the link */
        width: 90%;
        color: white; 
        background-color: transparent; 
        margin-left: 8%; 
        margin-top: 12px;
      }
      


  }

  @media (width: 800px) {
    
.cart{
    margin-left: 20px;
}
    
  }

@media (max-width: 475px) {

/* Equipment Section */
.equipment-section {
    padding-top: 80px;
    background-image: url('/static/SPAPHOTOS/imagex.jpg');
    margin-bottom: 0;
    margin-top: 8px;
}

.equipment-section h2 {
    margin-top: 75px;
    padding: 5px;
    margin-left: 10px;
    color: black;
    display: flex;
    font-size: 20px;
    font-weight: 300;
}

.checkmark {
    margin-right: 8px; /* Space between the tick and the text */
    color: white; /* Adjust color as needed */
    font-size: 2rem; /* Increase size for thickness */
    font-weight: bold; /* Make it bold */
    transform: scaleY(1.5); /* Stretch vertically for longer appearance */
    margin-top: -20px;
}

/* Equipment Container Grid */
.equipment-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Change to 2 columns for 475px */
    justify-items: center; /* Centers items horizontally */
    padding: 2px;
}

/* Equipment Card Hover Effect */
.equipment-card:hover {
    transform: scale(1.05);
}

.scroll-arrow {
    cursor: pointer;
    color: transparent;
    background-color: transparent;
    border-radius: 50%;
    padding: 0;
    transition: background-color 0.3s, transform 0.3s ease;
    display: none;
}

.scroll-arrow:hover {
    background-color: #f0a500; /* Golden highlight */
    transform: scale(1.1);
}

/* Equipment Card Image Styling */
.equipment-card img {
    width: 80px; /* Slightly larger width */
    height: 90px; /* Adjust height to match */
    border-radius: 10%;
    object-fit: cover;
    margin-bottom: 8px;
}

.equipment-card p {
    margin-top: 8px;
    font-weight: 600;
    font-size: 0.9rem; /* Slightly larger font */
    color: #333;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 12px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Product Containers (Grid layout) */
.product-container,
.additional-product-container,
.furniture-container,
.clothing-container,
.phones-container,
.tools-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Keep 2 items per row on 475px */
    gap: 10px; /* Slightly larger gap */
    padding: 10px;
    margin-left: -5px;
    background-color: black;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Product Heading */
h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: goldenrod;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 10px;
    padding-top: 20px;
    margin-left: 20px;
    margin-top: 20px;
}

/* Product Navigation */
.product-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 5px 0;
    background-color: black;
}

/* Product Box Styling */
.box {
    background-color: #fff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    height: min-content;
    width: 100%; /* Full width */
    max-width: 220px; /* Limiting the max width */
    height: 250px;
}

/* Hover Effect for Product Boxes */
.box:hover {
    transform: scale(1.05);
}

/* Main Content Container */
.main-content {
    width: 100%;
}

.main-content-container {
    width: 100%;
    margin: 0 auto;
    padding: 2px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
}

/* Image Box */
.img-box {
    width: 100%;
    height: 250px; /* Slightly larger height for consistency */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    padding: 2px;
}

/* Product Name and Price Styling */
.bottom {
    text-align: center;
    padding: 8px 0;
}

.bottom p {
    font-size: 12px; /* Slightly larger text for product description */
    font-weight: 600;
    color: #333;
    margin-top: 8px;
}

.bottom h2 {
    font-size: 14px; /* Slightly larger text for product name */
    color: #f0a500;
    margin-top: 5px;
}

/* Product Link Styling */
.prdetails-link {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 18px; /* Larger padding */
    background-color: #f0a500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.prdetails-link:hover {
    background-color: #d88700;
}

/* Section Styling */
section {
    margin-bottom: 20px;
}

.product-container,
.additional-product-container,
.furniture-container,
.clothing-container,
.phones-container,
.tools-container {
    grid-template-columns: repeat(2, 1fr); /* Ensure two items per row */
}

.box {
    width: 100%; /* Full width of grid container */
    padding: 5px;
}

.bottom p {
    font-size: 12px; /* Slightly larger product description font */
}

.bottom h2 {
    font-size: 14px; /* Slightly larger product name font */
}

.prdetails-link {
    padding: 8px 16px; /* Larger padding for mobile */
}


}
@media (max-width: 360px) {


.equipment-section {
    padding-top: 80px;
    background-image: url('/static/SPAPHOTOS/imagex.jpg');
    margin-bottom: 0;
    margin-top: 8px;
}
.equipment-section h2{
    margin-top: 75px;
    padding: 5px;
    margin-left: 10px;
    color: black;
    display: flex;
    font-size: 21px;
    font-weight: 300;

}


.checkmark {
    margin-right: 8px; /* Space between the tick and the text */
    color: white; /* Adjust color as needed */
    font-size: 2rem; /* Increase size for thickness */
    font-weight: bold; /* Make it bold */
    transform: scaleY(1.5); /* Stretch vertically for longer appearance */
    margin-top:-20px ;
}
.equipment-container {
    display: grid; /* Change to grid for the same style as your previous request */
    grid-template-columns: repeat(3, 1fr); /* Two equal columns */
    justify-items: center; /* Centers items horizontally */
    padding: 2px;
}



.equipment-card:hover {
    transform: scale(1.05);
}

.scroll-arrow {
    cursor: pointer;
    color: transparent;
    background-color: transparent;
    border-radius: 50%;
    padding: 0;
    transition: background-color 0.3s, transform 0.3s ease;
    display: none;
}

.scroll-arrow:hover {
    background-color: #f0a500; /* Golden highlight */
    transform: scale(1.1);
}

.equipment-card img {
    width: 70px;  /* Adjust width as needed */
    height: 80px; /* Adjust height to match */
    border-radius: 10%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image covers the dimensions without distortion */
    margin-bottom: 8px; /* Space between the image and text */
}
.equipment-card p {
    margin-top: 8px;
    font-weight: 600; /* Semi-bold for a balanced look */
    font-size: 0.8rem; /* Adjust font size for readability */
    color: #333; /* Darker color for better legibility */
    line-height: 1.5; /* Improve line spacing for clarity */
    text-transform: capitalize; /* Optional: Capitalize the first letter of each word for consistency */
    margin-bottom: 12px; /* Add bottom margin for spacing between paragraphs */
    padding: 10px; /* Padding to give text room inside the background */
    background-color: #f9f9f9; /* Light background color for contrast */
    border-radius: 8px; /* Rounded corners for a soft look */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Subtle box shadow for depth */
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Smooth transition effects */
}
/* Product containers (Grid layout) */
.product-container,
.additional-product-container,
.furniture-container,
.clothing-container,
.phones-container,
.tools-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 items per row on small screens */
    gap: 8px; /* Reduced gap */
    padding: 5px;
    margin-left: -5px;
    background-color: black;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Removed overflow-x and scroll-snap-type */
}
h3 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 10px;
    padding-top: 20px;
    margin-left: 20px;
    margin-top: 20px;
}

/* Product navigation (scroll arrows) */
.product-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 5px 0;
    background-color:black;
}

/* Product box styling */
.box {
    background-color: #fff;
    border-radius: 8px; /* Slightly smaller border radius */
    padding: 5px; /* Reduced padding */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    height: min-content;
    margin-left: 0px;
    width: 220px;
    height: 250px;

}

/* Hover effect for product boxes */
.box:hover {
    transform: scale(1.05);
}

.main-content{
    width:100% ;
}
.main-content-container {
    width: 100%;
    margin: 0 auto;
    padding: 2px;
    display: flex
;
    flex-direction: column;
    gap: 5px;
    margin-top: 20px;
}

/* Image styling inside the box */
.img-box {
    width: 100%;
    height: 250px; /* Smaller fixed height for images */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    padding: 5px;
}

/* Product name and price styling */
.bottom {
    text-align: center;
    padding: 8px 0;
}

.bottom p {
    font-size: 12px; /* Smaller font size for product description */
    font-weight: 600;
    color: #333;
    margin-top: 8px;
}

.bottom h2 {
    font-size: 14px; /* Smaller font size for product name */
    color: #f0a500;
    margin-top: 5px;
}

/* Product link styling */
.prdetails-link {
    display: inline-block;
    margin-top: 8px; /* Reduced margin */
    padding: 6px 16px;
    background-color: #f0a500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.prdetails-link:hover {
    background-color: #d88700;
}

/* Section margin */
section {
    margin-bottom: 20px; /* Reduced bottom margin */

    /* Adjusting grid layout */
    .product-container,
    .additional-product-container,
    .furniture-container,
    .clothing-container,
    .phones-container,
    .tools-container {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
    }

    /* Adjusting box width and padding */
    .box {
        width: 100%; /* Full width of grid container */
        padding: 8px; /* Smaller padding */
    }


    /* Adjust font size */
    .bottom p {
        font-size: 10px; /* Smaller product description font */
    }

    .bottom h2 {
        font-size: 12px; /* Smaller product name font */
    }

    .prdetails-link {
        padding: 6px 12px; /* Smaller padding for mobile */
    }
}


}

@media (max-width: 500px) {

  
          .navbar-nav a {
              display: flex
      ;
              flex-direction: row;
              align-items: center;
              justify-content: center;
              font-size: 10px;
              margin-right: auto;
              justify-content:center ;
              padding: 1px;
              margin: 2px;
          }
          
          .navbar-nav a i{
            display: flex
    ;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            margin-right: auto;
            justify-content:center ;
            padding: 0;
            margin: 0;
        }
      
          .logo{
      
            margin-left: -5px;
      
          }
      
          .logo img{
      
            width: 50px;
          }
      
          .cart{
            margin-left: 5px;
            width: 60px;
          }

          .cart p {
            height: 22px;
            width: 100%;
            display: flex
        ;
            align-items: center;
            justify-content: center;
            border-radius: 22px;
            background-color: var(--goldenrod);
            color: var(--white);
            padding: 5px;
        }
/* Equipment Section */
.equipment-section {
    padding-top: 80px;
    background-image: url('/static/SPAPHOTOS/imagex.jpg');
    margin-bottom: 0;
    margin-top: 8px;
}
#login {
    font-size: 18px;
    font-weight: bold;
    color: goldenrod;
    text-decoration: none;
    position: relative;
    margin-bottom: 0;
    animation: none;
    cursor: default;
}

.equipment-section h2 {
    margin-top: 75px;
    padding: 5px;
    margin-left: 10px;
    color: black;
    display: flex;
    font-size: 20px;
    font-weight: 300;
}

.checkmark {
    margin-right: 8px; /* Space between the tick and the text */
    color: white; /* Adjust color as needed */
    font-size: 2rem; /* Increase size for thickness */
    font-weight: bold; /* Make it bold */
    transform: scaleY(1.5); /* Stretch vertically for longer appearance */
    margin-top: -20px;
}

/* Equipment Container Grid */
.equipment-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Change to 2 columns for 475px */
    justify-items: center; /* Centers items horizontally */
    padding: 2px;
}
.equipment-card {
    padding: 2px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #0a006850;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3sease;
}

/* Equipment Card Hover Effect */
.equipment-card:hover {
    transform: scale(1.05);
}

.scroll-arrow {
    cursor: pointer;
    color: transparent;
    background-color: transparent;
    border-radius: 50%;
    padding: 0;
    transition: background-color 0.3s, transform 0.3s ease;
    display: none;
}

.scroll-arrow:hover {
    background-color: #f0a500; /* Golden highlight */
    transform: scale(1.1);
}

/* Equipment Card Image Styling */
.equipment-card img {
    width: 80px; /* Slightly larger width */
    height: 90px; /* Adjust height to match */
    border-radius: 10%;
    object-fit: cover;
    margin-bottom: 8px;
}

.equipment-card p {
    margin-top: 8px;
    font-weight: 600;
    font-size: 0.9rem; /* Slightly larger font */
    color: #333;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 12px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Product Containers (Grid layout) */
.product-container,
.additional-product-container,
.furniture-container,
.clothing-container,
.phones-container,
.tools-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Keep 2 items per row on 475px */
    gap: 10px; /* Slightly larger gap */
    padding: 10px;
    margin-left: -5px;
    background-color: black;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Product Heading */
.main-content h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 10px;
    padding-top: 20px;
    margin-left: 20px;
    margin-top: 20px;
}

/* Product Navigation */
.product-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 5px 0;
    background-color: black;
}

/* Product Box Styling */
.box {
    background-color: #fff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease-in-out;
    height: min-content;
    width: 100%; /* Full width */
    max-width: 220px; /* Limiting the max width */
    height: 250px;
}

/* Hover Effect for Product Boxes */
.box:hover {
    transform: scale(1.05);
}

/* Main Content Container */
.main-content {
    width: 100%;
}

.main-content-container {
    width: 100%;
    margin: 0 auto;
    padding: 2px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 5px;
}

/* Image Box */
.img-box {
    width: 100%;
    height: 250px; /* Slightly larger height for consistency */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    padding: 2px;
}

/* Product Name and Price Styling */
.bottom {
    text-align: center;
    padding: 8px 0;
}

.bottom p {
    font-size: 12px; /* Slightly larger text for product description */
    font-weight: 600;
    color: #333;
    margin-top: 8px;
}

.bottom h2 {
    font-size: 14px; /* Slightly larger text for product name */
    color: #f0a500;
    margin-top: 5px;
}

/* Product Link Styling */
.prdetails-link {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 18px; /* Larger padding */
    background-color: #f0a500;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.prdetails-link:hover {
    background-color: #d88700;
}

/* Section Styling */
section {
    margin-bottom: 20px;
}

.product-container,
.additional-product-container,
.furniture-container,
.clothing-container,
.phones-container,
.tools-container {
    grid-template-columns: repeat(2, 1fr); /* Ensure two items per row */
}

.box {
    width: 100%; /* Full width of grid container */
    padding: 5px;
}

.bottom p {
    font-size: 12px; /* Slightly larger product description font */
}

.bottom h2 {
    font-size: 14px; /* Slightly larger product name font */
}

.prdetails-link {
    padding: 8px 16px; /* Larger padding for mobile */
}



}
/* Media Query for screen width between 500px and 769px */
@media (min-width: 502px) and (max-width: 769px) {

    /* Equipment Section */
.equipment-section {
    padding-top: 80px;
    background-image: url('/static/SPAPHOTOS/imagex.jpg');
    margin-bottom: 0;
    margin-top: 8px;
    padding-bottom: 5px;
}

.equipment-section h2 {
    margin-top: 75px;
    padding: 5px;
    margin-left: 10px;
    color: black;
    display: flex;
    font-size: 20px;
    font-weight: 300;
}

.checkmark {
    margin-right: 8px; /* Space between the tick and the text */
    color: white; /* Adjust color as needed */
    font-size: 2rem; /* Increase size for thickness */
    font-weight: bold; /* Make it bold */
    transform: scaleY(1.5); /* Stretch vertically for longer appearance */
    margin-top: -20px;
}

    /* Equipment Container Grid */
    .equipment-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns for 770px to 969px */
        justify-items: center;
        padding: 15px; /* More padding for spacious layout */
        margin-top: 20px;
    }
    .equipment-card{
        width: 120px;
        
    }

/* Equipment Card Hover Effect */
.equipment-card:hover {
    transform: scale(1.05);
}

.scroll-arrow {
    cursor: pointer;
    color: transparent;
    background-color: transparent;
    border-radius: 50%;
    padding: 0;
    transition: background-color 0.3s, transform 0.3s ease;
    display: none;
}

.scroll-arrow:hover {
    background-color: #f0a500; /* Golden highlight */
    transform: scale(1.1);
}

/* Equipment Card Image Styling */
.equipment-card img {
    width: 80px; /* Slightly larger width */
    height: 90px; /* Adjust height to match */
    border-radius: 10%;
    object-fit: cover;
    margin-bottom: 8px;
}

.equipment-card p {
    margin-top: 8px;
    font-weight: 600;
    font-size: 0.9rem; /* Slightly larger font */
    color: #333;
    line-height: 1.5;
    text-transform: capitalize;
    margin-bottom: 12px;
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

    /* Product Containers (Grid layout) */
    .product-container,
    .additional-product-container,
    .furniture-container,
    .clothing-container,
    .phones-container,
    .tools-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 items per row on 500px - 769px */
        gap: 15px;
        padding: 15px;
        margin-left: -5px;
        background-color: black;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Product Heading */
    h3 {
        font-size: 16px; /* Larger heading text */
        font-weight: 600;
        margin-bottom: 20px;
        color: goldenrod;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding-left: 12px;
        padding-top: 20px;
        margin-left: 20px;
        margin-top: 20px;
    }

    /* Product Navigation */
    .product-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 100%;
        margin: 5px 0;
        background-color: black;
    }

    /* Product Box Styling */
    .box {
        background-color: #fff;
        border-radius: 8px;
        padding: 12px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease-in-out;
        height: min-content;
        width: 100%;
        max-width: 250px;
        height: 300px;
    }

    /* Hover Effect for Product Boxes */
    .box:hover {
        transform: scale(1.05);
    }

    /* Main Content Container */
    .main-content {
        width: 100%;
    }

    .main-content-container {
        width: 100%;
        margin: 0 auto;
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    /* Image Box */
    .img-box {
        width: 100%;
        height: 300px; /* Larger height for consistency */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Ensure aspect ratio is maintained */
        border-radius: 8px;
        padding: 8px;
    }

    /* Product Name and Price Styling */
    .bottom {
        text-align: center;
        padding: 12px 0; /* Increased padding */
    }

    .bottom p {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-top: 8px;
    }

    .bottom h2 {
        font-size: 16px;
        color: #f0a500;
        margin-top: 5px;
    }

    /* Product Link Styling */
    .prdetails-link {
        display: inline-block;
        margin-top: 10px;
        padding: 12px 24px; /* Larger padding */
        background-color: #f0a500;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: background-color 0.3s;
    }

    .prdetails-link:hover {
        background-color: #d88700;
    }

    /* Section Styling */
    section {
        margin-bottom: 20px;
    }

    .product-container,
    .additional-product-container,
    .furniture-container,
    .clothing-container,
    .phones-container,
    .tools-container {
        grid-template-columns: repeat(3, 1fr); /* Ensure 3 items per row */
    }

    .box {
        width: 100%; /* Full width of grid container */
        padding: 12px;
    }

    .bottom p {
        font-size: 14px; /* Larger product description font */
    }

    .bottom h2 {
        font-size: 16px; /* Larger product name font */
    }

    .prdetails-link {
        padding: 12px 24px; /* Larger padding */
    }
}

/* Media Query for screen width between 770px and 969px */
@media (min-width: 770px) and (max-width: 969px) {

    /* Equipment Section */
    .equipment-section {
        padding-top: 80px;
        background-image: url('/static/SPAPHOTOS/imagex.jpg');
        margin-bottom: 0;
        margin-top: 20px;
        padding-bottom: 5px;
    }

    .equipment-section h2 {
        margin-top: 75px;
        padding: 5px;
        margin-left: 10px;
        color: black;
        display: flex;
        font-size: 24px; /* Larger font size for this screen width */
        font-weight: 300;
    }

    .checkmark {
        margin-right: 8px;
        color: white;
        font-size: 3rem; /* Slightly larger checkmark */
        font-weight: bold;
        transform: scaleY(1.5);
        margin-top: -20px;
    }

    /* Equipment Container Grid */
    .equipment-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns for 770px to 969px */
        justify-items: center;
        padding: 15px; /* More padding for spacious layout */
        margin-top: 20px;
    }
    .equipment-card{
        width: 120px;
        
    }
    /* Equipment Card Hover Effect */
    .equipment-card:hover {
        transform: scale(1.05);
    }

    .scroll-arrow {
        cursor: pointer;
        color: transparent;
        background-color: transparent;
        border-radius: 50%;
        padding: 0;
        transition: background-color 0.3s, transform 0.3s ease;
        display: none;
    }

    .scroll-arrow:hover {
        background-color: #f0a500; /* Golden highlight */
        transform: scale(1.1);
    }

    /* Equipment Card Image Styling */
    .equipment-card img {
        width: 100px; /* Adjusted for better layout */
        height: 110px;
        border-radius: 10%;
        object-fit: contain; /* Ensuring the images scale properly */
        margin-bottom: 10px;
    }

    .equipment-card p {
        margin-top: 10px;
        font-weight: 600;
        font-size: 1.1rem; /* Slightly larger font for readability */
        color: #333;
        line-height: 1.5;
        text-transform: capitalize;
        margin-bottom: 12px;
        padding: 14px;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    }

    /* Product Containers (Grid layout) */
    .product-container,
    .additional-product-container,
    .furniture-container,
    .clothing-container,
    .phones-container,
    .tools-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 items in the first row */
        grid-template-rows: repeat(1, auto); /* 1 item in the second row */
        gap: 20px; /* Larger gap for better spacing */
        padding: 20px;
        margin-left: -5px;
        background-color: black;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Product Heading */
    h3 {
        font-size: 18px; /* Larger heading text */
        font-weight: 600;
        margin-bottom: 20px;
        color: goldenrod;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding-left: 15px;
        padding-top: 20px;
        margin-left: 20px;
        margin-top: 20px;
    }

    /* Product Navigation */
    .product-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 100%;
        margin: 5px 0;
        background-color: black;
    }

    /* Product Box Styling */
    .box {
        background-color: #fff;
        border-radius: 8px;
        padding: 14px; /* Larger padding for better content fitting */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease-in-out;
        height: min-content;
        width: 100%;
        max-width: 270px; /* Slightly larger max width for each box */
        height: 320px; /* Increased height for consistency */
    }

    /* Hover Effect for Product Boxes */
    .box:hover {
        transform: scale(1.05);
    }

    /* Main Content Container */
    .main-content {
        width: 100%;
    }

    .main-content-container {
        width: 100%;
        margin: 0 auto;
        padding: 15px; /* Increased padding */
        display: flex;
        flex-direction: column;
        gap: 15px; /* Larger gap between items */
        margin-top: 20px;
    }

    /* Image Box */
    .img-box {
        width: 100%;
        height: 320px; /* Larger height for consistency */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Ensures image aspect ratio is maintained */
        border-radius: 8px;
        padding: 10px;
    }

    /* Product Name and Price Styling */
    .bottom {
        text-align: center;
        padding: 14px 0; /* Increased padding for balance */
    }

    .bottom p {
        font-size: 16px; /* Larger product description font */
        font-weight: 600;
        color: #333;
        margin-top: 8px;
    }

    .bottom h2 {
        font-size: 18px; /* Larger product name font */
        color: #f0a500;
        margin-top: 5px;
    }

    /* Product Link Styling */
    .prdetails-link {
        display: inline-block;
        margin-top: 12px;
        padding: 14px 28px; /* Larger padding for better clickability */
        background-color: #f0a500;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: background-color 0.3s;
    }

    .prdetails-link:hover {
        background-color: #d88700;
    }

    /* Section Styling */
    section {
        margin-bottom: 20px;
    }

    .product-container,
    .additional-product-container,
    .furniture-container,
    .clothing-container,
    .phones-container,
    .tools-container {
        grid-template-columns: repeat(4, 1fr); /* 4 items per row */
        grid-template-rows: repeat(1, auto); /* 1 item in the second row */
    }

    .box {
        width: 100%; /* Full width of grid container */
        padding: 14px;
    }

    .bottom p {
        font-size: 16px; /* Larger product description font */
    }

    .bottom h2 {
        font-size: 18px; /* Larger product name font */
    }

    .prdetails-link {
        padding: 14px 28px; /* Larger padding for mobile */
    }
}
@media (min-width: 969.1px) and (max-width: 1170px) {

    /* Equipment Section */
    .equipment-section {
        padding-top: 100px;
        background-image: url('/static/SPAPHOTOS/imagex.jpg');
        margin-bottom: 0;
        margin-top: 8px;
    }

    .equipment-section h2 {
        margin-top: 85px;
        padding: 5px;
        margin-left: 10px;
        color: black;
        display: flex;
        font-size: 28px; /* Larger font size for this screen width */
        font-weight: 300;
    }

    .checkmark {
        margin-right: 10px;
        color: white;
        font-size: 3.5rem; /* Slightly larger checkmark */
        font-weight: bold;
        transform: scaleY(1.5);
        margin-top: -25px;
    }

    /* Equipment Container Grid */
    .equipment-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 columns for 970px to 1170px */
        justify-items: center;
        padding: 20px; /* More padding for spacious layout */
    }

    .equipment-card {
        width: 120px;

    }

    /* Equipment Card Hover Effect */
    .equipment-card:hover {
        transform: scale(1.05);
    }

    .scroll-arrow {
        cursor: pointer;
        color: transparent;
        background-color: transparent;
        border-radius: 50%;
        padding: 0;
        transition: background-color 0.3s, transform 0.3s ease;
        display: none;
    }

    .scroll-arrow:hover {
        background-color: #f0a500; /* Golden highlight */
        transform: scale(1.1);
    }

    /* Equipment Card Image Styling */
    .equipment-card img {
        width: 120px; /* Adjusted for better layout */
        height: 130px;
        border-radius: 10%;
        object-fit: contain; /* Ensuring the images scale properly */
        margin-bottom: 12px;
    }

    .equipment-card p {
        margin-top: 12px;
        font-weight: 600;
        font-size: 1.2rem; /* Slightly larger font for readability */
        color: #333;
        line-height: 1.5;
        text-transform: capitalize;
        margin-bottom: 15px;
        padding: 16px;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    }

    /* Product Containers (Grid layout) */
    .product-container,
    .additional-product-container,
    .furniture-container,
    .clothing-container,
    .phones-container,
    .tools-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* 4 items per row */
        gap: 25px; /* Larger gap for better spacing */
        padding: 25px;
        margin-left: -5px;
        background-color: black;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Product Heading */
    h3 {
        font-size: 20px; /* Larger heading text */
        font-weight: 600;
        margin-bottom: 20px;
        color: goldenrod;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding-left: 18px;
        padding-top: 20px;
        margin-left: 20px;
        margin-top: 25px;
    }

    /* Product Navigation */
    .product-navigation {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        width: 100%;
        margin: 5px 0;
        background-color: black;
    }

    /* Product Box Styling */
    .box {
        background-color: #fff;
        border-radius: 8px;
        padding: 16px; /* Larger padding for better content fitting */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease-in-out;
        height: min-content;
        width: 100%;
        max-width: 300px; /* Slightly larger max width for each box */
        height: 300px; /* Increased height for consistency */
    }

    /* Hover Effect for Product Boxes */
    .box:hover {
        transform: scale(1.05);
    }

    /* Main Content Container */
    .main-content {
        width: 100%;
    }

    .main-content-container {
        width: 100%;
        margin: 0 auto;
        padding: 20px; /* Increased padding */
        display: flex;
        flex-direction: column;
        gap: 20px; /* Larger gap between items */
        margin-top: 30px;
    }

    /* Image Box */
    .img-box {
        width: 100%;
        height: 350px; /* Larger height for consistency */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .img-box img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* Ensures image aspect ratio is maintained */
        border-radius: 8px;
        padding: 12px;
    }

    /* Product Name and Price Styling */
    .bottom {
        text-align: center;
        padding: 8px 0; /* Increased padding for balance */
    }

    .bottom p {
        font-size: 12px; /* Larger product description font */
        font-weight: 600;
        color: #333;
        margin-top: 10px;
    }

    .bottom h2 {
        font-size: 16px; /* Larger product name font */
        color: #f0a500;
        margin-top: 8px;
    }

    /* Product Link Styling */
    .prdetails-link {
        display: inline-block;
        margin-top: 15px;
        padding: 16px 32px; /* Larger padding for better clickability */
        background-color: #f0a500;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: background-color 0.3s;
    }

    .prdetails-link:hover {
        background-color: #d88700;
    }

    /* Section Styling */
    section {
        margin-bottom: 25px;
    }
}
