/* === Hero Section (Gray Background) === */


/* (keep your general styles) */


/* === Our Collections Section === */

.collections {
    height: 470px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.collections .container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.collections h2 {
    color: #d4af37;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    height: calc(100% - 80px);
}

.product-item {
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
}

.product-item:nth-child(even) {
    flex-direction: row-reverse;
}

.product-img {
    width: 160px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.product-img:hover {
    transform: scale(1.05);
}

.product-content {
    max-width: 280px;
}

.product-content h3 {
    color: #d4af37;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.product-content p {
    color: #070707;
    font-size: 0.95rem;
    line-height: 1.5;
}


/* === Responsive === */

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: 1fr;
        height: calc(100% - 100px);
    }
    .product-item {
        flex-direction: row !important;
    }
}

@media (max-width: 576px) {
    .collections h2 {
        font-size: 2.5rem;
    }
    .product-img {
        width: 140px;
    }
    .product-content {
        max-width: 100%;
    }
}


/* === Top Rated Section === */

.top-rated {
    min-height: 550px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    padding: 30px 0;
}

.top-rated .container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.top-rated h2 {
    color: #d4af37;
    font-size: 3.2rem;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.carousel-container {
    position: relative;
    height: calc(100% - 60px);
    display: flex;
    align-items: center;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-arrow.left {
    left: 10px;
}

.carousel-arrow.right {
    right: 10px;
}

.product-list {
    display: flex;
    gap: 25px;
    overflow: hidden;
    height: 100%;
    padding: 0 60px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 280px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card:first-child {
    background: #ffe6e6;
    /* لون وردي خفيف */
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #d4af37;
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.85rem;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.rating {
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #666;
    cursor: pointer;
}

.dot.active {
    background: #d4af37;
}


/* === Responsive === */

@media (max-width: 1200px) {
    .product-list {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .product-list {
        flex-wrap: wrap;
        padding: 0 20px;
        height: auto;
    }
    .product-card {
        width: calc(50% - 12.5px);
    }
}

@media (max-width: 768px) {
    .product-card {
        width: 100%;
    }
    .carousel-arrow {
        display: none;
    }
    .carousel-dots {
        display: none;
    }
}


/* === Become a Partner Section === */

.partner-section {
    height: 450px;
    background-color: #b8c6d9;
    position: relative;
    overflow: hidden;
}

.partner-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.text-content {
    flex: 1;
    max-width: 500px;
}

.text-content h2 {
    color: #d4af37;
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
}

.text-content p {
    color: #d4af37;
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.visual-elements {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}


/* .partner-image {
    height: 350px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2;
} */


/* === Decorative Elements === */

.partner-section .decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.partner-section .curve {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 3px solid #d4af37;
    border-radius: 50%;
    top: -150px;
    left: -180px;
    transform: rotate(45deg);
    opacity: 0.7;
}

.partner-section .sphere {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.partner-section .sphere.white {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #fff, #e0e0e0);
    bottom: 50px;
    right: 100px;
}

.partner-section .sphere.gold {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, #d4af37, #b8860b);
    top: 100px;
    right: 150px;
}


/* === Responsive === */

@media (max-width: 992px) {
    .partner-content {
        flex-direction: column;
        text-align: center;
    }
    .text-content {
        margin-bottom: 30px;
    }
    .visual-elements {
        justify-content: center;
    }
    .partner-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .text-content h2 {
        font-size: 2.2rem;
    }
    .text-content p {
        font-size: 1rem;
    }
    .partner-image {
        height: 200px;
    }
    .partner-section .curve {
        width: 400px;
        height: 400px;
        top: -100px;
        left: -120px;
    }
    .partner-section .sphere.white {
        width: 80px;
        height: 80px;
        bottom: 30px;
        right: 80px;
    }
    .partner-section .sphere.gold {
        width: 60px;
        height: 60px;
        top: 80px;
        right: 120px;
    }
}


/* === Affiliate Section === */

.affiliate-section {
    min-height: 700px;
    background-color: #000;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar {
    display: flex;
    justify-content: space-around;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    color: #d4af37;
}

.stat-item span {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: #fff;
    margin: 0;
}

.affiliate-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.product-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.product-visual img {
    height: 450px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.product-visual img:hover {
    transform: rotateY(10deg) scale(1.05);
}

.subscribe-form {
    flex: 1;
    max-width: 500px;
}

.subscribe-form h2 {
    color: #d4af37;
    font-size: 3rem;
    margin-bottom: 20px;
}

.subscribe-form p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

form {
    display: flex;
    gap: 10px;
}

form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

form button {
    background-color: #1e2a47;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background-color: #151d33;
    transform: translateY(-2px);
}

.success-message {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    text-align: center;
}

.error-message {
    background-color: #f44336;
    color: white;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    text-align: center;
}


/* === Responsive === */

@media (max-width: 992px) {
    .affiliate-content {
        flex-direction: column;
    }
    .product-visual img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .stats-bar {
        flex-direction: column;
        gap: 20px;
    }
    .product-visual img {
        height: 250px;
    }
    form {
        flex-direction: column;
    }
}


/* edit */


/* === Features Section === */

.features-section {
    min-height: 1000px;
    background-color: #ffffff;
    padding: 60px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.feature-image img {
    max-height: 350px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.feature-image img:hover {
    transform: scale(1.03);
}

.feature-content {
    flex: 1;
    text-align: center;
}

.feature-content h3 {
    color: #d4af37;
    font-size: 2.2rem;
    margin-bottom: 15px;
    line-height: 1.3;
    letter-spacing: 0.5px;
    font-weight: normal;
}

.feature-content p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.read-more {
    background-color: #1e2a47;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #151d33;
    transform: translateY(-2px);
}


/* === Alternating Layout === */

.feature-row.reverse {
    flex-direction: row-reverse;
}


/* === Responsive === */

@media (max-width: 992px) {
    .feature-row {
        flex-direction: column;
        text-align: center;
    }
    .feature-image {
        order: -1;
    }
    .feature-content h3 {
        font-size: 1.8rem;
    }
    .feature-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .feature-row {
        gap: 25px;
    }
    .feature-image img {
        max-height: 250px;
    }
    .feature-content h3 {
        font-size: 1.5rem;
    }
}


/* === New Launch Section === */

.new-launch-section {
    height: 550px;
    background: linear-gradient(135deg, #4a5a6a 0%, #b8c6d9 100%);
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.launch-content {
    display: flex;
    align-items: center;
    height: 100%;
}

.text-content {
    flex: 1;
    max-width: 500px;
}

.text-content h2 {
    color: #d4af37;
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.text-content h3 {
    color: #d4af37;
    font-size: 2.4rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.cta-button {
    background-color: #1e2a47;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #151d33;
    transform: translateY(-2px);
}

.visual-elements {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.product-box {
    position: relative;
    z-index: 2;
}


/* 
.product-box img {
    height: 450px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
} */

.product-box img:hover {
    transform: rotateY(10deg) scale(1.05);
}


/* === Decorative Elements === */

.decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.golden-curve {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid #d4af37;
    border-radius: 50%;
    top: -150px;
    left: -150px;
    transform: rotate(30deg);
    opacity: 0.7;
}

.sphere {
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.sphere.gold {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #d4af37, #b8860b);
    bottom: 100px;
    left: 150px;
}

.sphere.white {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #fff, #e0e0e0);
    top: 50px;
    left: 50px;
}

.star {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #d4af37;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}


/* === Responsive === */

@media (max-width: 992px) {
    .launch-content {
        flex-direction: column;
        text-align: center;
    }
    .text-content {
        margin-bottom: 40px;
    }
    .visual-elements {
        justify-content: center;
    }
    .product-box img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .text-content h2 {
        font-size: 2.5rem;
    }
    .text-content h3 {
        font-size: 1.8rem;
    }
    .product-box img {
        height: 250px;
    }
    .golden-curve {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -100px;
    }
    .sphere.gold {
        width: 60px;
        height: 60px;
        bottom: 80px;
        left: 100px;
    }
    .sphere.white {
        width: 80px;
        height: 80px;
        top: 30px;
        left: 30px;
    }
}


/*edit */


/* === About Us Section === */

.about-section1 {
    height: 550px;
    background: linear-gradient(135deg, #4a4a5a 0%, #b8c6d9 100%);
    position: relative;
    overflow: hidden;
}

.container1 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center;
}

.visual-elements1 {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sphere.white {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #fff, #e0e0e0);
    top: 50px;
    left: 50px;
}

.product-image1 {
    position: absolute;
    bottom: 50px;
    left: 30px;
    z-index: 2;
}

.product-image1 img {
    height: 250px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.woman-image1 {
    position: absolute;
    right: 30px;
    top: 50px;
    z-index: 2;
}

.woman-image1 img {
    height: 450px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.about-content1 {
    text-align: center;
    z-index: 3;
    max-width: 600px;
    margin: 0 auto;
}

.about-content1 h2 {
    color: #1e2a47;
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-content1 p {
    color: #333;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.read-more {
    background-color: #1e2a47;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #151d33;
    transform: translateY(-2px);
}


/* === Responsive === */

@media (max-width: 992px) {
    .about-section1 {
        height: auto;
        min-height: 550px;
        padding: 60px 0;
    }
    .visual-elements1 {
        display: none;
    }
    .about-content1 {
        max-width: 100%;
    }
    .about-content1 h2 {
        font-size: 2.5rem;
    }
    .about-content1 p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .about-content1 h2 {
        font-size: 2rem;
    }
    .about-content1 p {
        font-size: 0.9rem;
    }
}


/* === Testimonials Section === */

.testimonials-section {
    min-height: 500px;
    background-color: #fff;
    /* خلفية بيضاء */
    padding: 60px 0;
}

.testimonials-section h2 {
    color: #d4af37;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
    border: 1px solid #ddd;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    direction: rtl;
}

.stars {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.testimonial-card p {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.client-name {
    color: #d4af37;
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
}


/* === Testimonials Section === */

.testimonials-section {
    min-height: 500px;
    background-color: #000;
    padding: 60px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.testimonials-section h2 {
    color: #d4af37;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(145deg, #4a4a5a, #6a6a7a);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    direction: rtl;
}

.stars {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.testimonial-card p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.client-name {
    color: #d4af37;
    font-weight: bold;
    text-align: center;
    font-size: 1.2rem;
}


/* === Responsive === */

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        padding: 25px 20px;
    }
}


/* === Footer Section === */

.footer {
    background-color: #000;
    color: #d4af37;
    padding: 60px 0 30px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    max-width: 350px;
}

.logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-social {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #1e2a47;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #151d33;
    transform: translateY(-2px);
}


/* === Responsive === */

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .footer-brand {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-social {
        justify-content: center;
        margin-top: 30px;
    }
}