/* Product Header */
.product-header {margin-bottom: 10px;}

.product-header h1 {
    font-size: 23px;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-code {
    color: #000000;
    font-size: 13px;
    font-weight: bold;
}

/* Sections */
.section {
    margin-bottom: 15px;
    border-radius: 12px;
}

.section h2 {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section h2 i {
    color: #28a745;
}

/* Size Options */
.size-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 5px;
}

.size-option {
    display: flex;
    flex-direction: column;
    padding: 20px 10px 20px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f2f2f2;
    position: relative;
}

.size-option:hover {
    border-color: #28a745;
    transform: translateY(-2px);
}

.size-option.selected {
    background-color: #f2f2f2;
}

.size-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.size-option input[type="radio"]  + .size-text::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -5px;
    width: 17px;
    height: 17px;
    /* background-color: #28a745; */
    border-radius: 50%;
    /* border: 3px solid white; */
    box-shadow: 0 0 0 2px #6a6a6a;
}
.size-option input[type="radio"]:checked + .size-text::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -5px;
    width: 17px;
    height: 17px;
    background-color: #28a745;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 2px #28a745;
}

.size-text {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    position: relative;
    line-height: 10px;
    text-align: center;
}

.price {
    font-size: 14px;
    color: #000000;
    line-height: 10px;
    margin-top: 10px;
    text-align: center;
}

/* Input Groups */
.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 15px;
    color: #6c757d;
    font-size: 18px;
}

.location-input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.location-input:focus {
    outline: none;
    border-color: #28a745;
}

/* Date Options */
.date-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.date-btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    background-color: #f2f2f2;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.date-btn:hover, .date-btn.aktif {
    border-color: #28a745;
    background-color: #f8fff9;
}
.saat{
    display: none;
}
[data-date-id].aktif .saat {
    display: block;
}

.calendar-btn i {color: #999;margin-bottom: 2px;}

.calendar-btn:hover {
}

/* Customization Groups */
.customization-group {
    margin-bottom: 5px;
}

.customization-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
}

.content-select {
    width: 100%;
    padding: 10px 10px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    background-color: white;
    transition: border-color 0.3s ease;
}

.content-select:focus {
    outline: none;
    border-color: #28a745;
}

.base-text-input {
    width: 100%;
    padding: 9px 10px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.base-text-input:focus {
    outline: none;
    border-color: #28a745;
}

.notes-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    min-height: 60px;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.notes-input:focus {
    outline: none;
    border-color: #28a745;
}

.customization-group small {
    display: block;
    color: #6c757d;
    font-size: 14px;
    margin-top: 5px;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #28a745;
}

/* Preparation Time */
.preparation-time {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background-color: #f8fff9;
    border: 1px solid #d4edda;
    border-radius: 8px;
    margin-bottom: 25px;
    color: #155724;
}

.preparation-time i {
    color: #28a745;
    font-size: 20px;
}

/* Pricing Summary */
.pricing-summary {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-bottom: 25px;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.price-label {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #28a745;
}

.delivery-fee {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fee-label {
    font-size: 16px;
    color: #6c757d;
}

.fee-amount {
    font-size: 18px;
    font-weight: 600;
    color: #dc3545;
}

/* Order Button */
.order-section {
    text-align: center;
    margin-bottom: 30px;
}

.order-btn {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    min-width: 200px;
}

.order-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Guarantees */
.guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
}

.guarantee-item i {
    font-size: 32px;
    color: #28a745;
}

.guarantee-item span {
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .section {
        padding: 20px;
    }
    
    .date-options {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .guarantees {
        grid-template-columns: 1fr;
    }
    
    .product-header h1 {
        font-size: 24px;
    }
    
    .order-btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 18px;
    }
}
.urun-ozellestir{
    padding: 20px;
    border: 2px solid #edf1f2;
    border-radius: 5px;
    background: #f2f2f2;
}
.date-btn span{
    color: #999;
    font-size: 13px;
}
.date-btn div{
    font-weight: 700;
}
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .section {
        padding: 15px;
    }
    
    .product-header h1 {
        font-size: 20px;
    }
    
    .price-amount {
        font-size: 20px;
    }
}