/* pake-rolex - Styles */
/* Colors: Brown (#8B4513, #5D3A1A) & Black (#1a1a1a, #2d2d2d) */

:root {
    --primary-brown: #8B4513;
    --dark-brown: #5D3A1A;
    --light-brown: #A0522D;
    --black-dark: #1a1a1a;
    --black-medium: #2d2d2d;
    --black-light: #3d3d3d;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gold-accent: #D4AF37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--black-dark);
    color: var(--white);
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(139, 69, 19, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid var(--primary-brown);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    background: var(--white);
    padding: 5px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-brown);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: var(--dark-brown);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: var(--black-medium);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--off-white);
    margin-bottom: 30px;
}

.price-tag {
    margin-bottom: 40px;
}

.price-tag .price {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold-accent);
    display: block;
}

.price-tag .currency {
    font-size: 1.2rem;
    color: var(--off-white);
}

/* Video Showcase Section */
.video-showcase {
    padding: 80px 0;
    background: var(--black-dark);
    overflow: hidden;
}

.video-wrapper {
    width: 100%;
    max-width: 1000px;
    height: 600px;
    margin: 0 auto 30px auto;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid var(--primary-brown);
    box-shadow: 0 10px 40px rgba(139, 69, 19, 0.3);
}

.main-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-cta {
    text-align: center;
}

.video-cta p {
    font-size: 1.3rem;
    color: var(--off-white);
    margin-bottom: 20px;
}

/* Responsive for Video Section */
@media (max-width: 768px) {
    .video-wrapper {
        border-radius: 10px;
        border-width: 2px;
    }

    .video-cta p {
        font-size: 1.1rem;
    }
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
    border-color: var(--gold-accent);
}

/* Bundle Showcase */
.bundle-showcase {
    padding: 80px 0;
    background: var(--black-medium);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--white);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-brown);
    margin: 20px auto 0;
    border-radius: 2px;
}

.bundle-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.bundle-group {
    background: var(--black-dark);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

.group-title {
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
    text-align: center;
}

.images-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.bundle-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(139, 69, 19, 0.3);
    transition: transform 0.3s ease;
}

.bundle-img:hover {
    transform: scale(1.05);
    border-color: var(--primary-brown);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--black-dark);
}

.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--black-medium);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary-brown);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.1);
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(139, 69, 19, 0.3);
}

.product-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-thumbs img:hover,
.product-thumbs img.active {
    border-color: var(--primary-brown);
    transform: scale(1.1);
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-brown);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.product-desc {
    font-size: 1.1rem;
    color: var(--off-white);
    margin-bottom: 20px;
    line-height: 1.8;
}

.product-features {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--off-white);
}

.product-features li i {
    color: var(--primary-brown);
    margin-top: 4px;
    flex-shrink: 0;
}

.product-features li strong {
    color: var(--gold-accent);
}

/* Price Section */
.price-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black-medium), var(--black-dark));
}

.price-card {
    background: linear-gradient(135deg, var(--dark-brown), var(--primary-brown));
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.price-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
}

.price-display {
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.5rem;
    color: var(--off-white);
    text-decoration: line-through;
    margin-right: 15px;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold-accent);
}

.price-note {
    font-size: 1rem;
    color: var(--off-white);
    margin-bottom: 30px;
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    color: var(--dark-brown);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.4s ease;
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--black-medium);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--primary-brown);
}

.contact-item i {
    color: #25D366;
    font-size: 2rem;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-dark);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

.social-link:hover {
    background: var(--primary-brown);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--black-dark);
    border-top: 1px solid rgba(139, 69, 19, 0.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    border: 2px solid var(--primary-brown);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    background: var(--white);
    padding: 5px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-text {
    text-align: center;
    color: var(--black-light);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .product-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-main-img {
        height: 350px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .new-price {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        gap: 10px;
    }

    .logo-img {
        width: 55px;
        height: 55px;
        padding: 3px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .footer-logo {
        gap: 10px;
    }

    .footer-logo-img {
        width: 50px;
        height: 50px;
        padding: 3px;
    }

    .footer-logo-text {
        font-size: 1.2rem;
    }

    .hero {
        margin-top: 120px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .price-tag .price {
        font-size: 3rem;
    }

    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-card {
        padding: 25px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-main-img {
        height: 300px;
    }

    .product-thumbs img {
        width: 60px;
        height: 60px;
    }

    .bundle-img {
        width: 120px;
        height: 120px;
    }

    .new-price {
        font-size: 2rem;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        left: 20px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .price-tag .price {
        font-size: 2.5rem;
    }

    .order-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }

    .product-thumbs img {
        width: 50px;
        height: 50px;
    }
}

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

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }
.product-card:nth-child(6) { animation-delay: 0.6s; }
.product-card:nth-child(7) { animation-delay: 0.7s; }
.product-card:nth-child(8) { animation-delay: 0.8s; }
.product-card:nth-child(9) { animation-delay: 0.9s; }

/* Order Section */
.order-section {
    padding: 100px 0;
    background: var(--black-medium);
}

.order-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.order-summary {
    background: var(--black-dark);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(139, 69, 19, 0.2);
    height: fit-content;
}

.summary-title {
    font-size: 1.3rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.item-name {
    color: var(--white);
    font-size: 1rem;
}

.item-qty {
    color: var(--off-white);
    font-size: 0.9rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(139, 69, 19, 0.2);
    margin-top: 15px;
}

.total-label {
    color: var(--white);
    font-weight: 600;
}

.total-price {
    color: var(--gold-accent);
    font-size: 1.3rem;
    font-weight: 700;
}

.order-form {
    background: var(--black-dark);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(139, 69, 19, 0.2);
}

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

.form-group label {
    display: block;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(139, 69, 19, 0.2);
    border-radius: 10px;
    background: var(--black-medium);
    color: var(--white);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--black-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--black-dark);
    color: var(--white);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.4);
}

/* Responsive for Order Section */
@media (max-width: 768px) {
    .order-container {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        order: -1;
    }
}

