/* Font Face Declarations */
@font-face {
    font-family: 'Marker Felt';
    src: url('../../assets/Marker-Felt.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, #FF9A8B 0%, #FFA07A 100%);
    min-height: 100vh;
    height: 100vh;
    color: #333;
    display: flex;
    flex-direction: column;
}

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

/* Header Styles */
.header {
    background: #7B2CBF;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-family: 'Marker Felt', cursive;
    font-size: 2.5rem;
    color: white;
    text-decoration: none;
    display: block;
    text-align: center;
}

/* Main Content */
.main {
    padding: 40px 0;
    flex: 1;
    display: flex;
    align-items: center;
}

.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

/* Image Slider */
.image-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.main-image img {
    width: 100%;
    max-width: 100%;
    max-height: 400px;
    height: auto;
    border-radius: 10px;
    object-fit: contain;
}

.thumbnail-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.thumbnail:hover,
.thumbnail.active {
    border-color: #7B2CBF;
    transform: scale(1.05);
}

/* Product Details */
.product-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.countdown-timer {
    background: #FF4444;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3);
}

.product-title {
    font-family: 'Marker Felt', cursive;
    font-size: 3rem;
    color: #7B2CBF;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

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

.original-price {
    font-size: 2rem;
    color: #666;
    text-decoration: line-through;
}

.sale-price {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
}

.discount {
    background: #00C851;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 700;
}

.product-description h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.product-description ul {
    list-style: none;
    margin-bottom: 20px;
}

.product-description li {
    padding: 8px 0;
    font-size: 1.1rem;
    position: relative;
    padding-left: 20px;
}

.product-description li::before {
    content: "•";
    color: #7B2CBF;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.shipping-note {
    font-size: 1rem;
    color: #666;
    font-style: italic;
}

.purchase-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector label {
    font-size: 1.2rem;
    font-weight: 700;
}

.quantity-selector select {
    padding: 12px 16px;
    border: 2px solid #7B2CBF;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    background: white;
    cursor: pointer;
}

.buy-now-btn {
    background: #7B2CBF;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(123, 44, 191, 0.3);
}

.buy-now-btn:hover {
    background: #6A1B9A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 44, 191, 0.4);
}

/* Footer */
.footer {
    background: #7B2CBF;
    color: white;
    padding: 30px 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-logo {
    font-family: 'Marker Felt', cursive;
    font-size: 2rem;
    color: white;
    text-decoration: none;
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: underline;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

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

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 2rem;
    }
    
    .product-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .product-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .pricing {
        justify-content: center;
        text-align: center;
    }
    
    .original-price {
        font-size: 1.5rem;
    }
    
    .sale-price {
        font-size: 2rem;
    }
    
    .discount {
        font-size: 1rem;
    }
    
    .purchase-section {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .quantity-selector {
        justify-content: center;
    }
    
    .buy-now-btn {
        width: 100%;
        padding: 18px;
    }
    
    .thumbnail-nav {
        justify-content: center;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .countdown-timer {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .main-image {
        padding: 15px;
    }
    
    .thumbnail {
        width: 50px;
        height: 50px;
    }
}
body {
    height: 100vh!important;
    display: flex!important;
    flex-direction: column!important;
}
.main {
    height: 75rem!important;
    justify-content: center!important;
    align-items: center!important;
    display: flex!important;
    width:100%!important;
}
.footer {
    height: 15rem!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    width:100%!important;
}
.header {
    height: 10rem!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    width:100%!important;
}