/* Main Landing Page Styles for BeautyNike */

/* Import Bangla fonts */
@font-face {
    font-family: 'Kalpurush';
    src: url('https://cdn.jsdelivr.net/gh/litondev/bangla-fonts/kalpurush.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'SolaimanLipi';
    src: url('https://cdn.jsdelivr.net/gh/litondev/bangla-fonts/SolaimanLipi.woff2') format('woff2');
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kalpurush', 'SolaimanLipi', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Header */
.main-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.main-header .logo h1 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
    word-break: break-word;
}

.header-contact {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.header-contact span {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.header-contact i {
    margin-right: 5px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
}

.breadcrumb span {
    color: #666;
}

/* Product Section */
.product-section {
    padding: 30px 0;
    background-color: #fff;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

/* Product Details */
.product-details h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
    word-break: break-word;
}

.product-rating {
    margin-bottom: 20px;
}

.product-rating .stars {
    color: #ffc107;
    font-size: 1.1rem;
}

.product-rating .stars span {
    color: #666;
    font-size: 0.9rem;
    margin-left: 10px;
}

.price-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e53935;
    margin-bottom: 10px;
}

.original-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 10px;
}

.discount {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-left: 10px;
}

.availability {
    color: #4caf50;
    font-weight: 600;
}

.availability i {
    margin-left: 5px;
}

.product-description {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
    word-break: break-word;
}

.product-highlights h3 {
    margin-bottom: 15px;
    color: #222;
}

.product-highlights ul {
    list-style: none;
    padding-left: 0;
}

.product-highlights li {
    margin-bottom: 10px;
    color: #555;
}

.product-highlights li i {
    color: #667eea;
    margin-right: 10px;
}

/* Product Video Section */
.product-video-section {
    margin: 30px 0;
    text-align: center;
}

.product-video-section h2 {
    margin-bottom: 20px;
    color: #222;
    font-size: 1.5rem;
}

.product-video {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-video video {
    width: 100%;
    display: block;
    height: auto;
}

/* Order Section */
.order-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
}

.order-section h2 {
    margin-bottom: 20px;
    color: #222;
    text-align: center;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    z-index: 1;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 2px solid #e1e5eb;
    border-radius: 10px;
    font-family: 'Kalpurush', 'SolaimanLipi', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input-with-icon textarea {
    padding-left: 45px;
    min-height: 100px;
    resize: vertical;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Kalpurush', 'SolaimanLipi', sans-serif;
    width: 100%;
    margin-top: 10px;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary i {
    margin-right: 10px;
}

/* Product Image Section */
.product-image-section {
    margin: 30px 0;
    text-align: center;
}

.product-image-section h2 {
    margin-bottom: 20px;
    color: #222;
    font-size: 1.5rem;
}

.product-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    display: block;
    height: auto;
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 0;
    margin: 50px 0 0;
}

.trust-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.trust-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.trust-item p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Main Footer */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
    word-break: break-word;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.footer-section p {
    line-height: 1.7;
    opacity: 0.8;
    word-break: break-word;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    word-break: break-word;
}

.footer-section ul li i {
    margin-right: 10px;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    word-break: break-word;
}

/* No Product Page */
.no-product {
    padding: 100px 0;
    background-color: #fff;
}

.no-product-content {
    text-align: center;
    padding: 50px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-product-content h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    word-break: break-word;
}

.no-product-content p {
    color: #666;
    font-size: 1.1rem;
    word-break: break-word;
}

/* Order Confirmation */
.order-confirmation {
    padding: 50px 0;
    background-color: #fff;
    min-height: calc(100vh - 200px);
}

.confirmation-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.success-message, .error-message {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.success-message .icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.error-message .icon {
    width: 80px;
    height: 80px;
    background: #e53935;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.success-message h1, .error-message h1 {
    color: #2c3e50;
    margin-bottom: 20px;
    word-break: break-word;
}

.success-message p, .error-message p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    word-break: break-word;
}

.order-summary {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-summary h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
    word-break: break-word;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.summary-item.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: #e53935;
    border-bottom: none;
}

.next-steps {
    text-align: left;
    margin: 30px 0;
}

.next-steps h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    word-break: break-word;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    margin-bottom: 10px;
    color: #555;
}

.next-steps li i {
    color: #4caf50;
    margin-right: 10px;
}

.actions {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }
    
    .product-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .main-header .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .header-contact {
        text-align: center;
    }
    
    .product-details h1 {
        font-size: 1.6rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .product-video-section h2,
    .product-image-section h2,
    .order-section h2 {
        font-size: 1.3rem;
    }
    
    .trust-section .container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .trust-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .trust-item {
        padding: 15px 0;
    }
    
    .product-section {
        padding: 20px 0;
    }
    
    .order-section {
        padding: 20px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .confirmation-content {
        padding: 0 15px;
    }
    
    .success-message, .error-message {
        padding: 30px 20px;
    }
    
    .product-video-section,
    .product-image-section {
        margin: 20px 0;
    }
    
    .product-video,
    .product-image {
        border-radius: 10px;
    }
    
    .btn-primary {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .input-with-icon input,
    .input-with-icon select,
    .input-with-icon textarea {
        font-size: 0.9rem;
        padding: 10px 12px 10px 40px;
    }
    
    .input-with-icon i {
        left: 12px;
        font-size: 0.9rem;
    }
    
    .no-product-content {
        padding: 30px 20px;
    }
    
    .no-product-content h1 {
        font-size: 1.5rem;
    }
    
    .no-product-content p {
        font-size: 1rem;
    }
    
    .product-video-section h2,
    .product-image-section h2,
    .order-section h2 {
        font-size: 1.2rem;
    }
    
    .price-section {
        text-align: center;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
    
    .discount {
        font-size: 0.8rem;
        padding: 2px 8px;
    }
    
    .product-highlights h3 {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .product-highlights ul {
        padding-left: 20px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .main-footer {
        padding: 30px 0 15px;
    }
    
    .summary-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .summary-item span:last-child {
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .main-header .logo h1 {
        font-size: 1.5rem;
    }
    
    .header-contact span {
        font-size: 0.8rem;
    }
    
    .product-details h1 {
        font-size: 1.4rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .original-price {
        font-size: 0.9rem;
    }
    
    .discount {
        font-size: 0.75rem;
        padding: 2px 6px;
    }
    
    .product-highlights h3 {
        font-size: 1rem;
    }
    
    .product-highlights li {
        font-size: 0.9rem;
    }
    
    .order-section {
        padding: 15px 10px;
    }
    
    .order-section h2 {
        font-size: 1.1rem;
    }
    
    .btn-primary {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .trust-section {
        padding: 30px 0;
    }
    
    .trust-item i {
        font-size: 2rem;
    }
    
    .trust-item h3 {
        font-size: 1rem;
    }
    
    .trust-item p {
        font-size: 0.8rem;
    }
    
    .main-footer {
        padding: 30px 0 15px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 0.85rem;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
    
    .product-video-section h2,
    .product-image-section h2 {
        font-size: 1.1rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .product-rating .stars {
        font-size: 1rem;
    }
    
    .product-rating .stars span {
        font-size: 0.8rem;
    }
    
    .input-with-icon input,
    .input-with-icon select,
    .input-with-icon textarea {
        font-size: 0.85rem;
        padding: 8px 10px 8px 35px;
    }
    
    .input-with-icon i {
        left: 10px;
        font-size: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .no-product {
        padding: 50px 0;
    }
    
    .no-product-content {
        padding: 20px 15px;
    }
    
    .no-product-content h1 {
        font-size: 1.3rem;
    }
    
    .no-product-content p {
        font-size: 0.9rem;
    }
    
    .order-confirmation {
        padding: 30px 0;
    }
    
    .success-message, .error-message {
        padding: 20px 15px;
    }
    
    .success-message .icon,
    .error-message .icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .success-message h1, .error-message h1 {
        font-size: 1.3rem;
    }
    
    .success-message p, .error-message p {
        font-size: 0.9rem;
    }
    
    .order-summary {
        padding: 15px;
    }
    
    .summary-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .summary-item.total {
        font-size: 1.1rem;
    }
    
    .next-steps h3 {
        font-size: 1.1rem;
    }
    
    .next-steps li {
        font-size: 0.9rem;
    }
    
    .actions {
        margin-top: 20px;
    }
    
    .btn-primary {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Extra small devices (phones, 320px and down) */
@media (max-width: 320px) {
    .container {
        padding: 0 5px;
    }
    
    .main-header .logo h1 {
        font-size: 1.3rem;
    }
    
    .product-details h1 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
    
    .order-section {
        padding: 15px 5px;
    }
    
    .input-with-icon input,
    .input-with-icon select,
    .input-with-icon textarea {
        font-size: 0.8rem;
        padding: 8px 10px 8px 30px;
    }
    
    .input-with-icon i {
        left: 8px;
        font-size: 0.75rem;
    }
    
    .btn-primary {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .trust-item h3 {
        font-size: 0.9rem;
    }
    
    .trust-item p {
        font-size: 0.75rem;
    }
    
    .footer-section h3 {
        font-size: 0.9rem;
    }
    
    .footer-section p,
    .footer-section ul li {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}