/* Partners Page Specific Styles */

/* Partners Hero Section */
.partners-hero {
    background: linear-gradient(135deg, var(--surfaces) 0%, var(--background) 100%);
    padding: 120px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.partners-hero .container {
    padding-top: 40px;
}

.partners-hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.partners-hero .hero-text h1 {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.partners-hero .hero-description {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 35px;
    line-height: 1.6;
}

.partners-hero .hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.partners-hero .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-hero .hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Partnership Options Section */
.partnership-section {
    padding: 100px 0;
    background-color: var(--background);
}

.partnership-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.option-card {
    background-color: var(--surfaces);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.option-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.option-content {
    padding: 30px;
}

.option-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
}

.option-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.feature i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 24px;
}

.feature h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.feature p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Product Management Section */
.product-management {
    padding: 100px 0;
    background-color: var(--surfaces);
}

.product-management .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-management .content-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.product-management .content-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.management-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: var(--background);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.section-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Delivery Methods Section */
.delivery-methods {
    padding: 100px 0;
    background-color: var(--background);
}

.delivery-types {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
}

.delivery-type {
    background-color: var(--surfaces);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.type-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(80, 90, 146, 0.1);
}

.type-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.type-header h3 {
    font-size: 2rem;
    color: var(--primary);
}

.type-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

.delivery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.delivery-details p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.delivery-process {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: var(--background);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.step-number {
    background-color: var(--primary);
    color: var(--text-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.center-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.center-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: var(--background);
    border-radius: 10px;
}

.center-feature i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 20px;
}

.center-feature span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Delivery Cost Section */
.delivery-cost {
    padding: 100px 0;
    background-color: var(--surfaces);
}

.delivery-cost .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.delivery-cost .content-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.delivery-cost .content-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.cost-components {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cost-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--background);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cost-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cost-icon {
    background-color: var(--primary);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cost-icon i {
    font-size: 1.3rem;
}

.cost-details h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.cost-details p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Payment System Section */
.payment-system {
    padding: 100px 0;
    background: var(--surfaces);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.payment-card {
    background-color: var(--surfaces);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.payment-icon {
    background-color: var(--primary);
    color: var(--text-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.payment-icon i {
    font-size: 2rem;
}

.payment-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.payment-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--background);
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 60px;
    margin-left: auto;
    margin-right: auto;
}

.partner-form {
    background-color: var(--background);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info {
    background-color: var(--primary);
    color: var(--text-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.contact-item i {
    font-size: 1.2rem;
    width: 20px;
}

/* Form Message Styles */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    font-weight: 500;
    text-align: center;
    animation: slideInDown 0.3s ease-out;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form submission loading state */
.partner-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background-color: #6c757d;
}

.partner-form button[type="submit"]:disabled:hover {
    background-color: #6c757d;
    transform: none;
}

/* Interactive Flow Section */
.interactive-flow-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--surfaces) 0%, var(--background) 100%);
    position: relative;
    overflow: hidden;
}

.interactive-flow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23505A92" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.flow-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.flow-step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    padding: 40px;
    background: var(--background);
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.flow-step.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
    animation: slideInFade 0.8s ease-out;
}

.flow-step.slide-out {
    animation: slideOutFade 0.5s ease-in forwards;
}

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideOutFade {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
}

.step-content {
    text-align: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(80, 90, 146, 0.3);
    transition: all 0.3s ease;
}

.step-icon.animated {
    animation: pulse 2s infinite;
}

.step-icon.celebration {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    animation: celebrationPulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes celebrationPulse {
    0% {
        transform: scale(1) rotate(0deg);
    }

    25% {
        transform: scale(1.1) rotate(5deg);
    }

    50% {
        transform: scale(1.15) rotate(0deg);
    }

    75% {
        transform: scale(1.1) rotate(-5deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

.step-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-content p {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.step-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.flow-btn {
    background: var(--surfaces);
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    min-width: 180px;
    justify-content: center;
}

.flow-btn:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(80, 90, 146, 0.3);
}

.flow-btn.yes-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-color: #28a745;
    color: white;
}

.flow-btn.yes-btn:hover {
    background: linear-gradient(135deg, #218838, #1ba085);
    transform: translateY(-3px) scale(1.05);
}

.flow-btn.no-btn {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    border-color: #dc3545;
    color: white;
}

.flow-btn.no-btn:hover {
    background: linear-gradient(135deg, #c82333, #e66100);
    transform: translateY(-3px) scale(1.05);
}

.flow-btn.continue-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    color: white;
    margin-top: 20px;
}

.flow-btn.primary-action {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-color: #FFD700;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 18px 35px;
}

.flow-btn.restart-btn {
    background: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
    margin-top: 15px;
}

/* Animation Containers */
.animation-container {
    margin: 30px 0;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Shopping Cart Animation */
.shopping-cart-animation {
    position: relative;
}

.cart-icon {
    font-size: 3rem;
    color: var(--primary);
    animation: cartBounce 2s ease-in-out infinite;
}

.product-items {
    position: absolute;
    top: -10px;
    right: 10px;
}

.item {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    position: absolute;
    animation: itemDrop 2s ease-in-out infinite;
}

.item1 {
    animation-delay: 0.5s;
    top: 0;
    right: 5px;
}

.item2 {
    animation-delay: 1s;
    top: 0;
    right: 15px;
}

.item3 {
    animation-delay: 1.5s;
    top: 0;
    right: 25px;
}

@keyframes cartBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes itemDrop {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    50% {
        transform: translateY(10px);
        opacity: 1;
    }

    100% {
        transform: translateY(20px);
        opacity: 0;
    }
}

/* Warehouse Animation */
.warehouse-animation {
    position: relative;
}

.warehouse-icon {
    font-size: 3rem;
    color: var(--primary);
    animation: warehousePulse 2s ease-in-out infinite;
}

.security-indicators {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.security-indicators i {
    font-size: 1rem;
    animation: securityBlink 2s ease-in-out infinite;
}

.shield1 {
    color: #28a745;
    animation-delay: 0s;
}

.shield2 {
    color: #ffc107;
    animation-delay: 0.7s;
}

.shield3 {
    color: #17a2b8;
    animation-delay: 1.4s;
}

@keyframes warehousePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes securityBlink {

    0%,
    50%,
    100% {
        opacity: 0.3;
    }

    25% {
        opacity: 1;
    }
}

/* Pickup Animation */
.pickup-animation {
    position: relative;
    width: 200px;
    height: 60px;
}

.truck-icon {
    font-size: 2.5rem;
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: truckMove 3s ease-in-out infinite;
}

.route-line {
    position: absolute;
    top: 50%;
    left: 50px;
    right: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    animation: routeGlow 3s ease-in-out infinite;
}

.store-icon {
    font-size: 2rem;
    color: var(--secondary);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    animation: storeBlink 3s ease-in-out infinite;
}

@keyframes truckMove {

    0%,
    100% {
        transform: translateY(-50%) translateX(0);
    }

    50% {
        transform: translateY(-50%) translateX(20px);
    }
}

@keyframes routeGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 10px var(--primary);
    }
}

@keyframes storeBlink {

    0%,
    50%,
    100% {
        opacity: 0.7;
    }

    25% {
        opacity: 1;
    }
}

/* Celebration Animation */
.celebration-animation {
    position: relative;
    width: 100%;
    height: 100px;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: confettiFall 3s ease-in-out infinite;
}

.confetti1 {
    background: #FFD700;
    left: 10%;
    animation-delay: 0s;
}

.confetti2 {
    background: #FF6B6B;
    left: 25%;
    animation-delay: 0.5s;
}

.confetti3 {
    background: #4ECDC4;
    left: 40%;
    animation-delay: 1s;
}

.confetti4 {
    background: #45B7D1;
    left: 55%;
    animation-delay: 1.5s;
}

.confetti5 {
    background: #96CEB4;
    left: 70%;
    animation-delay: 2s;
}

.confetti6 {
    background: #FFEAA7;
    left: 85%;
    animation-delay: 2.5s;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-20px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100px) rotate(360deg);
        opacity: 0;
    }
}

.final-content {
    padding: 20px 0;
}

.final-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    margin-top: 30px;
}

/* Responsive Design for Interactive Flow */
@media (max-width: 768px) {
    .interactive-flow-section {
        padding: 60px 0;
    }

    .flow-step {
        padding: 30px 20px;
        margin-bottom: 15px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .step-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .step-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .step-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .flow-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 1rem;
    }

    .animation-container {
        height: 80px;
        margin: 20px 0;
    }

    .pickup-animation {
        width: 150px;
        height: 40px;
    }

    .truck-icon {
        font-size: 2rem;
    }

    .store-icon {
        font-size: 1.5rem;
    }

    .final-actions {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .flow-step {
        padding: 25px 15px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 1rem;
    }

    .animation-container {
        height: 60px;
    }

    .pickup-animation {
        width: 120px;
    }
}

/* Responsive Design for Partners Page */
@media (max-width: 992px) {
    .partners-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .partners-hero .hero-text h1 {
        font-size: 2.5rem;
    }

    .partnership-options {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-management .section-content,
    .delivery-cost .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .type-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .management-features {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .partners-hero {
        padding: 100px 0 60px;
    }

    .partners-hero .hero-text h1 {
        font-size: 2rem;
    }

    .partners-hero .hero-description {
        font-size: 1.1rem;
    }

    .partners-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .option-content,
    .partner-form,
    .contact-info {
        padding: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .delivery-type {
        padding: 25px;
    }

    .type-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cost-item {
        padding: 20px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .partners-hero .hero-text h1 {
        font-size: 1.8rem;
    }

    .partners-hero .hero-cta .btn {
        width: 100%;
        text-align: center;
    }

    .option-content h3,
    .product-management .content-text h2,
    .delivery-cost .content-text h2 {
        font-size: 1.5rem;
    }

    .type-header h3 {
        font-size: 1.5rem;
    }

    .payment-icon {
        width: 60px;
        height: 60px;
    }

    .payment-icon i {
        font-size: 1.5rem;
    }
}

/* ===================== */
/* Seller Delivery Settings (new) */
/* ===================== */
.seller-delivery-settings {
    padding: 80px 0;
    background: var(--background);
}

.seller-delivery-settings .settings-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.seller-delivery-settings .settings-list .setting-card {
    position: relative;
}

.setting-card .card-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.delivery-options {
    direction: rtl;
    max-width: 780px;
    margin: 16px 0;
    padding: 12px;
    background: #fbfcfd;
    border-radius: 10px;
    border-right: 4px solid var(--primary-color, #0b74de);
    box-shadow: 0 6px 18px rgba(11, 116, 222, 0.06);
    list-style: none;
    font-family: "Tajawal", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, "Noto Sans Arabic", sans-serif;
    color: #222;
}

/* Each option */
.delivery-options li {
    position: relative;
    padding: 14px 56px 14px 16px;
    /* space for the round icon on the right */
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    display: block;
    text-align: right;
    line-height: 1.25;
    font-size: 1rem;
}

/* remove divider for last item */
.delivery-options li:last-child {
    border-bottom: none;
}

/* round check / icon on the right (RTL) */
.delivery-options li::before {
    content: "✓";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: var(--primary-color, #0b74de);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(11, 116, 222, 0.15);
}

/* Emphasize the title text */
.delivery-options li strong {
    color: #111;
    font-weight: 600;
    margin-right: 8px;
}

/* Subtle hover / focus for accessibility */
.delivery-options li:hover,
.delivery-options li:focus-within {
    background: linear-gradient(90deg, rgba(11, 116, 222, 0.03), transparent);
}

/* Small screens adjustments */
@media (max-width: 480px) {
    .delivery-options {
        padding: 10px;
    }

    .delivery-options li {
        padding: 12px 48px 12px 12px;
        font-size: 0.98rem;
    }

    .delivery-options li::before {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        right: 12px;
    }
}

.seller-delivery-settings .settings-list .setting-card+.setting-card {
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    padding-top: 16px;
}

.seller-delivery-settings .setting-card {
    background: var(--surfaces);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease;
}

.seller-delivery-settings .setting-card:hover {
    transform: translateY(-3px);
}

.seller-delivery-settings .setting-card h3 {
    margin: 10px 0 8px;
    color: var(--primary);
}

.seller-delivery-settings .setting-card p {
    color: var(--text-muted);
    line-height: 1.9;
}

.seller-delivery-settings .setting-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f7ff, #eef5ff);
    color: var(--primary);
}

.seller-delivery-settings .radius-bar {
    margin-top: 10px;
    position: relative;
    height: 8px;
    background: #eef3ff;
    border-radius: 6px;
}

.seller-delivery-settings .radius-bar .dot {
    position: absolute;
    top: 50%;
    left: 65%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: #0d6efd;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(13, 110, 253, .15);
    animation: pulseDot 2.5s infinite ease-in-out;
}

.seller-delivery-settings .radius-bar .label {
    position: absolute;
    top: -28px;
    left: 65%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #0d6efd;
    background: #eef5ff;
    padding: 2px 8px;
    border-radius: 12px;
}

.seller-tips-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--primary);
}

.seller-tips .tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.seller-tips .tips-list li {
    background: #f9fbff;
    border: 1px solid rgba(0, 0, 0, .05);
    padding: 10px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seller-tips .tips-list i {
    color: var(--primary);
}