/* Products Page Shared Styles */
/* Used by: cameras, products, smartphones pages */

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px 20px;
    text-align: center;
}

/* Product Frame/Card */
.product-frame {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 20px;
    max-width: 450px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Product Image */
.product-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-image:hover {
    transform: scale(1.05);
}

/* Product Title */
.product-title {
    font-size: 1.8rem;
    color: #aa8e5f;
    margin-bottom: 12px;
    font-weight: bold;
}

/* Product Price */
.product-price {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Buy Button */
.buy-button {
    background-color: #aa8e5f;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 200px;
}

.buy-button:hover {
    background-color: #8a7350;
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

/* Preorder Button */
.preorder-button {
    background-color: #aa8e5f;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.preorder-button:hover {
    background-color: #8a7350;
    color: white;
    text-decoration: none;
}

/* Content Sections */
.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.content-section h2 {
    color: #aa8e5f;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.content-section p, 
.content-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-section h4 {
    color: #aa8e5f;
    margin-top: 30px;
}

.content-section h5 {
    color: #aa8e5f;
    margin-top: 25px;
}

/* Video Container */
.video-container {
    text-align: center;
    margin: 50px 0;
}

.video-container iframe {
    max-width: 100%;
    width: 548px;
    height: 974px;
    border-radius: 10px;
}

/* Inside View Section */
.inside-view-section {
    text-align: center;
    margin: 50px 0;
}

.inside-view-section h2 {
    text-align: left;
    margin-bottom: 30px;
}

.inside-view-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Coming Soon Section */
.coming-soon-section {
    background-color: #f8f9fa;
    padding: 40px 20px;
    margin-top: 40px;
}

.coming-soon-header {
    text-align: center;
    font-size: 2.2rem;
    color: #aa8e5f;
    margin-bottom: 30px;
    font-weight: bold;
}

.coming-soon-frame {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 0 auto;
    max-width: 400px;
    text-align: center;
    position: relative;
    overflow: visible !important;
    padding-bottom: 50px !important;
}

.coming-soon-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(170, 142, 95, 0.1) 50%, transparent 70%);
    pointer-events: none;
}

.coming-soon-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 25px;
    opacity: 0.8;
    cursor: pointer;
}

.coming-soon-title {
    font-size: 1.5rem;
    color: #aa8e5f;
    margin-bottom: 12px;
    font-weight: bold;
}

.coming-soon-status {
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 600;
    line-height: 1.5;
    overflow: visible;
    box-sizing: border-box;
}

.coming-soon-status strong {
    display: block;
    margin-bottom: 5px;
    line-height: 1.4;
}

.coming-soon-status br {
    line-height: 1.6;
}

/* Product Footer - Disclaimer */
.product-footer {
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.product-disclaimer {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.product-disclaimer p {
    margin: 0;
}

/* Mobile Responsive - Tablets */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: 20px 10px;
    }

    .product-frame {
        padding: 30px 20px;
        margin: 10px;
    }

    .product-image {
        max-width: 90vw;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 1.6rem;
    }

    .buy-button {
        padding: 12px 30px;
        font-size: 1.1rem;
        min-width: 200px;
    }

    .preorder-button {
        padding: 10px 25px;
        font-size: 1rem;
    }

    .coming-soon-header {
        font-size: 2.2rem;
    }

    .coming-soon-frame {
        padding: 30px 20px;
        margin: 0 10px;
    }

    .content-section {
        padding: 40px 15px;
    }

    .content-section h2 {
        font-size: 2rem;
    }

    .video-container iframe {
        width: 100%;
        height: 600px;
    }
}

/* Mobile Responsive - Phones */
@media (max-width: 480px) {
    .product-image {
        max-width: 85vw;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-price {
        font-size: 1.4rem;
    }

    .buy-button {
        padding: 10px 25px;
        font-size: 1rem;
        min-width: 180px;
    }

    .coming-soon-header {
        font-size: 1.8rem;
    }

    .coming-soon-title {
        font-size: 1.4rem;
    }

    .video-container iframe {
        height: 500px;
    }
}
