/* Custom User Registration Plugin Styles - Modern Design */



.cur-form-container {
    max-width: 700px;
     margin-inline: auto;
}



.cur-form-container h2 {
    margin-top: 0;
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
    color: #fff;
}

.cur-form {
    width: 100%;
}

.cur-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.cur-form-row .cur-form-group {
    flex: 1;
    margin-bottom: 0;
}

.cur-form-group {
    margin-bottom: 20px;
}

.cur-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
}

.cur-form-group input[type="text"],
.cur-form-group input[type="email"],
.cur-form-group input[type="password"],
.cur-form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

body.dark-mode .cur-form-group input[type="text"],
body.dark-mode .cur-form-group input[type="email"],
body.dark-mode .cur-form-group input[type="password"],
body.dark-mode .cur-form-group input[type="tel"],
body[class*="dark"] .cur-form-group input[type="text"],
body[class*="dark"] .cur-form-group input[type="email"],
body[class*="dark"] .cur-form-group input[type="password"],
body[class*="dark"] .cur-form-group input[type="tel"] {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cur-form-group input:focus {
    outline: none;
    border-color: #FEAE1B;
    box-shadow: 0 0 0 4px rgba(254, 174, 27, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

body.dark-mode .cur-form-group input:focus,
body[class*="dark"] .cur-form-group input:focus {
    border-color: #FEAE1B;
    box-shadow: 0 0 0 4px rgba(254, 174, 27, 0.15);
}

.cur-form-group input[type="checkbox"] {
    margin-right: 8px;
}

.cur-button {
    width: 100%;
    padding: 14px;
    background: #FEAE1B;
    color: #1e1e1e;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cur-button:hover {
    background: #e69b0f;
   
}



.cur-links {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #fff;
}

body.dark-mode .cur-links,
body[class*="dark"] .cur-links {
    color: #fff;
}

.cur-links a {
    color: #FEAE1B;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.cur-links a:hover {
    color: #ffc04d;
    text-decoration: none;
    text-shadow: 0 0 8px rgba(254, 174, 27, 0.4);
}

.cur-message {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.cur-message-success {
    background: #d4edda;
    color: #fff;
    border: 1px solid #c3e6cb;
}

.cur-message-error {
    background: #f8d7da;
    color: #fff;
    border: 1px solid #fff;
}

body.dark-mode .cur-message-success,
body[class*="dark"] .cur-message-success {
     background: #f8d7da;
    color: #fff;
    border: 1px solid #fff;
}

body.dark-mode .cur-message-error,
body[class*="dark"] .cur-message-error {
    background: #f8d7da;
    color: #fff;
    border: 1px solid #fff;
}

/* Responsive */
@media (max-width: 600px) {
 
    
    .cur-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .cur-form-row .cur-form-group {
        margin-bottom: 20px;
    }
}

/* My Account Page Styles */

.cur-account-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.cur-account-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar */
.cur-account-sidebar {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 16px;
    padding: 30px 0;
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cur-account-user-info {
    text-align: center;
    padding: 0 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cur-account-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #FEAE1B;
}

.cur-account-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cur-account-user-info h3 {
    margin: 0 0 5px;
    color: #fff;
    font-size: 18px;
}

.cur-account-user-info p {
    margin: 0;
    color: #999;
    font-size: 14px;
}

/* Navigation */
.cur-account-nav {
    padding: 20px 0 0;
}

.cur-nav-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    gap: 12px;
}

.cur-nav-item:hover {
    background: rgba(254, 174, 27, 0.1);
    border-left-color: #FEAE1B;
}

.cur-nav-item.active {
    background: rgba(254, 174, 27, 0.15);
    border-left-color: #FEAE1B;
    color: #FEAE1B;
}

.cur-nav-item.logout {
    color: #ff6b6b;
    margin-top: 10px;
}

.cur-nav-item.logout:hover {
    background: rgba(255, 107, 107, 0.1);
    border-left-color: #ff6b6b;
}

.cur-nav-icon {
    font-size: 20px;
}

/* Content Area */
.cur-account-content {
    min-height: 400px;
}

.cur-account-content .cur-form-container {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Addresses Grid */
.cur-addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.cur-address-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.cur-address-card:hover {
    border-color: #FEAE1B;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 174, 27, 0.2);
}

.cur-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cur-address-header h4 {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.cur-default-badge {
    background: #FEAE1B;
    color: #1e1e1e;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.cur-address-body {
    margin-bottom: 15px;
}

.cur-address-body p {
    margin: 5px 0;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.cur-address-actions {
    display: flex;
    gap: 10px;
}

.cur-address-btn {
    flex: 1;
    padding: 8px 15px;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cur-address-btn.edit {
    background: rgba(254, 174, 27, 0.2);
    color: #FEAE1B;
    border: 1px solid #FEAE1B;
}

.cur-address-btn.edit:hover {
    background: #FEAE1B;
    color: #1e1e1e;
}

.cur-address-btn.delete {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

.cur-address-btn.delete:hover {
    background: #ff6b6b;
    color: #fff;
}

/* Orders List */
.cur-orders-list {
    min-height: 300px;
}

/* Responsive */
@media (max-width: 968px) {
    .cur-account-container {
        grid-template-columns: 1fr;
    }
    
    .cur-account-sidebar {
        position: relative;
        top: 0;
    }
    
    .cur-account-nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 20px;
    }
    
    .cur-nav-item {
        border-left: none;
        border-bottom: 3px solid transparent;
        justify-content: center;
        padding: 12px;
    }
    
    .cur-nav-item:hover,
    .cur-nav-item.active {
        border-left: none;
        border-bottom-color: #FEAE1B;
    }
    
    .cur-nav-item.logout:hover {
        border-bottom-color: #ff6b6b;
    }
}

@media (max-width: 600px) {
    .cur-account-wrapper {
        padding: 0 10px;
        margin: 20px auto;
    }
    
    .cur-account-content .cur-form-container {
        padding: 25px 20px;
    }
    
    .cur-addresses-grid {
        grid-template-columns: 1fr;
    }
    
    .cur-account-nav {
        grid-template-columns: 1fr;
    }
}

.cur-orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.cur-orders-table th {
    background: rgba(254, 174, 27, 0.1);
    color: #FEAE1B;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #FEAE1B;
}

.cur-orders-table td {
    padding: 15px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cur-orders-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.order-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-completed {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.status-processing {
    background: rgba(254, 174, 27, 0.2);
    color: #FEAE1B;
}

.status-pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.status-cancelled, .status-failed {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.cur-view-order {
    color: #FEAE1B;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cur-view-order:hover {
    color: #ffc04d;
}

@media (max-width: 768px) {
    .cur-orders-table {
        font-size: 14px;
    }
    
    .cur-orders-table th,
    .cur-orders-table td {
        padding: 10px 8px;
    }
}

/* Orders Summary */
.cur-orders-summary {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(254, 174, 27, 0.1);
    border-radius: 8px;
    border-left: 4px solid #FEAE1B;
}

.cur-orders-summary p {
    margin: 0;
    color: #fff;
    font-size: 14px;
}

/* Pagination Styles */
.cur-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 20px 0;
}

.cur-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cur-page-link:hover {
    background: rgba(254, 174, 27, 0.2);
    border-color: #FEAE1B;
    color: #FEAE1B;
    transform: translateY(-2px);
}

.cur-page-link.active {
    background: #FEAE1B;
    color: #1e1e1e;
    border-color: #FEAE1B;
    cursor: default;
}

.cur-page-link.prev,
.cur-page-link.next {
    padding: 0 20px;
}

.cur-page-link.active:hover {
    transform: none;
}

/* Order Details Page */
.cur-order-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.cur-back-link {
    display: inline-flex;
    align-items: center;
    color: #FEAE1B;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.cur-back-link:hover {
    color: #ffc04d;
    transform: translateX(-5px);
}

.cur-order-header h2 {
    margin: 0;
    text-align: left;
}

.cur-order-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.cur-order-info-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
}

.cur-order-info-card h3 {
    margin: 0 0 20px;
    color: #FEAE1B;
    font-size: 18px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(254, 174, 27, 0.3);
}

.cur-order-info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cur-order-info-row:last-child {
    border-bottom: none;
}

.cur-order-info-row .label {
    color: #999;
    font-weight: 600;
}

.cur-order-info-row .value {
    color: #fff;
}

.cur-order-info-row .value.total {
    font-size: 18px;
    font-weight: 700;
    color: #FEAE1B;
}

.cur-address-display {
    color: #ccc;
    line-height: 1.8;
}

.cur-address-display address {
    font-style: normal;
}

/* Order Items Card */
.cur-order-items-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.cur-order-items-card h3 {
    margin: 0 0 20px;
    color: #FEAE1B;
    font-size: 18px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(254, 174, 27, 0.3);
}

.cur-order-items-table {
    width: 100%;
    border-collapse: collapse;
}

.cur-order-items-table th {
    background: rgba(254, 174, 27, 0.1);
    color: #FEAE1B;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid rgba(254, 174, 27, 0.3);
}

.cur-order-items-table td {
    padding: 15px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cur-order-items-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.cur-product-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cur-product-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.cur-product-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cur-product-info strong {
    color: #fff;
}

.cur-product-info small {
    color: #999;
    font-size: 12px;
}

.cur-order-items-table tfoot {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.cur-order-items-table tfoot td {
    padding: 12px 15px;
    font-weight: 600;
}

.cur-order-items-table tfoot .total-row td {
    padding-top: 15px;
    font-size: 18px;
    color: #FEAE1B;
}

/* Order Notes Card */
.cur-order-notes-card {
    background: rgba(254, 174, 27, 0.1);
    border: 2px solid rgba(254, 174, 27, 0.3);
    border-radius: 12px;
    padding: 25px;
}

.cur-order-notes-card h3 {
    margin: 0 0 15px;
    color: #FEAE1B;
    font-size: 18px;
}

.cur-order-notes-card p {
    margin: 0;
    color: #fff;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .cur-order-details-grid {
        grid-template-columns: 1fr;
    }
    
    .cur-pagination {
        flex-wrap: wrap;
    }
    
    .cur-page-link {
        min-width: 35px;
        height: 35px;
        padding: 0 12px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .cur-orders-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .cur-order-items-table {
        display: block;
        overflow-x: auto;
    }
    
    .cur-product-cell {
        min-width: 200px;
    }
    
    .cur-order-info-card,
    .cur-order-items-card {
        padding: 20px;
    }
    
    .cur-pagination {
        gap: 5px;
    }
    
    .cur-page-link {
        min-width: 32px;
        height: 32px;
        padding: 0 10px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .cur-order-items-table th,
    .cur-order-items-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .cur-product-thumb {
        width: 45px;
        height: 45px;
    }
    
    .cur-order-info-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .cur-order-info-row .label {
        font-size: 13px;
    }
}

/* Saved Addresses Section on Checkout */
.cur-saved-addresses-section {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cur-saved-addresses-section h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.cur-address-selector {
    position: relative;
}

.cur-address-dropdown {
    width: 100%;
    padding: 14px 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FEAE1B' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.cur-address-dropdown:hover {
    border-color: rgba(254, 174, 27, 0.5);
}

.cur-address-dropdown:focus {
    outline: none;
    border-color: #FEAE1B;
    box-shadow: 0 0 0 4px rgba(254, 174, 27, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.cur-address-dropdown option {
    background: #1e1e1e;
    color: #fff;
    padding: 12px;
}

.cur-address-dropdown option:hover {
    background: #2a2a2a;
}

.cur-address-preview {
    margin-top: 20px;
    padding: 18px;
    background: rgba(254, 174, 27, 0.1);
    border: 2px solid rgba(254, 174, 27, 0.3);
    border-radius: 10px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cur-preview-content strong {
    color: #FEAE1B;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cur-preview-content p {
    color: #fff;
    margin: 0;
    line-height: 1.8;
    font-size: 14px;
}

/* Style WooCommerce checkout fields to match */
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.woocommerce-checkout h3 {
    color: #fff !important;
    margin-top: 0 !important;
}

.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: #FEAE1B;
    box-shadow: 0 0 0 3px rgba(254, 174, 27, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.woocommerce-checkout label {
    color: #fff !important;
}

/* Place Order Button */
#place_order {
    background: #FEAE1B !important;
    color: #1e1e1e !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100%;
}

#place_order:hover {
    background: #e69b0f !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 174, 27, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .cur-saved-addresses-section {
        padding: 20px 15px;
    }
    
    .cur-address-dropdown {
        font-size: 14px;
    }
}

/* Custom Checkout Page Styles */

.cur-checkout-wrapper {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.cur-checkout-empty {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cur-checkout-empty h2 {
    color: #fff;
    margin-bottom: 15px;
}

.cur-checkout-empty p {
    color: #999;
    margin-bottom: 30px;
}

.cur-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 30px;
    align-items: start;
}

.cur-checkout-section {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cur-checkout-section h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 22px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(254, 174, 27, 0.3);
}

.cur-checkout-section h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
}

.cur-checkout-section textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
}

.cur-checkout-section textarea:focus {
    outline: none;
    border-color: #FEAE1B;
    box-shadow: 0 0 0 4px rgba(254, 174, 27, 0.15);
}

/* Saved Addresses Grid */
.cur-saved-addresses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
}

.cur-address-option {
    cursor: pointer;
    display: block;
}

.cur-address-option input[type="radio"] {
    display: none;
}

.cur-address-card-select {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.cur-address-option:hover .cur-address-card-select {
    border-color: rgba(254, 174, 27, 0.5);
    transform: translateY(-2px);
}

.cur-address-option input[type="radio"]:checked + .cur-address-card-select {
    border-color: #FEAE1B;
    background: rgba(254, 174, 27, 0.1);
    box-shadow: 0 0 0 3px rgba(254, 174, 27, 0.15);
}

.cur-address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cur-address-title strong {
    color: #fff;
    font-size: 15px;
}

.cur-address-details {
    color: #ccc;
    font-size: 13px;
    line-height: 1.6;
}

.cur-address-option.new-address .cur-address-card-select {
    border-style: dashed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.cur-address-option.new-address .cur-address-title {
    border: none;
    padding: 0;
    margin: 0;
}

.cur-address-option.new-address .cur-address-title strong {
    color: #FEAE1B;
}

/* Order Summary */
.cur-checkout-right {
    position: sticky;
    top: 20px;
}

.cur-order-summary {
    background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cur-order-summary h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 22px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(254, 174, 27, 0.3);
}

/* Cart Items */
.cur-cart-items {
    margin-bottom: 25px;
}

.cur-cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cur-cart-item:last-child {
    border-bottom: none;
}

.cur-item-image {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.cur-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cur-item-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FEAE1B;
    color: #1e1e1e;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid #1e1e1e;
}

.cur-item-details {
    flex: 1;
}

.cur-item-details h4 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.cur-item-details small {
    color: #999;
    font-size: 12px;
    display: block;
}

.cur-item-price {
    color: #FEAE1B;
    font-weight: 700;
    font-size: 16px;
}

/* Order Totals */
.cur-order-totals {
    padding: 20px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.cur-total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    color: #ccc;
}

.cur-total-row.total {
    font-size: 18px;
    color: #fff;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cur-total-row.total span:last-child {
    color: #FEAE1B;
}

/* Payment Options */
.cur-payment-section {
    margin-bottom: 25px;
}

.cur-payment-option {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
}

.cur-payment-option input[type="radio"] {
    display: none;
}

.cur-payment-details {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cur-payment-option:hover .cur-payment-details {
    border-color: rgba(254, 174, 27, 0.5);
}

.cur-payment-option input[type="radio"]:checked + .cur-payment-details {
    border-color: #FEAE1B;
    background: rgba(254, 174, 27, 0.1);
}

.cur-payment-details strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.cur-payment-details small {
    color: #999;
    font-size: 13px;
    display: block;
}

/* Place Order Button */
.cur-place-order {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    margin-bottom: 15px;
}

.cur-terms {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .cur-checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .cur-checkout-right {
        position: relative;
        top: 0;
        order: -1;
    }
    
    .cur-saved-addresses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .cur-checkout-wrapper {
        padding: 0 10px;
        margin: 20px auto;
    }
    
    .cur-checkout-section {
        padding: 20px;
    }
    
    .cur-order-summary {
        padding: 20px;
    }
    
    .cur-cart-item {
        flex-wrap: wrap;
    }
    
    .cur-item-price {
        width: 100%;
        text-align: right;
        margin-top: 10px;
    }
}

.cur-shipping-methods {
    display: grid;
    gap: 12px;
}

.cur-shipping-option {
    display: block;
    cursor: pointer;
}

.cur-shipping-option input[type="radio"] {
    display: none;
}

.cur-shipping-details {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cur-shipping-option:hover .cur-shipping-details {
    border-color: rgba(254, 174, 27, 0.5);
}

.cur-shipping-option input[type="radio"]:checked + .cur-shipping-details {
    border-color: #FEAE1B;
    background: rgba(254, 174, 27, 0.1);
}

.cur-shipping-details strong {
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.cur-shipping-details small {
    color: #999;
    font-size: 13px;
}

.cur-pickup-location-card {
    background: rgba(254, 174, 27, 0.1);
    border: 2px solid rgba(254, 174, 27, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.cur-pickup-location-card h4 {
    color: #FEAE1B;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
}

.cur-pickup-location-card p {
    color: #fff;
    margin: 8px 0;
    line-height: 1.6;
}

.cur-pickup-location-card strong {
    color: #FEAE1B;
}


code{
    display: contents!important;
}








