/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

/* Header Styles */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.logo-left img,
.logo-right img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.main-heading {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

.main-heading h1 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Content Styles */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

/* Category Box Styles */
.category-box {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.category-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-box:hover .category-image img {
    transform: scale(1.05);
}

.category-content h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: bold;
}

.category-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.subcategory-count {
    background: red;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
}

/* Product Page Styles */
.product-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-details {
    padding-right: 20px;
}

.product-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
}

.product-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-description ul {
    margin: 20px 0;
    padding-left: 20px;
}

.product-description li {
    margin-bottom: 8px;
    color: #666;
}

.product-link {
    margin-top: 30px;
}

.buy-now-btn {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-now-btn:hover {
    background: linear-gradient(45deg, #c0392b, #a93226);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}
.arbi{
    font-family: cairo;
    color: red;
    font-size: 2rem;
}
.product-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-image-box {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-image-box img {
    width: 80%;
    height: 100%;
    object-fit: cover;
}

.price-box {
    background: red;
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
    width: 100%;
}
.play {
    background: red;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
    width: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.video {
    
}
/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    .logo-left,
    .logo-right {
        margin: 10px 0;
    }

    .main-heading h1 {
        font-size: 1.8rem;
        margin: 20px 0;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 20px 0;
    }

    .product-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .product-details {
        padding-right: 0;
    }

    .product-title {
        font-size: 2rem;
    }

    .product-image-box {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .main-heading h1 {
        font-size: 1.4rem;
    }

    .category-box {
        padding: 20px;
    }

    .category-content h3 {
        font-size: 1.5rem;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .buy-now-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .price {
        font-size: 2rem;
    }
}

    /* Overlay modal */
    .overlay {
      position: fixed; inset: 0; display: none; place-items: center;
      background: var(--overlay-bg); backdrop-filter: blur(2px); z-index: 9999;
      padding: 14px;
    }
    .overlay.open { display: grid; }

    .modal {
      position: relative; width: min(20vw, 900px); aspect-ratio: 9 / 16; background: #000; border-radius: 14px; overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,.35);
    }
    .modal video, .modal iframe { width: 100%; height: 100%; display: block; background: #000; }

    .close {
      position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
      background: rgba(255,255,255,.9);
      font-size: 20px; line-height: 38px; text-align: center;
    }
.whatsapp-share {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 5px;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.whatsapp-share:hover {
  background-color: #1DA851;
}
