/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F4DF8E;
    --gold-dark: #B8941F;
    --white: #FFFFFF;
    --beige: #F5F1EB;
    --beige-dark: #E8E0D5;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    --shadow-hover: 0 8px 30px rgba(212, 175, 55, 0.25);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.btn:active {
    transform: translateY(-1px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Cairo', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 15px;
    background: var(--beige);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.benefit-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 16px;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--beige);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px;
}

.product-name {
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-price {
    font-family: 'Cairo', sans-serif;
    font-size: 24px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.product-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-btn a {
    color: var(--white);
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

.product-btn:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    transform: translateY(-2px);
}

/* Product Detail Sections */
.product-detail {
    padding: 80px 0;
    background: var(--white);
}

.product-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.product-detail-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.product-detail-text h1 {
    font-size: 38px;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.product-detail-text h2 {
    font-size: 26px;
    color: var(--gold);
    margin: 25px 0 15px;
}

.product-detail-text p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 10px 0;
    padding-right: 30px;
    position: relative;
    color: var(--text-dark);
}

.features-list li:before {
    content: '✨';
    position: absolute;
    right: 0;
    font-size: 18px;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--beige);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    color: var(--gold-dark);
    font-weight: 600;
}

.stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 15px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    color: var(--gold-dark);
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

footer p {
    opacity: 0.8;
    font-size: 14px;
}

/* Animations - DISABLED */
/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

.fade-in {
    /* opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease; */
}

.fade-in.visible {
    /* opacity: 1;
    transform: translateY(0); */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-image img {
        height: 350px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .final-cta h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Product Page Specific Styles */
.product-hero {
    padding-top: 140px;
    padding-bottom: 60px;
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-hero-text h1 {
    font-size: 42px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.product-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-rating {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-count {
    color: var(--text-light);
    font-size: 14px;
}

.product-price-display {
    background: var(--beige);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.current-price {
    font-size: 36px;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.old-price {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
    display: block;
}

.discount-badge {
    background: #e74c3c;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

.trust-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.trust-badges span {
    background: var(--white);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 18px 50px;
    font-size: 20px;
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 15px;
}

.urgency-text {
    color: #e74c3c;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
}

/* Product Detail Section */
.product-detail-section {
    padding: 80px 0;
    background: var(--white);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.detail-images .main-image {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    height: 500px;
    object-fit: cover;
    margin-bottom: 20px;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.thumbnail-grid img {
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.thumbnail-grid img:hover,
.thumbnail-grid img.active {
    transform: scale(1.05);
    border: 2px solid var(--gold);
}

.detail-info h2 {
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: 20px;
}

.detail-text {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.detail-info h3 {
    font-size: 24px;
    color: var(--gold);
    margin: 30px 0 15px;
}

.features-list.detailed li {
    padding: 12px 0;
    padding-right: 35px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
}

.features-list.detailed li:before {
    content: '✨';
    position: absolute;
    right: 0;
    font-size: 20px;
}

.specs-table {
    background: var(--beige);
    border-radius: 15px;
    padding: 25px;
    margin-top: 20px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--beige-dark);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-dark);
}

.spec-value {
    color: var(--text-light);
}

.size-guide,
.care-instructions {
    background: var(--beige);
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.size-guide h3,
.care-instructions h3 {
    font-size: 20px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.size-guide ul,
.care-instructions ul {
    list-style: none;
    padding-right: 0;
}

.size-guide li,
.care-instructions li {
    padding: 8px 0;
    padding-right: 25px;
    position: relative;
    color: var(--text-dark);
}

.size-guide li:before,
.care-instructions li:before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Benefits Icons Section */
.benefits-icons {
    padding: 60px 0;
    background: var(--beige);
}

.benefits-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-icon-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.benefit-icon-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon-card .icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.benefit-icon-card h3 {
    font-size: 18px;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.benefit-icon-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* Social Proof Section */
.social-proof {
    padding: 60px 0;
    background: var(--white);
}

.social-proof h2 {
    text-align: center;
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: 40px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.proof-label {
    font-size: 16px;
    color: var(--text-light);
}

/* Product Reviews */
.product-reviews {
    padding: 80px 0;
    background: var(--beige);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.review-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer {
    border-top: 1px solid var(--beige-dark);
    padding-top: 15px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.reviewer-location {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.verified-purchase {
    font-size: 12px;
    color: #27ae60;
    font-weight: 600;
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--beige) 0%, var(--white) 100%);
}

.order-box {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.order-box h2 {
    text-align: center;
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: 10px;
}

.order-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
}

.order-form-wrapper {
    margin-bottom: 30px;
}

.order-form .form-group {
    margin-bottom: 20px;
}

.order-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 15px;
}

.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--beige-dark);
    border-radius: 10px;
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.order-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.form-guarantees {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: var(--beige);
    border-radius: 10px;
    margin-top: 20px;
}

.form-guarantees span {
    font-size: 14px;
    color: var(--text-dark);
}

.contact-alternative {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--beige-dark);
}

.contact-alternative p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.contact-methods a {
    color: var(--gold);
    font-weight: 600;
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--gold-dark);
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--beige);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--gold-dark);
    margin-bottom: 15px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer Links */
.footer-links {
    margin-top: 15px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    margin: 0 10px;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
}

/* Responsive for Product Pages */
@media (max-width: 1024px) {
    .product-hero-content,
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-icons-grid,
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-hero-text h1 {
        font-size: 32px;
    }

    .current-price {
        font-size: 28px;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
    }

    .benefits-icons-grid,
    .proof-grid {
        grid-template-columns: 1fr;
    }

    .order-box {
        padding: 25px;
    }

    .form-guarantees {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .product-hero {
        padding-top: 100px;
    }

    .product-hero-text h1 {
        font-size: 26px;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 18px;
    }
}
