/* Product Page Custom Styles */

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

.top-bar {
    background-color: #1a1a1a;
    color: #fff;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff0000;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff0000;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.social-icon:hover {
    color: #ff0000;
}

.navbar {
    background-color: #000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #ff0000;
}
.logo img {
    width: 150px;
}
.search-bar {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border: 1px solid #ff0000;
    border-radius: 4px;
    padding: 0.5rem;
    width: 40%;
}
.search-bar input {
    border: none;
    outline: none;
    width: 100%;
    padding: 0.5rem;
    background: #1a1a1a;
    color: #fff;
}
.search-bar input::placeholder {
    color: #666;
}
.search-bar button {
    background: none;
    border: none;
    color: #ff0000;
    cursor: pointer;
    padding: 0.5rem;
}
.cart-icon {
    color: #ff0000;
    font-size: 1.5rem;
    position: relative;
    cursor: pointer;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff0000;
    color: white;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
}

.category-nav {
    background-color: #1a1a1a;
    padding: 0.5rem 2rem;
    border-bottom: 2px solid #ff0000;
}
.category-links {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 2rem;
}
.category-links a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
   
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.category-links a:hover,
.category-links a.active {
    color: #ff0000;
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(255,0,0,0.2);
    border-radius: 4px;
    padding: 0.5rem 0;
    z-index: 1000;
    border: 1px solid #ff0000;
}
.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown-menu li {
    list-style: none;
}
.dropdown-menu a {
    color: #fff;
    padding: 0.5rem 1rem;
    display: block;
}
.dropdown-menu a:hover {
    background-color: #ff0000;
    color: #fff;
}

.site-footer {
    background: #000;
    color: white;
    padding: 50px 20px 20px;
    font-size: 14px;
}
.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}
.footer-left {
    flex: 1 1 250px;
}
.footer-logo {
    width: 150px;
    margin-bottom: 10px;
}
.footer-left p {
    margin-bottom: 10px;
    color: #ddd;
}
.social-icons span {
    margin-right: 10px;
    font-size: 20px;
    cursor: pointer;
}
.footer-col {
    flex: 1 1 200px;
}
.footer-col h4 {
    margin-bottom: 15px;
    color: white;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 8px;
    color: #ccc;
}
.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
}
.footer-col ul li a:hover {
    color: red;
}
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: #999;
    border-top: 1px solid #222;
    padding-top: 15px;
}

.about-banner {
    position: relative;
    height: 350px;
    background: url('../IMAGES/banner/19-min.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-banner h1 {
    color: #fff;
    font-size: 2.8em;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px #111;
    text-transform: uppercase;
}

.about-section {
    background: #000;
    padding: 40px 0 60px 0;
}
.about-title {
    color: #ff0000;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.card-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
.card {
    background: #fff;
    color: #000;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(255,0,0,0.08);
    width: 300px;
    padding: 24px 18px 18px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
}
.card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(255,0,0,0.13);
}
.card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 16px;
    background: #f8f8f8;
}
.card h3 {
    font-size: 1.08em;
    margin: 10px 0 8px 0;
    font-weight: bold;
    min-height: 48px;
}
.card p {
    margin: 2px 0;
}
.btn-group {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    justify-content: center;
    position: relative;
    z-index: 3;
    pointer-events: auto;
}
.btn-group button, .btn-group .btn {
    pointer-events: auto;
}
.card .btn-group {
    pointer-events: auto;
}
.card .btn-group * {
    pointer-events: auto;
}
.card-link {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 2;
    cursor: pointer;
    text-decoration: none;
    background: transparent;
    pointer-events: auto;
}
.card:hover .card-link {
    background: rgba(255,0,0,0.04);
}
.btn.red {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 8px 22px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(255,0,0,0.08);
    letter-spacing: 0.5px;
}
.btn.buy-now:hover {
    background: #b30000;
}
.btn.add-cart {
    background: #fff;
    color: #ff0000;
    border: 2px solid #ff0000;
    padding: 8px 22px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 700;
    transition: background 0.2s, color 0.2s, border 0.2s;
    margin-left: 0;
    letter-spacing: 0.5px;
}
.btn.add-cart:hover {
    background: #ff0000;
    color: #fff;
    border: 2px solid #b30000;
}

@media (max-width: 1200px) {
    .card-row {
        gap: 24px;
    }
}
@media (max-width: 900px) {
    .card-row {
        flex-wrap: wrap;
        gap: 18px;
    }
    .card {
        width: 45vw;
        min-width: 220px;
        max-width: 340px;
    }
}
@media (max-width: 600px) {
    .about-banner {
        height: 120px;
    }
    .about-banner h1 {
        font-size: 1.2em;
    }
    .about-title {
        font-size: 1.1em;
    }
    .about-section {
        padding: 20px 0 30px 0;
    }
    .card-row {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    .card {
        width: 95vw;
        min-width: 0;
        max-width: 99vw;
        padding: 12px 6px 10px 6px;
    }
    .card img {
        height: 120px;
    }
    .btn-group {
        flex-direction: column;
        gap: 6px;
    }
    .btn.buy-now, .btn.add-cart {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
} 