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

:root {
    --primary-color: #111;
    --secondary-color: #333;
    --text-color: #0F0F0F;
    --text-secondary: #767676;
    --border-color: #E5E5E5;
    --background-light: #F8F8F8;
    --success-color: #4CAF50;
    --error-color: #F73A3A;
    --white: #FFF;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --accent-color: #d4af37;
}

body {
    font-family: 'Inter', 'Lato', sans-serif;
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.5;
}

.container {
    max-width: 402px;
    margin: 0 auto;
    padding: 15px;
    min-height: 979px;
    position: relative;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px;
}

.main-image-container {
    position: relative;
    width: 100%;
    height: 468px;
    border-radius: 4px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.sale-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
}

.thumbnail-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.thumbnail {
    width: 86px;
    height: 86px;
    border-radius: 4px;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.thumbnail.active {
    opacity: 1;
}

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

.product-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-description {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 16px;
}

.product-specs {
    list-style: none;
    margin-bottom: 16px;
}

.product-specs li {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.product-specs li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.product-details-section {
    margin-bottom: 24px;
    margin-top: 40px;
    width: 100%;
    padding: 0;
}

.section-title {
    color: var(--accent-color);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    padding: 0 15px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 2px;
}

.details-image-container {
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.details-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.details-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
}

.sales-info {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
}

.fire-icon {
    width: 20px;
    height: 20px;
}

.sales-text {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 16px;
}

.original-price {
    color: var(--text-secondary);
    font-size: 20px;
    font-weight: 700;
    text-decoration: line-through;
}

.sale-price {
    font-size: 24px;
    font-weight: 800;
}

.offer-note {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 8px;
}

.order-button {
    width: 90%;
    height: 59px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 auto;
}

.order-button:hover {
    background-color: #bfa133;
}

/* Desktop Layout */
@media (min-width: 768px) {
    .container {
        max-width: 800px;
        min-height: auto;
        padding: 40px 20px;
    }

    .product-showcase {
        flex-direction: row;
        gap: 10px;
        align-items: flex-start;
    }

    .main-image-container {
        width: 40%;
        height: auto;
        position: sticky;
        top: 40px;
    }

    .thumbnail-gallery {
        flex-direction: column;
        gap: 8px;
    }

    .thumbnail {
        width: 100%;
        height: 100px;
    }

    .product-info {
        width: 60%;
        padding-top: 0px;
        margin-left: 16px;
    }

    .product-title {
        font-size: 32px;
        margin-bottom: 24px;
    }

    .product-description {
        font-size: 20px;
        margin-bottom: 32px;
    }

    .sales-info {
        margin-bottom: 32px;
    }

    .price-container {
        margin: 0;
        justify-content: flex-start;
        margin-bottom: 24px;
    }

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

    .sale-price {
        font-size: 32px;
    }

    .offer-note {
        font-size: 16px;
        margin-bottom: 32px;
        text-align: left;
    }

    .order-button {
        width: 100%;
        max-width: 400px;
        height: 64px;
        font-size: 18px;
        margin-left: 0;
    }

    .product-details-section {
        max-width: 800px;
        margin: 40px auto;
    }

    .details-row {
        flex-direction: row;
        justify-content: center;
        width: auto;
        gap: 8px;
    }

    .details-image-container {
        width: 400px;
        height: 400px;
        margin: 4px;
        border-radius: 0;
    }

    .details-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .product-selector-section .container {
        max-width: 600px;
        margin: 0 auto;
    }

    .product-item {
        padding: 16px;
        max-width: 100%;
    }

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

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

    .size-buttons button, 
    .hijab-buttons button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .quantity-box {
        padding: 4px;
    }

    .quantity-box button {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .quantity-box .quantity {
        font-size: 16px;
    }
}

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

    .product-selector-section .container {
        max-width: 700px;
    }

    .product-item {
        padding: 20px;
    }

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

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

    .size-buttons button, 
    .hijab-buttons button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .quantity-box {
        padding: 6px;
    }

    .quantity-box button {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

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

/* Mobile Layout */
@media (max-width: 767px) {
    .container {
        padding: 0;
        max-width: 100%;
    }

    .main-image-container {
        height: auto;
        aspect-ratio: 4/5;
    }

    .main-image {
        object-fit: contain;
    }

    .product-title {
        font-size: 20px;
        margin: 12px 0;
    }

    .product-description {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .sales-info {
        margin-bottom: 20px;
    }

    .price-container {
        margin-bottom: 12px;
    }

    .offer-note {
        font-size: 12px;
        margin-bottom: 2px;
    }

    .order-button {
        margin-top: 8px;
    }

    .thumbnail {
        width: calc(24% - 6px);
        min-width: 70px;
    }

    .details-image-container {
        width: 180px;
        height: 180px;
    }

    .product-selector-section {
        padding: 0;
    }

    .select-text {
        font-size: 18px;
        margin-bottom: 10px;
        padding: 0;
    }

    .product-item {
        padding: 0;
        gap: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .check-mark {
        width: 16px;
        height: 16px;
        margin: 0;
    }

    .product-info h3 {
        font-size: 14px;
        margin: 0;
    }

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

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

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

    .size-options, .hijab-options, .quantity-selector {
        display: flex;
        align-items: center;
        gap: 4px;
        margin: 0;
        padding: 0;
    }

    .size-options span, .hijab-options span, .quantity-selector span {
        display: inline-block;
        margin: 0;
        min-width: 30px;
        font-size: 11px;
    }

    .size-buttons, .hijab-buttons {
        display: flex;
        gap: 2px;
        flex-wrap: wrap;
        flex: 1;
    }

    .size-buttons button, .hijab-buttons button {
        padding: 2px 4px;
        font-size: 10px;
        min-width: 0;
        flex: 1;
        white-space: nowrap;
    }

    /* Add specific styles for size number buttons */
    .size-buttons button {
        width: 40px;  /* Fixed width for size numbers */
        padding: 2px 0;  /* Remove horizontal padding */
        flex: 0 0 auto;  /* Don't allow flex growth */
    }

    .size-buttons {
        gap: 4px;  /* Add small gap between size buttons */
        justify-content: flex-start;  /* Align buttons to the left */
    }

    /* Add specific styles for hijab buttons */
    .hijab-buttons button {
        width: 88px;  /* Fixed width for hijab options */
        padding: 2px 0;  /* Remove horizontal padding */
        flex: 0 0 auto;  /* Don't allow flex growth */
    }

    .hijab-buttons {
        gap: 4px;  /* Add small gap between hijab buttons */
        justify-content: flex-start;  /* Align buttons to the left */
    }

    .quantity-selector {
        width: 100%;
    }

    .quantity-box {
        padding: 0;
        gap: 0;
    }

    .quantity-box button {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .quantity-box .quantity {
        font-size: 12px;
        min-width: 16px;
    }

    .product-details {
        padding: 0;
        margin: 0;
    }
}

/* Product Details Section */
.details {
    padding: 40px 12px;
}

.details h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.details-images {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.details-images img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .details {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .details-images {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .details-images img {
        width: auto;
        height: 400px;
        object-fit: contain;
    }

    .details-images img:first-child {
        height: 400px;
        width: auto;
    }
}

/* Contact Section Styles */
.contact-section {
    padding: 48px 12px;
    background-color: var(--background-light);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 24px;
}

.contact-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
}

.contact-card {
    background: var(--white);
    border-radius: 0;
    padding: 32px;
    box-shadow: var(--shadow);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.social-icon span {
    font-size: 14px;
    font-weight: 500;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: 0;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-button:hover {
    background-color: #bfa133;
}

.phone-icon {
    width: 20px;
    height: 20px;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-header h2 {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 18px;
    }

    .contact-card {
        padding: 40px;
    }

    .social-icon img {
        width: 48px;
        height: 48px;
    }

    .social-icon span {
        font-size: 16px;
    }

    .phone-button {
        padding: 16px 32px;
        font-size: 18px;
    }
}

/* Product Selector Styles */
.product-selector-section {
    padding: 40px 15px;
    background-color: var(--white);
}

.select-text {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 2px;
    margin-bottom: 12px;
}

.product-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.product-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 12px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 0px;
}

.product-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 2px 8px 0 rgba(212, 175, 55, 0.08);
}

.product-item.selected {
    border-color: var(--accent-color);
    background-color: var(--background-light);
}

.check-mark {
    position: relative;
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.product-item.selected .check-mark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

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

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

.product-item .product-info {
    padding-left: 12px;
}

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

.product-info h3 {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    word-break: break-word;
}

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

.original-price {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: line-through;
}

.discount-price {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 700;
}

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

.product-details {
    display: none;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    margin-top: 12px;
}

.product-item.selected .product-details {
    display: block;
}

.size-options, .hijab-options, .quantity-selector {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.size-options span, .hijab-options span, .quantity-selector span {
    color: var(--text-color);
    font-size: 13px;
    font-weight: 500;
    min-width: 50px;
}

.size-buttons, .hijab-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex: 1;
}

.size-buttons button, .hijab-buttons button {
    padding: 6px 4px;
    border: 1.5px solid var(--border-color);
    border-radius: 0;
    background: var(--white);
    color: var(--text-color);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.size-buttons button:hover, .hijab-buttons button:hover {
    border-color: var(--accent-color);
}

.size-buttons button.selected, .hijab-buttons button.selected {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

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

.quantity-box {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 2px;
}

.quantity-box button {
    width: 24px;
    height: 24px;
    border: none;
    background: var(--background-light);
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0;
    transition: all 0.3s ease;
}

.quantity-box button:hover {
    background: var(--border-color);
}

.quantity-box .quantity {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    min-width: 20px;
    text-align: center;
}

/* Order Form Styles */
.order-form-section {
    padding: 12px;
    background-color: var(--background-light);
    border-radius: 12px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 2px;
    margin-bottom: 12px;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.required {
    color: var(--error-color);
    margin-left: 4px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    background: var(--white);
    color: var(--text-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
}

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

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

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.radio-label {
    display: block;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-label:hover {
    border-color: var(--primary-color);
}

.radio-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: var(--accent-color);
}

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

.order-summary {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    margin-bottom: 32px;
    overflow: hidden;
}

.summary-header {
    background: var(--accent-color);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-content {
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin-bottom: 12px;
}

.summary-row.total {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 16px;
    font-weight: 700;
    font-size: 18px;
}

.selected-item {
    background: var(--background-light);
    border-radius: 0;
    padding: 12px;
    margin: 12px 0;
}

.selected-product {
    font-size: 14px;
    line-height: 1.4;
}

.delivery-charge, .total-price {
    color: var(--text-color);
}

.grand-total {
    color: var(--accent-color);
    font-size: 20px;
}

.warning-message {
    color: var(--error-color);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 16px;
    min-height: 20px;
}

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

.confirm-button {
    width: 100%;
    height: 56px;
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.confirm-button:disabled {
    background-color: var(--border-color);
    color: var(--text-secondary);
}

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

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* 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: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 90%;
    width: 400px;
    box-shadow: var(--shadow);
    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: var(--success-color);
    font-size: 60px;
    margin-bottom: 20px;
}

.popup-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.popup-content p {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-text {
    color: var(--success-color) !important;
    font-weight: 500;
}

.popup-button {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 0;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

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

/* Responsive Styles */
@media (min-width: 768px) {
    .product-selector-section {
        padding: 60px 20px;
    }

    .select-text {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .product-item {
        padding: 16px;
    }

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

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

    .size-buttons button, 
    .hijab-buttons button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .quantity-box {
        padding: 4px;
    }

    .quantity-box button {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .quantity-box .quantity {
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .product-selector-section {
        padding: 80px 40px;
    }

    .select-text {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .product-item {
        padding: 20px;
    }

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

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

    .size-buttons button, 
    .hijab-buttons button {
        padding: 10px 20px;
        font-size: 14px;
    }

    .quantity-box {
        padding: 6px;
    }

    .quantity-box button {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

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

/* Remove border from delivery group (fieldset) in order form */
.order-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 24px 0;
}

/* Add margin-bottom to legend (ডেলিভারি এরিয়া*) */
.order-form legend {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.product-items-section {
    padding: 12px;
}

.hijab-tip-wrapper {
    display: inline-block;
    min-width: 38px;
    vertical-align: middle;
    margin-left: 4px;
}

.hijab-tip {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    font-weight: bold;
    font-size: 13px;
    position: relative;
    top: 1px;
}

.hijab-tip.show {
    opacity: 1;
    animation: hijabTipFade 1s;
}

@keyframes hijabTipFade {
    0% { opacity: 0; transform: translateY(-8px); }
    20% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(8px); }
}

/* Social icon hover accent color */
.social-icon:hover span {
    color: var(--accent-color);
}

.order-button,
.confirm-button,
.popup-button,
.sale-badge,
.phone-button,
.product-item,
.check-mark,
.quantity-box,
.radio-label,
.order-summary,
.selected-item,
.contact-card,
.details-image-container,
.form-group input,
.form-group textarea {
    border-radius: 0 !important;
} 