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

body {
    font-family: 'Inter', 'Noto Serif Bengali', sans-serif;
    background-color: #ffffff;
}

.container {
    max-width: 402px;
    margin: 0 auto;
    background: #FFF;
    padding: 20px;
}

@media (min-width: 992px) {
    .container {
        max-width: 1200px;
        padding: 50px;
    }

    .main-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .main-image img {
        width: 100%;
        height: auto;
    }

    .price-tag {
        font-size: 18px;
        padding: 8px 20px;
    }

    .thumbnails {
        gap: 12px;
    }

    .thumbnails img {
        width: 60px;
        height: 60px;
    }

    .nav-arrow {
        font-size: 20px;
    }

    .features-container {
        max-width: 1100px;
        margin: 60px auto;
        padding: 40px;
    }

    .features-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

    .feature-item {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .feature-item i {
        font-size: 32px;
    }

    .call-section {
        max-width: 1100px;
        margin: 60px auto;
        padding: 40px;
    }

    .call-title {
        font-size: 36px;
    }

    .phone-number {
        font-size: 52px;
    }

    .call-button {
        padding: 20px 50px;
        font-size: 28px;
    }

    .call-button i {
        font-size: 28px;
    }

    .offer-section {
        max-width: 1100px;
        margin: 60px auto;
        padding: 40px;
    }

    .offer-title {
        font-size: 42px;
    }

    .countdown-item {
        min-width: 150px;
        padding: 25px;
    }

    .countdown-value {
        font-size: 48px;
    }

    .countdown-label {
        font-size: 24px;
    }

    .select-text {
        font-size: 42px;
        margin: 60px 0;
    }

    .product-options {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .product-item {
        width: 100%;
    }

    .product-info h3 {
        font-size: 32px;
    }

    .product-item img {
        width: 150px;
        height: 150px;
    }

    .original-price {
        font-size: 24px;
    }

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

    .size-buttons button, 
    .hijab-buttons button {
        padding: 12px 24px;
        font-size: 18px;
    }

    .quantity-box {
        height: 42px;
    }

    .quantity-box button {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .quantity-box .quantity {
        width: 42px;
        font-size: 18px;
    }

    .order-form-section {
        max-width: 900px;
        margin: 60px auto;
        padding: 0;
    }

    .form-title {
        font-size: 42px;
        margin-bottom: 40px;
    }

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

    .form-group label {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px 20px;
        font-size: 20px;
        border-radius: 12px;
    }

    .radio-text {
        font-size: 20px;
    }

    .summary-header {
        font-size: 28px;
        padding: 20px 25px;
    }

    .summary-content {
        padding: 25px;
    }

    .summary-row {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .selected-item {
        font-size: 18px;
        padding: 15px 10px;
    }

    .confirm-button {
        font-size: 28px;
        padding: 20px;
        border-radius: 8px;
    }

    .grand-total {
        font-size: 32px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .main-image {
        max-width: 450px;
    }

    .features-container,
    .call-section,
    .offer-section,
    .product-options,
    .order-form-section {
        max-width: 1300px;
    }

    .product-options {
        max-width: 700px;
    }
}

/* Product Gallery Styles */
.product-gallery {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 12px;
    background: #fff;
}

.main-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Discount Badge Styles */
.discount-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #F44336;
    color: white;
    padding: 5px 12px;
    font-weight: bold;
    font-size: 13px;
    z-index: 2;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(244, 67, 54, 0.25);
    animation: pulse 1.5s infinite;
    transform-origin: center;
    letter-spacing: 0.2px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 3px 12px rgba(244, 67, 54, 0.3);
    }
    100% {
        transform: scale(1);
    }
}

.price-tag {
    position: absolute;
    top: 16px;
    right: 0;
    background: #00897B;
    color: #FFF;
    padding: 6px 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border-left: 3px solid #006B5E;
}

.thumbnails-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
    padding: 0 30px;
    overflow: hidden;
}

.thumbnails {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    flex: 1;
    overflow-x: auto;
    padding: 0 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.thumbnails::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.thumbnails img {
    width: 62px;
    height: 62px;
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;
    flex-shrink: 0;
}

.thumbnails img.selected {
    border: 2px solid #F44336;
}

.nav-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #000;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

.nav-arrow.prev-arrow {
    left: 0;
}

.nav-arrow.next-arrow {
    right: 0;
}

.nav-arrow:hover {
    color: #F44336;
    background-color: rgba(255, 255, 255, 0.9);
}

.order-button button {
    width: 100%;
    background: #000;
    color: #FFF;
    text-align: center;
    padding: 10px 0;
    margin: 20px 0;
    font-family: 'Noto Serif Bengali', serif;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.select-text {
    text-align: center;
    font-family: 'Noto Serif Bengali', serif;
    font-weight: 700;
    font-size: 24px;
    
}

.product-options {
    padding: 8px;
}

.product-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border: 1px solid #dedede;
    background: #f8f8f8;
    margin-bottom: 10px;
    padding: 16px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
    gap: 0px;
}

.product-item.selected {
    border: 2px solid #00897B;
    background-color: #f8f8f8;
}

.check-mark {
    width: 24px;
    height: 24px;
    border: 2px solid #dedede;
    margin-right: 12px;
    margin-top: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    background-color: white;
}

.product-item.selected .check-mark {
    background-color: #00897B;
    border-color: #00897B;
    color: #FFF;
}

.check-mark i {
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
}

.product-item.selected .check-mark i {
    opacity: 1;
}

.product-item:hover .check-mark {
    border-color: #00897B;
    transform: scale(1.05);
}

.product-info {
    flex: 1;
    min-width: 0;
}

.product-info h3 {
    font-family: 'Noto Serif Bengali', serif;
    font-weight: 700;
    font-size: 20px;
    color: #262626;
    margin-bottom: 4px;
    word-break: break-word;
}

.price {
    display: flex;
    align-items: center;
}

.original-price {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #383636;
    text-decoration: line-through;
    margin-right: 10px;
}

.discount-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #00897B;
}

.product-item img {
    width: 75px;
    height: 75px;
    margin-left: 0;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.product-details {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: 0px;
}

.product-item.selected .product-details {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.size-options, .hijab-options, .quantity-selector {
    display: flex;
    align-items: center;
    margin-top: 10px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.product-item.selected .size-options,
.product-item.selected .hijab-options,
.product-item.selected .quantity-selector {
    opacity: 1;
    transform: translateY(0);
}

.size-options span, .hijab-options span, .quantity-selector span {
    font-family: 'Noto Serif Bengali', serif;
    font-size: 14px;
    color: #000;
    margin-right: 10px;
    min-width: 60px;
}

.size-buttons, .hijab-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.size-buttons button, .hijab-buttons button {
    border: 1px solid #000;
    padding: 5px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #000;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.size-buttons button.selected, .hijab-buttons button.selected {
    background: #00897B;
    color: #FFF;
    border-color: #00897B;
}

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

.quantity-selector span {
    font-family: 'Noto Serif Bengali', serif;
    font-size: 14px;
    color: #000;
    margin-right: 10px;
    min-width: 60px;
}

.quantity-box {
    display: inline-flex;
    align-items: center;
    border: 1px solid #A5A5A5;
    height: 26px;
    background: #FFF;
}

.quantity-box button {
    width: 26px;
    height: 26px;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000;
    cursor: pointer;
    transition: background-color 0.2s;
}

.quantity-box button:hover {
    background-color: #f0f0f0;
}

.quantity-box .quantity {
    width: 32px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #A5A5A5;
    border-right: 1px solid #A5A5A5;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #000;
    user-select: none;
}

.hijab-options {
    position: relative;
    display: flex;
    align-items: center;
}

.hijab-buttons {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.hijab-buttons button {
    border: 1px solid #000;
    padding: 5px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #000;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hijab-buttons button.selected {
    background: #00897B;
    color: #FFF;
    border-color: #00897B;
}

.price-overlay {
    position: absolute;
    top: 50%;
    right: -70px;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
    padding: 6px 12px;
}

.price-overlay.show {
    opacity: 1;
    right: -80px;
}

.price-overlay.increase {
    color: #F44336;
}

.price-overlay.decrease {
    color: #00897B;
}

.features-container {
    max-width: 500px;
    margin: 0 auto;
    background: #f0f0f0;
    padding: 15px 32px;
}

.features-section {
    margin: 20px 0;
}

.features-title {
    text-align: center;
    font-family: 'Noto Serif Bengali', serif;
    font-weight: 700;
    font-size: 24px;
    color: #000;
    margin-bottom: 20px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-item i {
    color: #F44336;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item span {
    font-family: 'Noto Serif Bengali', serif;
    font-size: 16px;
    color: #000;
    line-height: 1.4;
}

.offer-section {
    text-align: center;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    border: 2px solid #F44336;
    border-radius: 8px;
}

.offer-title {
    font-family: 'Noto Serif Bengali', serif;
    font-weight: 700;
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.countdown-item {
    background: #F44336;
    padding: 12px 15px;
    border-radius: 4px;
    min-width: 80px;
    box-shadow: 0 2px 4px rgba(244, 67, 54, 0.2);
}

.countdown-value {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #FFF;
}

.countdown-label {
    display: block;
    font-family: 'Noto Serif Bengali', serif;
    font-size: 14px;
    color: #FFF;
    margin-top: 4px;
}

@media (max-width: 991px) {
    .container {
        max-width: 991px;
        padding: 15px;
    }
    
    .select-text {
        font-size: 22px;
    }
    
    .product-info h3 {
        font-size: 22px;
    }
    
    .original-price {
        font-size: 13px;
    }
    
    .discount-price {
        font-size: 15px;
    }
    
    .features-title {
        font-size: 22px;
    }
    
    .feature-item span {
        font-size: 15px;
    }
    
    .offer-title {
        font-size: 22px;
    }
    
    .countdown-value {
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .container {
        max-width: 640px;
        padding: 0px;
    }
    
    .select-text {
        font-size: 20px;
        margin-top: 40px;
    }
    
    .product-info h3 {
        font-size: 20px;
    }
    
    .original-price {
        font-size: 14px;
    }
    
    .discount-price {
        font-size: 16px;
    }
    
    .features-title {
        font-size: 20px;
    }
    
    .feature-item span {
        font-size: 16px;
    }
    
    .offer-title {
        font-size: 18px;
    }
    
    .countdown-value {
        font-size: 20px;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 10px;
    }
}

.call-section {
    max-width: 500px;
    margin: 0 auto 20px;
    text-align: center;
    background: #f0f0f0;
    padding: 20px;
}

.call-title {
    font-family: 'Noto Serif Bengali', serif;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

.phone-number {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #F44336;
    margin-bottom: 15px;
}

.call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #F44336;
    color: #FFF;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background: #d32f2f;
}

.call-button i {
    font-size: 20px;
}

@media (max-width: 991px) {
    .call-title {
        font-size: 18px;
    }
    
    .phone-number {
        font-size: 28px;
    }
    
    .call-button {
        font-size: 16px;
        padding: 10px 25px;
    }
}

@media (max-width: 640px) {
    .call-section {
        margin: 0 auto 15px;
        padding: 15px;
    }
    
    .call-title {
        font-size: 16px;
    }
    
    .phone-number {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .call-button {
        font-size: 15px;
        padding: 8px 20px;
    }
    
    .call-button i {
        font-size: 18px;
    }
}

.order-form-section {
    max-width: 500px;
    margin: 30px auto;
    padding: 0 20px;
}

.form-title {
    font-family: 'Noto Serif Bengali', serif;
    font-weight: 700;
    font-size: 22px;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
}

.order-form {
    
    padding: 8px;
    
}

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

.form-group label {
    display: block;
    font-family: 'Noto Serif Bengali', serif;
    font-size: 15px;
    color: #333;
   
}

.required {
    color: #F44336;
    margin-left: 2px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Noto Serif Bengali', serif;
    font-size: 14px;
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.form-group textarea {
    height: 80px;
    resize: vertical;
}

.delivery-options {
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 8px;
    overflow: hidden;
}

.radio-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #dedede;
}

.radio-label:last-child {
    border-bottom: none;
}

.radio-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Noto Serif Bengali', serif;
    font-size: 14px;
    color: #333;
}

.radio-price {
    color: #333;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #00897B;
}

.radio-label:has(input[type="radio"]:checked) {
    background-color: #f8f8f8;
}

.radio-label input[type="radio"]:checked {
    accent-color: #00897B;
}

.order-summary {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 20px 0;
}

.summary-header {
    background: #f0f0f0;
    padding: 10px 15px;
    font-family: 'Noto Serif Bengali', serif;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-content {
    padding: 15px;
    background: #fff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Noto Serif Bengali', serif;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.selected-item {
    background: #fff;
    padding: 10px 4px;
    margin: 8px 0;
    font-family: 'Noto Serif Bengali', serif;
    font-size: 12px;
    color: #333;
}

.summary-row.total {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #ddd;
    font-weight: 500;
}

.delivery-charge-row {
    border: none !important;
}

.confirm-button {
    width: 100%;
    padding: 15px;
    background-color: #F44336;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Serif Bengali', serif;
}

.confirm-button:hover {
    background-color: #d32f2f;
}

.confirm-button:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    position: relative;
    overflow: hidden;
}

.confirm-button:disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@media (max-width: 640px) {
    .order-form-section {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 8px 10px;
    }
    
    .confirm-button {
        padding: 10px;
        font-size: 18px;
    }
}

/* Order Summary Styles */
.selected-product {
    padding: 8px 0;
    color: #333;
    font-size: 12px;
    line-height: 1.4;
}

.selected-product:last-child {
    border-bottom: none;
}

.summary-content {
    padding: 15px;
    background: #fff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
}

.summary-row.total {
    border-top: 2px solid #ddd;
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
    font-weight: 600;
    font-size: 16px;
}

.delivery-charge, .total-price {
    color: #333;
}

.grand-total {
    color: #00897B;
    font-weight: bold;
    font-size: 18px;
}

/* .validation-message {
    color: #F44336;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Noto Serif Bengali', serif;
    font-size: 14px;
    min-height: 20px;
    padding: 5px;
} */

.warning-message {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    background-color: #fff3cd;
    border: none;
    border-radius: 4px;
    color: #856404;
    font-family: 'Noto Serif Bengali', serif;
    font-size: 14px;
}

.warning-message:empty {
    display: none;
}

.product-validation-message {
    color: #F44336;
    text-align: center;
    margin: 10px 0;
    font-family: 'Noto Serif Bengali', serif;
    font-size: 14px;
    min-height: 20px;
    padding: 5px;
}

/* Thank You Popup Styles */
.thank-you-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.thank-you-popup.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.popup-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.success-icon {
    color: #4CAF50;
    font-size: 60px;
    margin-bottom: 20px;
}

.popup-content h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Noto Serif Bengali', serif;
}

.popup-content p {
    color: #666;
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Noto Serif Bengali', serif;
}

.contact-text {
    color: #4CAF50 !important;
    font-weight: 500;
}

.popup-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'Noto Serif Bengali', serif;
    transition: background-color 0.3s ease;
}

.popup-button:hover {
    background-color: #45a049;
}

.review-section {
    text-align: center;
    margin: 15px 0;
    font-family: 'Noto Serif Bengali', serif;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stars {
    color: #FFD700;
    font-size: 20px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.stars .full {
    color: #FFD700;
}

.stars .half {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #FFD700 50%, #e0e0e0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-text {
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.review-text {
    color: #666;
    font-size: 14px;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFF3E0;
    padding: 10px 15px;
    margin: 15px auto;
    border-radius: 4px;
    max-width: 280px;
}

.stock-status i {
    color: #FF6B00;
    font-size: 18px;
    animation: flame 1s infinite;
}

.stock-info {
    flex: 1;
}

.stock-text {
    color: #E65100;
    font-family: 'Noto Serif Bengali', serif;
    font-size: 13px;
    margin-bottom: 5px;
}

.stock-bar {
    height: 3px;
    background: rgba(255, 107, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.stock-progress {
    width: 20%;
    height: 100%;
    background: #FF6B00;
    animation: pulse-orange 1.5s infinite;
}

@keyframes flame {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse-orange {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.simple-footer {
    text-align: center;
    padding: 20px 0;
    background-color: #f8f9fa;
    margin-top: 40px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #666;
}

.simple-footer p {
    margin: 0;
}
