/* Custom carousel styles */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}

.carousel-slide {
    transition: transform 0.5s ease-in-out;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-nav-btn:hover {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background-color: #db2777;
    width: 28px;
    border-radius: 8px;
}

/* Custom dot styling for feature list */
.feature-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #db2777;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 8px;
}

/* Trustpilot stars styling */
.trustpilot-stars {
    display: inline-flex;
    background-color: #00b67a;
    color: white;
    padding: 2px 4px;
    border-radius: 2px;
    font-size: 0.75rem;
}


.active-option {
        border-color: #2563eb;
        background-color: #eff6ff;
        color: #2563eb;
        ring: 2px solid #2563eb;
    }

    /* Navbar Dropdown Logic */
    .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.2s ease-in-out;
    }

    .group:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Sub-Sub Menu Logic */
    .sub-dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition: all 0.2s ease-in-out;
    }

    .group\/sub:hover .sub-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    /* Turnaround options */
    .turnaround-option.selected {
        border-color: #f97316;
        background-color: #fff7ed;
        transform: scale(1.02);
    }

    /* Design option tabs */
    .design-tab.active {
        background-color: #f8fafc;
        border-color: #2563eb;
        color: #2563eb;
        font-weight: 600;
    }

        /* Custom styles */
    .price-row {
        transition: all 0.2s ease;
        cursor: pointer;
    }
    
    .price-row:hover {
        background-color: #fdf2f8;
    }
    
    .price-row.selected {
        background-color: #fce7f3;
        border-color: #db2777;
        position: relative;
    }
    
    .price-row.selected::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 3px;
        background-color: #db2777;
    }
    
    .option-btn {
        transition: all 0.2s ease;
    }
    
    .option-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .option-btn.active {
        border-color: #db2777;
        background-color: #fce7f3;
        color: #db2777;
        font-weight: 600;
    }
    
    .switch {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 34px;
    }
    
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
    
    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        transition: .4s;
    }
    
    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
    }
    
    input:checked + .slider {
        background-color: #db2777;
    }
    
    input:checked + .slider:before {
        transform: translateX(26px);
    }
    
    .slider.round {
        border-radius: 34px;
    }
    
    .slider.round:before {
        border-radius: 50%;
    }
    
    .cart-animation {
        animation: cartAdd 0.5s ease;
    }
    
    @keyframes cartAdd {
        0% { transform: scale(1); }
        50% { transform: scale(1.1); }
        100% { transform: scale(1); }
    }
    
    .selected-badge {
        position: absolute;
        top: -8px;
        right: 10px;
        background: #db2777;
        color: white;
        font-size: 10px;
        padding: 2px 8px;
        border-radius: 10px;
        font-weight: bold;
    }