body {
    background-color: #151515;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/tire-1757696909765-Photoroom.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.35;
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 21, 21, 0.5);
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 1170px;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 100%;
}

/* 2. Main Header */
h2 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #444444;
    padding-bottom: 15px;
    margin-bottom: 20px;
    margin-top: 40px;
}

/* 3. Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    row-gap: 60px;
    margin-bottom: 40px;
}

/* Product Filter Section */
.product-filter-section {
    padding: 20px 0;
    margin: 20px 0;
}

.filter-container {
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #ddd;
}

.filter-content {
    padding: 0;
    background: #f5f5f5;
}

.filter-header {
    background: #4a90e2;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-label {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.filter-toggles {
    display: flex;
    gap: 0;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.toggle-btn.active {
    background: #e74c3c;
    color: #ffffff;
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tyre-size-filters {
    padding: 20px;
    background: #ffffff;
}

.size-input-group {
    display: flex;
    align-items: end;
    gap: 0;
    margin-bottom: 20px;
}

.size-input {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.size-input label {
    color: #333;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.size-select {
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 30px;
}

.size-separator {
    width: 1px;
    height: 40px;
    background-color: #ddd;
    margin: 0 10px;
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clear-search {
    background: transparent;
    border: none;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    padding: 8px 0;
}

.find-tyres-btn {
    background: #FFFF00;
    color: #e74c3c;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.find-tyres-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 0, 0.3);
}

.find-tyres-btn i {
    font-size: 12px;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-group h3 {
    color: #333;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

/* Two-column layout for dropdown filters */
.filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.filter-row .filter-group {
    margin-bottom: 0;
}

.application-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.app-btn {
    background: #4a90e2;
    color: #FFFFFF;
    border: none;
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-btn:hover {
    background: #357abd;
}

.app-btn.active {
    background: #e74c3c;
}

.dropdown-container {
    position: relative;
    width: 100%;
}

.dropdown-search {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease;
}

.dropdown-search:focus {
    outline: none;
    border-color: #FFFF00;
    box-shadow: 0 0 0 3px rgba(255, 255, 0, 0.2);
}

.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #FFFFFF;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 150px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.dropdown-options.show {
    display: block;
}

.dropdown-option {
    padding: 6px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 13px;
    color: #333;
}

.dropdown-option:hover {
    background-color: #f0f0f0;
}

.dropdown-option.selected {
    background-color: #FFFF00;
    color: #111;
}

.unselect-option {
    color: #999;
    font-style: italic;
}

.active-filters {
    margin: 15px 0;
    padding: 10px;
    background: #e8e8e8;
    border-radius: 4px;
}

.active-filters h4 {
    color: #333;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-chip {
    background: #FFFF00;
    color: #111;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-chip .remove {
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.apply-btn,
.clear-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn {
    background: #FFFF00;
    color: #111;
}

.apply-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 0, 0.3);
}

.clear-btn {
    background: #666;
    color: #FFFFFF;
}

.clear-btn:hover {
    background: #555;
    transform: translateY(-2px);
}

/* =========================================
   PREMIUM HERO FILTER DESIGN (DARK MODE)
   ========================================= */

.att-filter-wrapper {
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 100 !important;
    pointer-events: auto !important;
}

.att-filter-header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 25px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.att-filter-header h3 i {
    color: #FFFF00;
    font-size: 24px;
}

.att-filter-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Row 1: Application & Brand (2 Columns) */
.att-filter-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Row 2: Width, Ratio, Inches (3 Columns) */
.att-filter-row-middle {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

/* Row 3: Search Button */
.att-filter-row-bottom {
    margin-top: 10px;
}

.att-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 101 !important;
    pointer-events: auto !important;
}

.att-filter-group label {
    color: #FFFF00;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.att-filter-group label i {
    color: #FFFF00;
    font-size: 14px;
}

/* Select Inputs */
.att-select-wrapper {
    position: relative;
    z-index: 10;
}

.att-select-wrapper select {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 0, 0.3);
    border-radius: 8px;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFF00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 11;
}

.att-select-wrapper select:hover {
    border-color: #FFFF00;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.1);
    z-index: 12;
}

.att-select-wrapper select:focus {
    outline: none;
    border-color: #FFFF00;
    box-shadow: 0 0 0 2px rgba(255, 255, 0, 0.2);
    z-index: 12;
}

/* Loading animation for filter dropdowns */
.att-filter-group.loading .att-select-wrapper select,
.att-select-wrapper.loading select {
    opacity: 0.5;
    pointer-events: none;
}

.att-filter-group.loading::after,
.att-select-wrapper.loading::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 14px;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 0, 0.3);
    border-top-color: #FFFF00;
    border-radius: 50%;
    animation: heroFilterSpinner 0.6s linear infinite;
    z-index: 20;
}

@keyframes heroFilterSpinner {
    to {
        transform: rotate(360deg);
    }
}

/* Ensure select dropdown options appear above everything */
.att-select-wrapper select option {
    z-index: 1000;
    position: relative;
}

/* Search Button */
.att-search-btn {
    background: #FFFF00;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.att-search-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.att-search-btn i {
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .filter-content {
        padding: 15px;
    }

    .application-buttons {
        justify-content: center;
    }

    .app-btn {
        flex: 1;
        min-width: 100px;
        padding: 5px 8px;
        font-size: 10px;
    }

    .filter-actions {
        flex-direction: column;
    }

    .apply-btn,
    .clear-btn {
        width: 100%;
        padding: 6px 12px;
        font-size: 11px;
    }

    /* Stack filter rows on mobile */
    .filter-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* ATT filter grid mobile responsive */
    .att-filter-row-top {
        grid-template-columns: 1fr !important;
    }

    .att-filter-row-middle {
        grid-template-columns: 1fr !important;
    }

    .att-filter-row-bottom {
        margin-top: 15px;
    }

    .att-search-btn {
        width: 100% !important;
        max-width: 100% !important;
    }

    .att-filter-item {
        width: 100%;
    }

    /* Process banner mobile responsive */
    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .process-banner {
        max-width: 100%;
        padding: 10px 15px;
    }

    .process-step {
        gap: 6px;
    }

    .process-icon {
        font-size: 16px;
        width: 20px;
        height: 20px;
    }

    .process-text {
        font-size: 10px;
    }

    .process-separator {
        height: 25px;
        margin: 0 6px;
    }

    /* Move menu directly under payment process on mobile - no spacing */
    .main-nav {
        margin-top: 0;
        padding-top: 0;
        position: relative;
        top: auto;
    }

    /* Remove all spacing from payment process section on mobile */
    .payment-process-section {
        padding: 0 !important;
        margin: 0 !important;
        border-bottom: none !important;
    }

    .process-banner {
        padding: 8px 15px;
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Ensure main nav has no top spacing on mobile */
    .main-nav {
        margin-top: 0 !important;
        padding-top: 0 !important;
        position: relative;
        top: auto;
        border-top: none !important;
    }
}

/* Contact Page Styles */
.contact-hero {
    text-align: center;
    padding: 60px 0 40px 0;
    margin-bottom: 40px;
}

.contact-hero-content h1 {
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.contact-hero-content p {
    color: #AAAAAA;
    font-size: 18px;
    font-weight: 400;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 40px 0;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    border-bottom: 2px solid #FFFF00;
    padding-bottom: 10px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FFFF00;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: #FFFF00;
    font-size: 20px;
    margin-top: 5px;
    min-width: 20px;
}

.contact-item h3 {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-item p {
    color: #AAAAAA;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    background-color: #333;
    border: 2px solid #555;
    border-radius: 4px;
    color: #FFFFFF;
    font-size: 14px;
    padding: 12px 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFFF00;
    background-color: #444;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

.submit-btn {
    background-color: #FFFF00;
    color: #111;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 255, 0, 0.3);
}

/* Map Section Styles */
.map-section {
    padding: 40px 0;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-container h2 {
    text-align: center;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

.map-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-radius: 12px;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-address i {
    color: #FFFF00;
    font-size: 24px;
    background: #333;
    padding: 12px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-address h3 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.map-address p {
    color: #CCCCCC;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.directions-btn {
    background: #FFFF00;
    color: #111;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.directions-btn:hover {
    background: #333;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.directions-btn i {
    font-size: 16px;
}

/* Mobile Responsive for Map */
@media (max-width: 768px) {
    .map-section {
        padding: 40px 0;
    }

    .map-container h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .map-wrapper iframe {
        height: 300px;
    }

    .map-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 20px;
    }

    .map-address {
        flex-direction: column;
        text-align: center;
    }

    .directions-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-hero-content h1 {
        font-size: 28px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }

    .contact-item {
        padding: 15px;
    }

    .submit-btn {
        align-self: stretch;
    }
}

footer {
    background-color: #111;
    color: #777;
    padding: 20px 0;
    text-align: center;
}

@media (max-width: 1200px) {
    .container {
        width: 970px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero .btn {
        right: calc((100vw - 970px) / 2);
    }
}

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

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-right {
        display: none;
    }

    .hero .btn {
        right: calc((100vw - 750px) / 2);
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .main-nav li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .features .container {
        flex-direction: column;
    }

    .feature-box {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero .btn {
        right: 20px;
        bottom: 20px;
    }
}

/* 4. Modern Product Card Styles - Consistent Design */
.product-card {
    background: #151515;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Brighter white border */
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 1;
}

/* Subtle Tech/Tyre Graphic Background */
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.03) 10px,
            rgba(255, 255, 255, 0.03) 20px);
    border-radius: 0 0 0 100%;
    z-index: -1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: #FFFF00;
    /* Bright yellow on hover */
}

.product-card-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
    position: relative;
    z-index: 2;
}

.product-image-wrapper {
    width: 100%;
    height: 280px;
    /* Increased height to minimize side gaps */
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Removed padding completely */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to top, #151515 0%, transparent 100%);
    z-index: 1;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensures full image is visible */
    object-position: center;
    /* Force center alignment */
    margin: 0 auto;
    /* Ensure no margin offsets */
    transition: transform 0.4s ease;
    z-index: 0;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.product-card:hover img {
    transform: scale(1.08);
    /* Nice subtle zoom, no skew/rotation */
}

/* Product Badge Styles */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FFFF00;
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-info {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 8px;
    background: transparent;
}

.product-brand {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
}

.product-size {
    color: #ccc;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 10px;
    border-radius: 4px;
    width: fit-content;
    border: 1px solid #FFFF00;
    /* Yellow border for size container */
}

.product-size span {
    color: #FFFF00;
    font-weight: 800;
}

.product-description {
    color: #888;
    font-size: 12px;
    line-height: 1.4;
    margin: 5px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Standard property for compatibility */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 34px;
}

.product-price-container {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #FFFF00;
    /* Yellow line above price */
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    color: #FFFF00;
    font-size: 26px;
    /* Increased font size */
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.6), 0 0 40px rgba(255, 255, 0, 0.3);
    animation: price-glow 2s ease-in-out infinite alternate;
}

@keyframes price-glow {
    0% {
        text-shadow: 0 0 20px rgba(255, 255, 0, 0.6), 0 0 40px rgba(255, 255, 0, 0.3);
    }

    100% {
        text-shadow: 0 0 30px rgba(255, 255, 0, 0.9), 0 0 60px rgba(255, 255, 0, 0.5);
    }
}

.product-actions {
    padding: 0 15px 15px 15px;
    display: grid;
    grid-template-columns: auto 1fr;
    /* Add to cart small, Buy now big */
    gap: 10px;
}

.btn-buy-now {
    background: #FFFF00;
    color: #000;
    border: none;
    padding: 0 20px;
    height: 48px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.btn-add-cart {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFF00;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: #FFFF00;
    color: #000;
    border-color: #FFFF00;
    transform: translateY(-2px);
}

.btn-buy-now:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.btn {
    padding: 14px 18px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn i {
    font-size: 16px;
}

/* Added styles */

/* Top Bar - Logo and Red Banner */
.top-bar {
    padding: 0 !important;
    background: transparent !important;
    position: fixed !important;
    top: 0 !important;
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-bottom: none !important;
    z-index: 1000 !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    left: 0 !important;
}

.logo-banner {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    background: #dc0000 !important;
    background-image: url('../images/red bar.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    border-bottom: 2px solid #000 !important;
    overflow: visible !important;
    height: 60px !important;
    min-height: 60px !important;
    z-index: 0 !important;
}

.logo-banner img,
.logo-banner .header-logo {
    max-height: 55px !important;
    max-width: 90% !important;
    height: 55px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10 !important;
    pointer-events: none !important;
    transition: opacity 0.5s ease-in-out !important;
}

/* Header logo animation - first visible, others hidden */
.logo-banner .header-logo {
    opacity: 0 !important;
}

.logo-banner .header-logo:first-child,
.logo-banner #header-logo-1 {
    opacity: 1 !important;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
    background: transparent !important;
    box-shadow: none !important;
    width: 1170px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Logo Container */
.header-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.header-logo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.logo-text-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.logo-text-yellow {
    color: #FFFF00;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.logo-text-white {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.header-tagline {
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
    font-family: 'Montserrat', sans-serif;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
    width: 100%;
    background: transparent !important;
    box-shadow: none !important;
    padding-right: 0;
}

/* Process Banner Styles */
.process-banner {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 8px;
    padding: 8px 0 8px 8px;
    box-shadow: none;
    border: none;
    flex: 1;
    margin-left: -20px;
    margin-right: 0;
    position: relative;
    z-index: 2;
    justify-content: space-between;
    max-width: none;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    justify-content: flex-start;
    padding: 4px 6px;
    margin-right: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.process-step:last-child {
    margin-right: 0;
    padding-right: 0;
}

.process-icon {
    color: #FFFF00;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.process-text {
    display: flex;
    flex-direction: column;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
}

.process-separator {
    width: 1px;
    height: 24px;
    background-color: #333;
    margin: 0 4px;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 80px;
    position: relative;
    z-index: 2;
    margin-right: 0px;
    flex-shrink: 0;
}


.logo-icon {
    height: 80px;
    width: auto;
    margin-right: 15px;
    position: relative;
    z-index: 3;
}

.white-logo-text {
    height: 60px;
    width: auto;
}


/* Main Navigation List */
.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 50px;
    align-items: center;
}

.main-nav li {
    margin: 0;
}

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFFF00;
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active,
.main-nav a:hover {
    color: #FFFF00;
}

/* Header Right - Right Position */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
    margin-left: auto;
}

/* Increased specificity to override .main-nav a styles */
.header-right .contact-info,
.header-right .cart {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px !important;
    background: #333333 !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none !important;
    color: #FFFFFF !important;
    margin: 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

/* Remove the underline effect from .main-nav a */
.header-right .contact-info::after,
.header-right .cart::after {
    display: none !important;
    content: none !important;
}

.header-right .contact-info:hover,
.header-right .cart:hover {
    background: rgba(50, 50, 50, 0.9) !important;
    border-color: rgba(255, 255, 0, 0.3);
    transform: translateY(-1px);
    text-decoration: none !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-right .contact-info i,
.header-right .cart i {
    color: #FFFF00;
    font-size: 16px;
}

.header-right .contact-info span,
.header-right .cart span {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cart-count {
    background: #FFFF00;
    color: #111;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    margin-left: 5px;
}

.search-bar {
    display: flex;
    position: relative;
    align-items: center;
    margin-left: 0;
}

.search-bar input {
    background-color: #222;
    border: 1px solid #444;
    color: #fff;
    padding: 10px 15px;
    border-radius: 12px 0 0 12px;
    width: 0;
    opacity: 0;
    transition: all 0.3s ease;
    outline: none;
    height: 100%;
    font-size: 14px;
}

.search-bar input.expanded {
    width: 200px;
    opacity: 1;
    border-color: #FFFF00;
    margin-right: -10px;
    padding-right: 20px;
}

.search-btn {
    background-color: #FFFF00 !important;
    border: none;
    color: #333333;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    margin: 0;
}

.search-btn i {
    color: #333333;
}

.search-bar button {
    background-color: #FFFF00;
    border: none;
    color: #333333;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
}

.search-bar input.expanded+button {
    width: 44px;
    height: 44px;
    border-radius: 0 12px 12px 0;
    font-size: 18px;
}

.search-bar button:hover {
    background-color: #FFD700;
    transform: scale(1.05);
}

.search-bar input.expanded+button {
    border-radius: 0 12px 12px 0;
    box-shadow: none;
}

.main-nav {
    padding: 0;
    position: sticky;
    top: 60px;
    z-index: 999;
    transition: all 0.3s ease;
    background: rgba(21, 21, 21, 0.4) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1170px;
    max-width: 100%;
    padding: 0 30px;
    margin: 0 auto;
    position: relative;
    height: 60px;
}

/* Mobile: Stack elements vertically for smaller screens */
@media (max-width: 768px) {
    .main-nav {
        padding: 8px 0;
    }

    .main-nav .container {
        flex-direction: column;
        gap: 10px;
    }

    .main-nav .process-banner {
        position: static;
        transform: none;
        justify-content: center;
        overflow-x: auto;
        padding: 4px 0;
    }

    .nav-menu {
        justify-content: center;
        gap: 15px;
    }

    .header-right {
        position: static;
        transform: none;
        justify-content: center;
        gap: 10px;
    }
}

.main-nav.scrolled {
    background: rgba(21, 21, 21, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Process Banner in Navigation - Left Position */
.main-nav .process-banner {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 8px;
    padding: 2px 0;
    box-shadow: none;
    border: none;
    justify-content: flex-start;
    max-width: none;
    overflow: hidden;
    gap: 0;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* Navigation Menu - Perfect Center */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: #FFFF00;
}

/* Removed old navigation styles - now using .nav-menu */

.hero {
    margin-top: 0;
}

.hero-image-container {
    background-image: url('../images/hero-wheel.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    padding: 150px 60px;
    position: relative;
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    display: block;
    width: 100%;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: left;
}

.hero-text h1 {
    font-size: 68px;
    font-weight: 300;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: 2px;
    font-style: italic;
}

.hero-text h1 span {
    font-weight: 700;
    color: #FFFF00;
}

.hero-text p {
    font-size: 16px;
    margin: 20px 0 0 0;
    color: #FFFFFF;
    max-width: 350px;
    line-height: 1.6;
}

.hero .btn {
    background-color: #FFFF00;
    color: #000000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0;
    font-size: 18px;
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.hero .btn::before {
    content: '';
    position: absolute;
    left: -26px;
    /* This is the new, shorter width */
    bottom: 0;
    width: 0;
    height: 0;
    border-bottom: 52px solid #FFFF00;
    /* This is the height, it stays the same */
    border-left: 26px solid transparent;
    /* This is the new, shorter width */
}

/* Hero Filter Section */
.hero-filter-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 30px;
    border-radius: 16px 16px 0 0;
    margin-top: -20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #dee2e6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.hero-filter-section .filter-header {
    background: transparent;
    padding: 0 0 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-filter-section .filter-label {
    color: #151515;
    font-size: 24px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}

.hero-filter-section .filter-toggles {
    display: flex;
    gap: 0;
    margin-left: 20px;
}

.hero-filter-section .toggle-btn {
    background: #FFFF00;
    border: 2px solid #151515;
    color: #151515;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
}

.hero-filter-section .toggle-btn:last-child {
    margin-right: 0;
}

.hero-filter-section .toggle-btn.active {
    background: #FFFF00;
    color: #151515;
    border-color: #151515;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-filter-section .toggle-btn:hover {
    background: #FFD700;
    border-color: #151515;
    color: #151515;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-filter-section .toggle-btn.active:hover {
    background: #FFD700;
    border-color: #151515;
    color: #151515;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-tyre-filters {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    border: 1px solid #e5e7eb;
}

.hero-size-input-group {
    display: flex;
    align-items: end;
    gap: 10px;
    margin-bottom: 0;
}

.hero-size-input {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.hero-size-input label {
    color: #6b7280;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.hero-size-select {
    background: #ffffff;
    border: 2px solid #151515;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    color: #151515;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23151515' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
    padding-right: 35px;
    transition: all 0.3s ease;
    height: 40px;
}

.hero-size-select:focus {
    outline: none;
    border-color: #FFFF00;
    box-shadow: 0 0 0 3px rgba(255, 255, 0, 0.2);
}

.hero-size-select:hover {
    border-color: #FFFF00;
    box-shadow: 0 2px 8px rgba(255, 255, 0, 0.3);
}

.hero-filter-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
    margin-left: 10px;
}

.hero-clear-search {
    display: none;
}

.hero-find-tyres-btn {
    background: #FFFF00;
    color: #151515;
    border: 2px solid #151515;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    height: 40px;
}

.hero-find-tyres-btn:hover {
    background: #FFD700;
    border-color: #151515;
    color: #151515;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-find-tyres-btn i {
    font-size: 12px;
}

.features {
    padding: 50px 0;
    display: flex;
    justify-content: space-between;
}


.feature-box {
    position: relative;
    width: 32%;
    text-align: center;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background-color 0.3s ease;
}

.feature-box:hover::before {
    background-color: rgba(0, 0, 0, 0.6);
    /* Darker overlay on hover */
}

.feature-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.feature-box h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    margin: 0;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.2;
    text-align: center;
    width: 100%;
    z-index: 2;
    transition: transform 0.3s ease;
}

.feature-box:hover h3 {
    transform: translate(-50%, -50%) scale(1.1);
    /* Scale up text on hover */
}

.feature-box h3 span {
    color: #FFFF00;
}

/* ===================================
   ABOUT US PAGE STYLES
   =================================== */

.about-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(21, 21, 21, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 12px;
    margin-bottom: 40px;
    margin-top: 20px;
    /* Add top margin to prevent overlap with sticky nav */
}

.about-hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    color: #FFFF00;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero-content p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    padding: 40px 0;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #FFFF00;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 30px;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.about-text li {
    font-size: 16px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.about-text li:before {
    content: "ΓÇó";
    color: #FFFF00;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

/* ===================================
   CONTACT US PAGE STYLES
   =================================== */

.contact-hero {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(21, 21, 21, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-radius: 12px;
    margin-bottom: 40px;
    margin-top: 20px;
    /* Add top margin to prevent overlap with sticky nav */
}

.contact-hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    color: #FFFF00;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-hero-content p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

.map-section {
    margin-bottom: 60px;
}

.map-container {
    background: rgba(30, 30, 30, 0.8);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.map-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #FFFF00;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.map-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.map-address {
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-address i {
    font-size: 24px;
    color: #FFFF00;
}

.map-address h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.map-address p {
    font-size: 16px;
    color: #ccc;
    margin: 0;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFFF00;
    color: #151515;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.directions-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #FFFF00;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-item i {
    font-size: 24px;
    color: #FFFF00;
    margin-top: 3px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 16px;
    color: #ccc;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    font-size: 16px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFFF00;
    background: rgba(255, 255, 255, 0.15);
}

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

.submit-btn {
    background: #FFFF00;
    color: #151515;
    border: none;
    border-radius: 8px;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
}

/* ===================================
   MOBILE RESPONSIVE STYLES FOR ABOUT AND CONTACT PAGES
   =================================== */

@media (max-width: 768px) {
    .about-hero {
        padding: 60px 20px;
        margin-bottom: 30px;
        margin-top: 10px;
        /* Ensure proper spacing on mobile */
    }

    .about-hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-content {
        padding: 30px 20px;
    }

    .about-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .about-text li {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .contact-hero {
        padding: 60px 20px;
        margin-bottom: 30px;
        margin-top: 10px;
        /* Ensure proper spacing on mobile */
    }

    .contact-hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .contact-hero-content p {
        font-size: 16px;
    }

    .map-section {
        margin-bottom: 40px;
    }

    .map-container {
        padding: 20px;
    }

    .map-container h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .map-wrapper iframe {
        height: 250px !important;
    }

    .map-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .map-address {
        gap: 10px;
    }

    .map-address i {
        font-size: 20px;
    }

    .map-address h3 {
        font-size: 16px;
    }

    .map-address p {
        font-size: 14px;
    }

    .directions-btn {
        padding: 10px 15px;
        font-size: 13px;
    }

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

    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .contact-details {
        gap: 20px;
    }

    .contact-item {
        gap: 15px;
    }

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

    .contact-item h3 {
        font-size: 16px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 40px 15px;
        margin-bottom: 20px;
        margin-top: 5px;
        /* Ensure proper spacing on small mobile */
    }

    .about-hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .about-hero-content p {
        font-size: 14px;
    }

    .about-content {
        padding: 20px 15px;
    }

    .about-text h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .about-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .about-text li {
        font-size: 14px;
        margin-bottom: 10px;
        padding-left: 20px;
    }

    .contact-hero {
        padding: 40px 15px;
        margin-bottom: 20px;
        margin-top: 5px;
        /* Ensure proper spacing on small mobile */
    }

    .contact-hero-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .contact-hero-content p {
        font-size: 14px;
    }

    .map-section {
        margin-bottom: 30px;
    }

    .map-container {
        padding: 15px;
    }

    .map-container h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .map-wrapper iframe {
        height: 200px !important;
    }

    .map-address {
        gap: 8px;
    }

    .map-address i {
        font-size: 18px;
    }

    .map-address h3 {
        font-size: 15px;
    }

    .map-address p {
        font-size: 13px;
    }

    .directions-btn {
        padding: 8px 12px;
        font-size: 12px;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .contact-details {
        gap: 15px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-item i {
        font-size: 18px;
    }

    .contact-item h3 {
        font-size: 15px;
    }

    .contact-item p {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ===================================
   NAVIGATION STYLES FOR ABOUT AND CONTACT PAGES
   =================================== */

@media (max-width: 768px) {

    /* Mobile Navigation Styles for About and Contact Pages */
    .main-nav {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: rgba(21, 21, 21, 0.85) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-bottom: 1px solid rgba(255, 255, 0, 0.3) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }

    .main-nav .container {
        padding: 0 12px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .main-nav ul {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
        padding: 10px 0 !important;
    }

    .main-nav li {
        margin: 0 !important;
    }

    .main-nav a {
        font-size: 12px !important;
        padding: 5px 10px !important;
        border-radius: 4px !important;
        transition: all 0.3s ease !important;
    }

    .main-nav a:hover {
        background: rgba(255, 255, 0, 0.1) !important;
    }

    .main-nav a.active {
        background: rgba(255, 255, 0, 0.2) !important;
        color: #FFFF00 !important;
    }
}

@media (max-width: 480px) {

    /* Mobile Navigation Styles for About and Contact Pages (480px) */
    .main-nav {
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        background: rgba(21, 21, 21, 0.85) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-bottom: 1px solid rgba(255, 255, 0, 0.3) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }

    .main-nav .container {
        padding: 0 8px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .main-nav ul {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 5px !important;
        padding: 8px 0 !important;
    }

    .main-nav li {
        margin: 0 !important;
    }

    .main-nav a {
        font-size: 10px !important;
        padding: 4px 8px !important;
        border-radius: 4px !important;
        transition: all 0.3s ease !important;
    }

    .main-nav a:hover {
        background: rgba(255, 255, 0, 0.1) !important;
    }

    .main-nav a.active {
        background: rgba(255, 255, 0, 0.2) !important;
        color: #FFFF00 !important;
    }
}

/* ===================================
   HOMEPAGE MODERN STYLES
   =================================== */

/* Hero Section */
.modern-hero {
    position: relative;
    height: 100vh;
    /* Force full viewport height */
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    margin: -60px 0 0 0;
    /* Pull up to cover the header spacer */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(21, 21, 21, 0.8) 100%);
    z-index: 2;
    pointer-events: none !important;
}

.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    /* Remove top/bottom padding to let flexbox handle vertical centering */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    pointer-events: auto;
}

/* When first slide is active - side by side with filter */
.hero-content-wrapper:has(.hero-slide:first-child.active) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-text-content {
    color: #fff;
    text-align: center;
}

/* First slide - left side when active */
.hero-slide:first-child.active {
    display: block !important;
    width: 100%;
}

.hero-slide:first-child.active .hero-text-content {
    text-align: left;
    max-width: 100%;
}

/* Filter on right side when first slide is active */
.hero-content-wrapper:has(.hero-slide:first-child.active) .att-filter-wrapper {
    position: sticky;
    top: 140px;
}

/* Black Friday slide - full screen side by side when active */
.hero-content-wrapper:has(.hero-slide.active:has(.black-friday-image-wrapper)) {
    display: block;
    max-width: 100%;
    padding: 140px 0 80px;
    width: 100%;
}

.hero-slide.active:has(.black-friday-image-wrapper) {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-slide.active:has(.black-friday-image-wrapper) .hero-text-content {
    text-align: left;
}

/* Hide filter when second slide is active */
.hero-content-wrapper:has(.hero-slide.active:has(.black-friday-image-wrapper)) .att-filter-wrapper {
    display: none;
}

.black-friday-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.black-friday-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 0, 0.1);
    border: 2px solid #FFFF00;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFFF00;
}

.hero-badge i {
    color: #FFFF00;
    font-size: 16px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
}

.hero-title .highlight {
    color: #FFFF00;
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #FFFF00;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* ATT Filter Wrapper */
.att-filter-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.att-filter-header {
    margin-bottom: 25px;
}

.att-filter-header h3 {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.att-filter-header i {
    color: #FFFF00;
    font-size: 26px;
}

.att-search-btn {
    width: 100%;
    max-width: 400px;
    background: #FFFF00;
    color: #111;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    margin-top: 0;
    height: fit-content;
    white-space: nowrap;
}

.att-search-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 0, 0.4);
}

.att-search-btn i {
    font-size: 18px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid #FFFF00;
    border-radius: 15px;
    position: relative;
    animation: mouseFloat 2s ease-in-out infinite;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #FFFF00;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 2s ease-in-out infinite;
}

@keyframes mouseFloat {

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

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

@keyframes wheelScroll {

    0%,
    100% {
        opacity: 0;
        top: 8px;
    }

    50% {
        opacity: 1;
        top: 20px;
    }
}

/* Featured Products Section */
.featured-products {
    padding: 80px 0;
    background: rgba(21, 21, 21, 0.6);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: #FFFF00;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.section-title span {
    color: #FFFF00;
}

.section-description {
    color: #ccc;
    font-size: 16px;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.view-all-btn-wrapper {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFF00;
    color: #111;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 0, 0.4);
}

/* Features Modern Section */
.features-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(21, 21, 21, 0.9) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #FFFF00;
    background: rgba(255, 255, 0, 0.05);
    box-shadow: 0 10px 30px rgba(255, 255, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 0, 0.1);
    border: 2px solid #FFFF00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: #FFFF00;
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 32px;
    color: #FFFF00;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: #111;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
}

.feature-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.feature-link {
    color: #FFFF00;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.feature-link:hover {
    gap: 12px;
}

/* Categories Modern Section */
.categories-modern {
    padding: 100px 0;
    background: transparent;
    /* Transparent to show background image */
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    /* Softer corners */
    overflow: hidden;
    min-height: 400px;
    /* Taller cards */
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(21, 21, 21, 0.6);
    /* Semi-transparent card background */
    backdrop-filter: blur(10px);
    /* Glassmorphism effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Removed border for cleaner look */
}

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

.category-card.large {
    grid-row: span 2;
    min-height: 630px;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-image::after {
    opacity: 0.9;
}

.category-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    width: 100%;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.category-card:hover .category-content {
    transform: translateY(-5px);
}

.category-content h3 {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.category-content p {
    color: #ccc;
    font-size: 16px;
    margin: 0 0 20px 0;
    opacity: 0.8;
    font-weight: 500;
}

.category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
    background: #FFFF00;
    color: #111;
    border-color: #FFFF00;
    transform: translateX(10px);
}

.coming-soon-text {
    display: block;
    font-size: 15px;
    font-weight: 900;
    color: #FFFF00;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.8), 0 0 40px rgba(255, 255, 0, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
    margin-top: 20px;
    margin-bottom: 0;
    margin-left: auto;
    text-align: right;
    width: 100%;
    line-height: 1.2;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 20px rgba(255, 255, 0, 0.8), 0 0 40px rgba(255, 255, 0, 0.5);
    }

    50% {
        opacity: 0.9;
        text-shadow: 0 0 30px rgba(255, 255, 0, 1), 0 0 60px rgba(255, 255, 0, 0.8);
    }
}

.category-card:hover .coming-soon-text {
    color: #FFFF00;
    text-shadow: 0 0 30px rgba(255, 255, 0, 1), 0 0 60px rgba(255, 255, 0, 0.8);
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #111;
    /* Solid dark background */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    transition: all 0.3s ease;
    /* Removed background and border for minimal look */
}

.trust-badge:hover {
    transform: translateY(-10px);
}

.trust-badge i {
    font-size: 48px;
    color: #FFFF00;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.3));
    transition: all 0.3s ease;
}

.trust-badge:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 255, 0, 0.5));
}

.trust-badge h4 {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}

.trust-badge p {
    font-size: 14px;
    color: #888;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 56px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card.large {
        grid-row: span 1;
        min-height: 300px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Slide Styles */
.hero-slider-content {
    position: relative;
    margin-bottom: 60px;
    width: 100%;
}

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

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

.hero-slide {
    display: none !important;
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
}

.hero-slide.active {
    display: block !important;
    width: 100%;
}

/* Override for Black Friday slide - needs grid layout */
.hero-slide.active:has(.black-friday-image-wrapper) {
    display: grid !important;
}

/* Black Friday Styles */
.black-friday-ad {
    text-align: center;
}

.black-friday-prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.original-price {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.special-price {
    font-size: 36px;
    font-weight: 900;
    color: #FFFF00;
}

.black-friday-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFF00;
    color: #111;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.black-friday-btn:hover {
    background: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 0, 0.4);
}

/* ATT Filter Group Styles */
.att-filter-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.att-filter-group label {
    color: #FFFF00;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.att-filter-group label i {
    font-size: 14px;
}

.att-select-wrapper {
    position: relative;
    z-index: 102 !important;
    pointer-events: auto !important;
}

.att-select-wrapper select {
    width: 100%;
    background: #1a1a1a;
    border: 2px solid rgba(255, 255, 0, 0.3);
    border-radius: 10px;
    color: #fff;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer !important;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFF00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 103 !important;
    pointer-events: auto !important;
}

.att-select-wrapper select:hover {
    border-color: #FFFF00;
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
    z-index: 104 !important;
}

.att-select-wrapper select:focus {
    outline: none;
    border-color: #FFFF00;
    box-shadow: 0 0 20px rgba(255, 255, 0, 0.5);
    z-index: 104 !important;
}

/* Ensure select dropdown options appear above everything */
.att-select-wrapper select option {
    z-index: 1000 !important;
    position: relative;
}

/* Don't block interactions when loading */
.att-select-wrapper.loading select:not(:disabled) {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Responsive Hero Layout */
@media (max-width: 992px) {
    .hero-content-wrapper {
        padding: 100px 20px 60px !important;
    }

    /* First slide - stack on mobile */
    .hero-content-wrapper:has(.hero-slide:first-child.active) {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    /* Second slide - stack on mobile */
    .hero-content-wrapper:has(.hero-slide.active:has(.black-friday-image-wrapper)) {
        padding: 100px 20px 60px !important;
    }

    .hero-slide.active:has(.black-friday-image-wrapper) {
        grid-template-columns: 1fr !important;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-slide.active:has(.black-friday-image-wrapper) .hero-text-content {
        text-align: center !important;
    }

    .black-friday-image-wrapper {
        order: -1;
    }

    .att-filter-row-top {
        grid-template-columns: 1fr 1fr !important;
    }

    .att-filter-row-middle {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .att-filter-row-bottom {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 80px 20px 40px !important;
    }

    .hero-title {
        font-size: 48px !important;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .att-filter-row-top {
        grid-template-columns: 1fr !important;
    }

    .att-filter-row-middle {
        grid-template-columns: 1fr !important;
    }

    .att-filter-row-bottom {
        margin-top: 15px;
    }

    .att-search-btn {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* ===================================
   BLACK FRIDAY HERO SLIDE REDESIGN
   =================================== */

.black-friday-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bf-text-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Continuous floating animation for banner */
@keyframes continuous-float {

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

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

/* Dramatic eye-catching banner animation */
@keyframes dramatic-banner {

    0%,
    100% {
        transform: scale(1) translateY(0px);
        box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.08) translateY(-5px);
        box-shadow: 0 5px 30px rgba(255, 0, 0, 0.9), 0 0 40px rgba(255, 0, 0, 0.6);
        filter: brightness(1.2);
    }
}

.bf-badge {
    background: #ff0000;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    animation: dramatic-banner 2s ease-in-out infinite, fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    display: inline-block;
    /* Start hidden */
}

.bf-title {
    font-size: 90px;
    font-weight: 900;
    line-height: 0.9;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -2px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.bf-stroke {
    color: transparent;
    -webkit-text-stroke: 2px #ff0000;
    position: relative;
    display: block;
    animation: friday-glow 4s ease-in-out infinite;
}

.bf-stroke::before {
    content: 'FRIDAY';
    position: absolute;
    top: 0;
    left: 0;
    color: #ff0000;
    opacity: 0.1;
    filter: blur(10px);
}

.bf-discount {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.bf-up-to {
    font-size: 24px;
    font-weight: 700;
    color: #ccc;
    text-transform: uppercase;
}

.bf-percent {
    font-size: 80px;
    font-weight: 900;
    color: #FFFF00;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 255, 0, 0.3);
}

.bf-off {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}

.bf-subtitle {
    font-size: 20px;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 500;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.bf-timer {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.timer-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    min-width: 80px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timer-box:hover {
    transform: translateY(-5px);
    border-color: #FFFF00;
    background: rgba(255, 255, 0, 0.1);
}

.timer-box span {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.timer-box small {
    display: block;
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bf-cta-btn {
    background: #ff0000;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bf-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.5);
    background: #ff2222;
}

.bf-cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.bf-image-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    /* Ensure image side is above background layers */
}

.bf-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 1;
    animation: pulse-glow 4s infinite alternate;
    pointer-events: none;
    /* Allow clicks to pass through */
}

.bf-main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

.bf-floating-tag {
    position: absolute;
    top: 10%;
    right: 10%;
    background: #FFFF00;
    color: #000;
    font-size: 24px;
    font-weight: 900;
    padding: 15px 25px;
    border-radius: 50px;
    transform: rotate(15deg);
    z-index: 3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    animation: float-delayed 5s ease-in-out infinite;
}

.bf-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
}

.secondary-btn {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    box-shadow: none;
}

.secondary-btn:hover {
    background: #fff;
    color: #111;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Adjust filter style when inside Black Friday hero */
.bf-image-side .att-filter-wrapper {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: 30px;
    margin: 0;
    width: 100%;
    max-width: 600px;
    /* Ensure it doesn't get too wide */
    box-sizing: border-box;
    border-radius: 16px;
    position: relative;
    z-index: 10;
    /* Ensure filter is above glow background */
    pointer-events: auto;
    /* Ensure filter is clickable */
    animation: fadeIn 0.5s ease-out;
}

.bf-image-side .att-filter-header h3 {
    font-size: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bf-image-side .att-filter-header h3 i {
    color: #FFFF00;
    font-size: 24px;
}

/* Ensure grid layout works inside bf-image-side */
.bf-image-side .att-filter-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bf-image-side .att-filter-row-middle {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.bf-image-side .att-filter-group label {
    color: #FFFF00;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bf-image-side .att-select-wrapper select {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 0, 0.3);
    color: #fff;
}

.bf-image-side .att-search-btn {
    background: #FFFF00;
    color: #000;
    width: 100%;
    font-weight: 800;
}


/* Adjust hero vertical alignment to be slightly higher */


@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@keyframes attention-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(255, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Continuous floating animation for banner */
@keyframes continuous-float {

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

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

/* Periodic glow effect for FRIDAY text */
@keyframes friday-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 0px rgba(255, 0, 0, 0));
        -webkit-text-stroke: 2px #ff0000;
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.8));
        -webkit-text-stroke: 2px #ff3333;
    }
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes float {

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

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

@keyframes float-delayed {

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

    50% {
        transform: rotate(15deg) translateY(-15px);
    }
}

/* Mobile Responsive for Black Friday Slide */
@media (max-width: 992px) {
    .black-friday-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
        padding-top: 40px;
    }

    .bf-text-side {
        align-items: center;
    }

    .bf-title {
        font-size: 60px;
    }

    .bf-percent {
        font-size: 60px;
    }

    .bf-image-side {
        order: -1;
        /* Show image first on mobile */
    }

    .bf-main-image {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .bf-title {
        font-size: 42px;
    }

    .bf-percent {
        font-size: 48px;
    }

    .bf-up-to,
    .bf-off {
        font-size: 20px;
    }

    .timer-box {
        min-width: 60px;
        padding: 10px;
    }

    .timer-box span {
        font-size: 24px;
    }
}

/* ===================================
   JAN-U-WORRY DEALS PROMOTION STYLES
   Vibrant January deals design
   =================================== */

/* Keyframes for January Deals animations */
@keyframes juw-gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes juw-text-glow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(255, 255, 0, 0.6));
        -webkit-text-stroke: 3px #FFFF00;
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(255, 255, 0, 1)) drop-shadow(0 0 60px rgba(255, 200, 0, 0.8));
        -webkit-text-stroke: 3px #FFD700;
    }
}

@keyframes juw-sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

@keyframes juw-bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        transform: scale(1.1) translateY(-10px);
    }
    70% {
        transform: scale(0.95) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes juw-wiggle {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

@keyframes juw-pulse-scale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes juw-shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Override badge for January theme - More vibrant */
.juw-title + .bf-badge,
.bf-badge:has(+ .juw-title),
.black-friday-hero-content .bf-badge {
    background: linear-gradient(135deg, #00C9FF 0%, #92FE9D 50%, #00C9FF 100%);
    background-size: 200% 200%;
    animation: juw-gradient-shift 3s ease infinite, juw-bounce-in 0.8s ease-out forwards;
    color: #000;
    font-weight: 900;
    letter-spacing: 3px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: none;
    box-shadow: 0 4px 25px rgba(0, 201, 255, 0.5), 0 0 40px rgba(146, 254, 157, 0.3);
}

/* Main title styling */
.juw-title {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -1px;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.2), 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: juw-bounce-in 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

/* JAN-U-WORRY text with vibrant yellow glow */
.juw-stroke {
    color: transparent;
    -webkit-text-stroke: 3px #FFFF00;
    position: relative;
    display: block;
    font-size: 95px;
    letter-spacing: 2px;
    animation: juw-text-glow 2.5s ease-in-out infinite;
    margin-top: 10px;
}

.juw-stroke::before {
    content: 'JAN-U-WORRY';
    position: absolute;
    top: 0;
    left: 0;
    color: #FFFF00;
    opacity: 0.15;
    filter: blur(20px);
    -webkit-text-stroke: 0;
}

.juw-stroke::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 0, 0.15) 0%, transparent 70%);
    z-index: -1;
    animation: juw-pulse-scale 3s ease-in-out infinite;
}

/* DEALS text styling - Big and bold */
.juw-discount {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    animation: juw-bounce-in 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.juw-percent {
    font-size: 100px;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, #FFFF00 0%, #FFD700 25%, #FFA500 50%, #FFD700 75%, #FFFF00 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: juw-shimmer 3s linear infinite;
    line-height: 1;
    text-shadow: none;
    position: relative;
    letter-spacing: 5px;
}

.juw-percent::before {
    content: 'DEALS';
    position: absolute;
    top: 0;
    left: 0;
    color: #FFFF00;
    opacity: 0.3;
    filter: blur(15px);
    z-index: -1;
}

/* Override subtitle for January */
.black-friday-hero-content .bf-subtitle {
    font-size: 22px;
    color: #e0e0e0;
    margin-bottom: 35px;
    font-weight: 500;
    max-width: 520px;
    line-height: 1.5;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Override CTA button for January - Energetic gradient */
.black-friday-hero-content .bf-cta-btn {
    background: linear-gradient(135deg, #FFFF00 0%, #FFD700 50%, #FFA500 100%);
    color: #000;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 22px 50px;
    border-radius: 60px;
    text-decoration: none;
    letter-spacing: 2px;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4), 0 0 50px rgba(255, 255, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: juw-wiggle 0.5s ease-in-out infinite;
}

.black-friday-hero-content .bf-cta-btn:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 255, 0, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #FFFF00 50%, #FFD700 100%);
    animation: none;
}

.black-friday-hero-content .bf-cta-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    animation: shine 2s infinite;
}

/* Update glow background for January theme */
.black-friday-hero-content .bf-glow-bg {
    background: radial-gradient(circle, rgba(255, 255, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 40%, transparent 70%);
    filter: blur(50px);
    animation: pulse-glow 4s infinite alternate;
}

/* January-specific sparkle decorations */
.juw-title::before,
.juw-title::after {
    content: '✦';
    position: absolute;
    color: #FFFF00;
    font-size: 30px;
    animation: juw-sparkle 2s ease-in-out infinite;
}

.juw-title::before {
    top: -10px;
    right: -30px;
    animation-delay: 0s;
}

.juw-title::after {
    bottom: 20px;
    left: -25px;
    animation-delay: 1s;
    font-size: 20px;
}

/* Mobile responsive for January deals */
@media (max-width: 992px) {
    .juw-title {
        font-size: 55px;
    }
    
    .juw-stroke {
        font-size: 65px;
        -webkit-text-stroke: 2px #FFFF00;
    }
    
    .juw-percent {
        font-size: 70px;
    }
    
    .black-friday-hero-content .bf-cta-btn {
        padding: 18px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .juw-title {
        font-size: 38px;
    }
    
    .juw-stroke {
        font-size: 45px;
        -webkit-text-stroke: 2px #FFFF00;
    }
    
    .juw-percent {
        font-size: 55px;
        letter-spacing: 3px;
    }
    
    .juw-title::before,
    .juw-title::after {
        display: none;
    }
    
    .black-friday-hero-content .bf-subtitle {
        font-size: 16px;
    }
    
    .black-friday-hero-content .bf-cta-btn {
        padding: 15px 30px;
        font-size: 14px;
        letter-spacing: 1px;
    }
}

/* ===================================
   CHECKOUT PAGE STYLES
   =================================== */

/* Remove unwanted containers - Reset to visible for grid layout */
.right-panel,
.left-panel,
.right-panel.checkout-section,
.left-panel.checkout-section,
div.right-panel,
div.left-panel,
div.right-panel.checkout-section,
div.left-panel.checkout-section,
form.checkout .right-panel,
form.checkout .left-panel,
form.checkout .right-panel.checkout-section,
form.checkout .left-panel.checkout-section,
form.woocommerce-checkout .right-panel,
form.woocommerce-checkout .left-panel,
.checkout .right-panel,
.checkout .left-panel,
.woocommerce-checkout .right-panel,
.woocommerce-checkout .left-panel,
body .right-panel,
body .left-panel,
body .right-panel.checkout-section,
body .left-panel.checkout-section,
[class*="right-panel"],
[class*="left-panel"],
div[class*="right-panel"],
div[class*="left-panel"],
div[class*="right-panel"][class*="checkout"],
div[class*="left-panel"][class*="checkout"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    max-width: 100% !important;
    overflow: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    pointer-events: auto !important;
}


/* Apply Grid Layout to the form or its container holding the panels */
form.checkout.woocommerce-checkout,
form.checkout.woocommerce-checkout .container {
    display: grid !important;
    grid-template-columns: 1fr 450px !important;
    gap: 30px !important;
    align-items: start !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
    max-width: 1170px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
    box-sizing: border-box !important;
}

/* Reset panels to be visible and behave as grid items */
form.checkout.woocommerce-checkout>.right-panel,
form.checkout.woocommerce-checkout>.left-panel,
form.checkout.woocommerce-checkout>div.right-panel,
form.checkout.woocommerce-checkout>div.left-panel,
form.checkout.woocommerce-checkout .container>.right-panel,
form.checkout.woocommerce-checkout .container>.left-panel {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

/* Style customer details container - floating panel with curved corners */
.col2-set#customer_details {
    width: 100% !important;
    max-width: 100% !important;
    grid-area: auto !important;
    padding: 30px 40px !important;
    margin: 0 !important;
    float: none !important;
    clear: none !important;
    box-sizing: border-box !important;
    background-color: #1c1c1c !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Style order summary - floating panel with curved corners */
.order-summary {
    background-color: #1c1c1c !important;
    border-radius: 12px !important;
    padding: 30px 40px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 20px !important;
    color: #fff !important;
}

/* Style payment options - floating panel with curved corners */
.payment-options.checkout-section {
    background-color: #1c1c1c !important;
    border-radius: 12px !important;
    padding: 30px 40px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin-bottom: 20px !important;
    color: #fff !important;
}

/* Style place order button - floating with curved corners */
.place-order-button {
    background-color: #FFFF00 !important;
    color: #111 !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 18px 40px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    margin-top: 0 !important;
    box-shadow: 0 4px 15px rgba(255, 255, 0, 0.3) !important;
    display: block !important;
}

.place-order-button:hover {
    background-color: #FFD700 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(255, 255, 0, 0.4) !important;
}

/* Ensure right column wrapper contains order summary and payment options */
form.checkout.woocommerce-checkout>div:last-child,
#order_review,
.woocommerce-checkout-review-order {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

/* Ensure inner columns have more space and stack vertically for better field length */
.col2-set#customer_details .col-1,
.col2-set#customer_details .col-2 {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 0 !important;
    margin: 0 0 40px 0 !important;
    float: none !important;
    display: block !important;
}

/* Expand form fields within customer details - make them longer with full width */
#customer_details .form-row input[type="text"],
#customer_details .form-row input[type="email"],
#customer_details .form-row input[type="tel"],
#customer_details .form-row input[type="password"],
#customer_details .form-row select,
#customer_details .form-row textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 15px 20px !important;
    margin-bottom: 20px !important;
    box-sizing: border-box !important;
    background-color: #333 !important;
    border: 2px solid #555 !important;
    border-radius: 8px !important;
    color: #FFFFFF !important;
    font-size: 15px !important;
    font-family: 'Montserrat', sans-serif !important;
}

#customer_details .form-row input:focus,
#customer_details .form-row select:focus,
#customer_details .form-row textarea:focus {
    outline: none !important;
    border-color: #FFFF00 !important;
    background-color: #444 !important;
}

/* Expand form row containers */
#customer_details .form-row {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 0 20px 0 !important;
}

/* Style headings in customer details */
#customer_details h3 {
    color: #FFFF00 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-bottom: 1px solid #444444 !important;
    padding-bottom: 15px !important;
    margin-bottom: 25px !important;
    margin-top: 0 !important;
}

/* Style headings in order summary and payment options */
.order-summary h2,
.order-summary h3,
.payment-options.checkout-section h2,
.payment-options.checkout-section h3 {
    color: #FFFF00 !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-bottom: 1px solid #444444 !important;
    padding-bottom: 15px !important;
    margin-bottom: 25px !important;
    margin-top: 0 !important;
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    /* Adjust as needed */
    gap: 40px;
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
    color: #fff;
}

.checkout-section {
    background-color: #1c1c1c;
    /* Darker card background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.checkout-section h2 {
    color: #FFFF00;
    /* Yellow for headings */
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #444444;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.form-group input[type="email"],
.form-group input[type="text"],
.form-group input[type="tel"] {
    background-color: #333;
    border: 2px solid #555;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 15px;
    padding: 12px 15px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    /* Full width */
}

.form-group input[type="email"]:focus,
.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-color: #FFFF00;
    background-color: #444;
}

.place-order-btn {
    background-color: #FFFF00;
    color: #111;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 30px;
}

.place-order-btn:hover {
    background-color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3);
}

/* Order Summary Specific Styles */
.order-summary-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align icon to the top of the text block */
    padding: 10px 0;
    border-bottom: 1px dashed #444;
}

.order-summary-item:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    /* Prevent icon from shrinking */
    margin-right: 15px;
    /* Space between icon and text content */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    /* Fixed width for icon container */
    height: 20px;
    /* Fixed height for icon container */
}

.order-summary-item .product-icon {
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    /* Allow text content to take remaining space */
    display: flex;
    flex-direction: column;
    /* Stack name and price vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.3;
    text-align: left;
    margin-bottom: 0px;
    /* Added for ultimate micro-adjustment */
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    /* Yellow for item price */
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    /* Keep price left-aligned under the name */
    margin-top: 5px;
    /* Small gap between name and price */
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Confirmed thickness and color */
    margin-top: 20px;
}

.order-summary-total .total-label {
    font-size: 20px;
    /* Matches image */
    font-weight: 700;
    /* Matches image */
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
    /* Matches image */
}

.payment-description {
    color: #ccc;
    /* Lighter grey for description */
    font-size: 13px;
    margin-top: 8px;
    /* Slightly more space from label */
    padding-left: 30px;
    /* Indent to align with radio button text */
    line-height: 1.4;
}

/* Payment Options */
.payment-options {
    margin-top: 30px;
}

.payment-option {
    background-color: #2a2a2a;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #FFFF00;
    background-color: #333;
}

.payment-option.selected {
    border-color: #FFFF00;
    background-color: #333;
}

.payment-option input[type="radio"] {
    appearance: none;
    background-color: #555;
    border: 2px solid #888;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: grid;
    place-content: center;
    margin-right: 5px;
}

.payment-option input[type="radio"]::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em #FFFF00;
    /* Yellow fill */
}

.payment-option input[type="radio"]:checked::before {
    transform: scale(1);
}

.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-option p {
    color: #ccc;
    font-size: 13px;
    margin-top: 5px;
    line-height: 1.4;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
    /* Vertically center icon and input */
}

.input-with-icon i.fas {
    position: absolute;
    left: 15px;
    /* Adjust as needed for padding */
    color: #888;
    font-size: 16px;
    z-index: 1;
    /* Ensure icon is above input */
}

.input-with-icon input {
    padding-left: 45px;
    /* Make space for the left icon */
    width: 100%;
}

.input-with-icon .arrow-icon {
    position: absolute;
    right: 15px;
    /* Position on the right */
    color: #FFFF00;
    /* Yellow color for the arrow */
    font-size: 14px;
    /* Slightly smaller for the arrow */
    pointer-events: none;
    /* Make it non-interactive */
}

.order-summary-item .item-name {
    color: #fff;
    font-size: 15px;
}

.order-summary-item .item-price {
    color: #fff;
    font-size: 15px;
    font-weight: normal;
}

/* New class for labels */
.order-summary-item .item-label-text {
    color: #fff;
    font-size: 15px;
}

/* Override for order item price to be yellow */
.order-summary-item .item-price-text {
    color: #FFFF00;
    /* Yellow for item price */
    font-size: 15px;
    font-weight: 600;
    display: block;
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Yellow border, adjust thickness if needed */
    margin-top: 20px;
}

.order-summary-total .total-label {
    font-size: 20px;
    /* Larger font for TOTAL label */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
    /* Yellow for total amount */
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 10px;
    /* Adjust spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    /* Keep price left-aligned under the name */
    margin-top: 2px;
    /* Subtle gap between name and price */
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    /* Keep price left-aligned under the name */
    margin-top: 2px;
    /* Subtle gap between name and price */
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    /* Keep price left-aligned under the name */
    margin-top: 2px;
    /* Subtle gap between name and price */
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    /* Keep price left-aligned under the name */
    margin-top: 2px;
    /* Subtle gap between name and price */
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    /* Keep price left-aligned under the name */
    margin-top: 2px;
    /* Subtle gap between name and price */
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
    margin-right: 8px;
    /* Adjusted spacing to match image */
    display: flex;
    align-items: flex-start;
    /* Align icon to the start (top) of the text */
    justify-content: center;
    width: 20px;
    height: auto;
    /* Allow height to adjust to icon size */
}

.order-summary-item .product-custom-icon {
    /* New class for custom unicode icons */
    color: #FFFF00;
    /* Yellow icon color */
    font-size: 20px;
    /* Larger icon size */
    line-height: 1;
    /* Adjust line height to center vertically */
    display: block;
    /* Ensure it behaves as a block for alignment */
    font-family: 'Arial', sans-serif;
    /* Use a font that renders unicode well */
}

.order-summary-item .item-details-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center the text content vertically */
}

.order-summary-item .item-name-text {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    /* Slightly bolder for name */
    line-height: 1.2;
    /* Tighter line height for product name */
    text-align: left;
}

.order-summary-item .item-price-text {
    color: #FFFF00;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    margin-top: 2px;
    /* Subtle gap between name and price */
    line-height: 1.2;
}

.order-summary-item .item-label-text {
    color: #fff;
    /* White for labels */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for labels */
    text-align: left;
    /* Ensure left alignment */
}

.order-summary-item .item-price {
    color: #fff;
    /* White for values */
    font-size: 15px;
    font-weight: 400;
    /* Normal weight for values */
    text-align: right;
    /* Ensure right alignment */
}

.order-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #FFFF00;
    /* Adjusted thickness */
    margin-top: 20px;
    padding-top: 10px;
    /* Subtle padding above the line */
}

.order-summary-total .total-label {
    font-size: 18px;
    /* Fine-tuned font size */
    font-weight: 700;
    color: #fff;
}

.order-summary-total .total-amount {
    font-size: 26px;
    /* Ultimate font size */
    font-weight: 900;
    color: #FFFF00;
}

/* Payment Options */
.payment-option label {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    /* Vertically align all contents */
    gap: 10px;
}

.payment-option label img {
    height: 20px;
    margin-left: 5px;
    vertical-align: middle;
}

.payment-description {
    color: #ccc;
    font-size: 12px;
    /* Fine-tuned font size */
    margin-top: 8px;
    padding-left: 28px;
    /* Fine-tuned indentation */
    line-height: 1.4;
}

.order-summary-item .product-icon-wrapper {
    flex-shrink: 0;
}

/* ==========================================
   Footer Styles - High Contrast & Clean Design
   ========================================== */
/* ==========================================
   Footer Styles - High Contrast & Clean Design
   Matches shop.dowstyres.co.za/shop footer exactly
   ========================================== */
.site-footer {
    background-color: #151515 !important;
    color: #ffffff !important;
    padding: 30px 0 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    margin-top: 50px !important;
    border-top: 1px solid #333 !important;
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.site-footer .container {
    width: 100% !important;
    max-width: 1170px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
    display: block !important;
    clear: both !important;
}

/* Ensure footer logo container doesn't add extra spacing */
.footer-logo {
    margin: 0 !important;
    padding: 0 !important;
}

.footer-top-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FFFF00, #ffd700);
    box-shadow: 0 0 15px rgba(255, 255, 0, 0.3);
}

.footer-grid {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
    gap: 30px !important;
    margin-bottom: 30px !important;
    align-items: start !important;
    width: 100% !important;
    grid-auto-rows: auto !important;
}

.footer-widget {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    vertical-align: top !important;
}

.footer-widget h2 {
    color: #FFFF00 !important;
    font-size: 28px !important;
    font-weight: 900 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    width: 100% !important;
    line-height: 1.1 !important;
}

.footer-widget .widget-title {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    position: relative !important;
    padding-bottom: 10px !important;
    width: 100% !important;
    line-height: 1.2 !important;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #FFFF00;
}

.footer-desc {
    color: #ccc !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    font-size: 14px !important;
    text-align: left !important;
    width: 100% !important;
}

.footer-menu,
.contact-details {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

.footer-menu li {
    margin-bottom: 8px !important;
    text-align: left !important;
    list-style-position: outside !important;
}

.contact-details li {
    margin-bottom: 3px !important;
    text-align: left !important;
    list-style-position: outside !important;
}

.footer-menu a {
    color: #ccc !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: block !important;
    font-size: 14px !important;
    text-align: left !important;
    width: 100% !important;
}

.footer-menu a:hover {
    color: #FFFF00 !important;
    transform: translateX(5px) !important;
}

.contact-details li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 6px !important;
    color: #ccc !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    padding: 0 !important;
}

.contact-details li:last-child {
    margin-bottom: 0 !important;
}

.contact-details i {
    color: #FFFF00 !important;
    font-size: 16px !important;
    margin-top: 2px !important;
    flex-shrink: 0 !important;
}

.contact-details a {
    color: #ccc !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.contact-details a:hover {
    color: #FFFF00 !important;
}

.contact-details span {
    display: block !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.contact-details br {
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.social-icons {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
}

.social-icons a:hover {
    background: #FFFF00 !important;
    color: #000 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(255, 255, 0, 0.3) !important;
}

.footer-bottom {
    background: #0f0f0f !important;
    padding: 25px 0 !important;
    border-top: 1px solid #222 !important;
    margin-top: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.footer-bottom .container {
    width: 100% !important;
    max-width: 1170px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

.footer-bottom-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
    clear: both !important;
}

.copyright {
    color: #888 !important;
    font-size: 13px !important;
    margin: 0 !important;
    text-align: left !important;
    flex-shrink: 0 !important;
}

.copyright strong {
    color: #fff !important;
}

.payment-icons {
    display: flex !important;
    gap: 15px !important;
    color: #666 !important;
    font-size: 24px !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-shrink: 0 !important;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .footer-bottom-content {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
    }

    .footer-widget {
        text-align: center !important;
    }

    .footer-widget .widget-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .contact-details li {
        justify-content: center !important;
    }

    .social-icons {
        justify-content: center !important;
    }
}

.reviews-section {
    background: #0f0f0f;
    padding: 60px 0;
    margin-bottom: 0;
    position: relative;
    z-index: 5;
    border-bottom: 1px solid #222;
}

/* ========================================
   CLEAN 3-ROW FILTER LAYOUT
   ======================================== */

/* The filter grid itself should have 3 rows */
.bf-image-side .att-filter-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Responsive adjustments for checkout */
@media (max-width: 991px) {
    form.checkout.woocommerce-checkout {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
    }

    .col2-set#customer_details {
        padding: 20px !important;
    }
}

/* ==========================================
   MOBILE RESPONSIVE FIXES (DOWSTYRES.CO.ZA)
   ========================================== */

@media (max-width: 768px) {

    /* --- HEADER FIXES --- */
    .top-bar {
        height: 50px !important;
        min-height: 50px !important;
    }

    .logo-banner {
        height: 50px !important;
        min-height: 50px !important;
    }

    .logo-banner img,
    .logo-banner .header-logo {
        max-height: 40px !important;
    }

    /* Fix Main Nav positioning */
    /* Sticky Nav Logic on Mobile */
    .main-nav {
        position: sticky !important;
        top: 0 !important;
        /* Stick to top of viewport when scrolling */
        z-index: 999 !important;
        padding: 10px 0 !important;
        background: #151515 !important;
        /* Ensure background is solid */
    }

    .main-nav .container {
        padding: 0 15px !important;
    }

    .main-nav ul {
        gap: 15px !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }

    .main-nav li a {
        font-size: 12px !important;
        padding: 5px 10px !important;
    }

    /* Hide header right elements on very small screens or stack them */
    .header-right {
        display: none !important;
        /* Simplify for mobile */
    }

    /* --- HERO SECTION FIXES --- */
    .modern-hero {
        padding-top: 110px !important;
        /* Account for fixed header + nav */
        min-height: auto !important;
        height: auto !important;
        padding-bottom: 40px !important;
    }

    .hero-content-wrapper {
        flex-direction: column !important;
        padding: 0 15px !important;
        gap: 30px !important;
    }

    .black-friday-hero-content {
        flex-direction: column !important;
        gap: 30px !important;
    }

    .bf-text-side {
        text-align: center !important;
        align-items: center !important;
        padding-right: 0 !important;
    }

    .bf-title {
        font-size: 42px !important;
        line-height: 1 !important;
    }

    .bf-subtitle {
        font-size: 14px !important;
        max-width: 100% !important;
    }

    .bf-discount {
        justify-content: center !important;
    }

    .bf-timer {
        display: none !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .timer-box {
        min-width: 60px !important;
        height: 60px !important;
    }

    .timer-box span {
        font-size: 24px !important;
    }

    /* Filter Box Mobile */
    .att-filter-wrapper {
        padding: 20px !important;
        margin-top: 20px !important;
    }

    .att-filter-row-top,
    .att-filter-row-middle {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* --- PRODUCT GRID FIXES --- */
    .product-grid {
        grid-template-columns: 1fr !important;
        /* 1 column for mobile */
        gap: 20px !important;
        padding: 0 15px !important;
    }

    .product-card {
        max-width: 350px !important;
        /* Prevent too wide cards */
        margin: 0 auto !important;
    }

    /* --- FEATURES SECTION FIXES --- */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    /* --- CATEGORIES FIXES --- */
    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
    }

    /* --- FOOTER FIXES --- */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 40px !important;
    }

    .footer-widget {
        align-items: center !important;
        text-align: center !important;
    }

    .footer-widget .widget-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .contact-details li {
        justify-content: center !important;
    }

    .social-icons {
        justify-content: center !important;
    }

    .footer-bottom-content {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }

    .payment-icons {
        justify-content: center !important;
    }
}

/* Tablet Specific (768px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .att-filter-row-top {
        grid-template-columns: 1fr 1fr !important;
    }

    .att-filter-row-middle {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
}

/* =========================================
   MOBILE RESPONSIVE STYLES (ADDED)
   ========================================= */

/* Mobile Menu Toggle Button (Default Hidden) */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    order: 1;
    /* Left */
}

/* Mobile Logo (Default Hidden) */
.mobile-nav-logo {
    display: none;
    height: 40px;
    order: 2;
    /* Center */
    margin: 0 auto;
    /* Force centering */
}

.mobile-nav-logo img {
    height: 100%;
    width: auto;
}

/* Tablet & Mobile Breakpoint */
@media (max-width: 900px) {
    .container {
        width: 100%;
        padding: 0 15px;
    }

    /* --- HEADER & NAV --- */

    /* Fixed Top Bar for Mobile */
    .top-bar {
        display: block !important;
        height: 60px;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        z-index: 1001;
        background-color: #e74c3c;
        width: 100%;
        margin: 0;
        padding: 0;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .logo-banner {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .header-logo {
        max-height: 40px !important;
        width: auto !important;
        position: static !important;
        transform: none !important;
        margin: 0 !important;
        padding: 0 !important;
        left: auto !important;
        top: auto !important;
    }

    /* Fixed Main Nav for Mobile */
    .main-nav {
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 1000;
        background-color: #000 !important;
        transition: top 0.3s ease-in-out;
    }

    /* Flex Container for Header Strip */
    .main-nav .container {
        display: flex !important;
        visibility: visible !important;
        height: auto !important;
        min-height: 50px;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 10px 15px !important;
        position: relative;
        background-color: #000 !important;
    }

    .mobile-menu-toggle {
        display: block;
        color: #fff;
        /* Ensure it is white */
    }

    .mobile-nav-logo {
        display: none !important;
        /* Ensure hidden if remnants exist */
    }

    /* Make Header Right (Icons) visible and ordered right */
    .header-right {
        gap: 15px;
        order: 3;
        /* Right */
        display: flex;
        align-items: center;
    }

    /* Search bar - handled by mobile-responsive.css */

    .contact-info span {
        display: none;
    }

    .cart span {
        display: none;
    }

    /* DRAWER MENU - DISABLED: Using centered popup from mobile-responsive.css */

    /* --- HERO SECTION --- */

    /* Push content down to account for fixed headers (60px + 50px = 110px) */
    .modern-hero,
    .about-hero,
    .contact-hero {
        margin-top: 110px !important;
    }

    .modern-hero {
        height: auto;
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .hero-content-wrapper {
        flex-direction: column;
        padding: 10px 0;
    }

    .black-friday-hero-content {
        display: flex;
        /* Ensure flex is applied directly */
        flex-direction: column;
        gap: 20px;
    }

    /* ORDERING: Text First, then Filter */
    .bf-text-side {
        order: 1 !important;
        width: 100%;
        text-align: center;
        padding: 0;
        margin-top: 20px;
    }

    .bf-image-side {
        order: 2 !important;
        /* Filter second */
        width: 100%;
        padding: 0;
        margin-top: 10px;
    }

    .bf-title {
        font-size: 36px;
        line-height: 1.1;
    }

    .bf-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .bf-timer {
        display: none !important;
        justify-content: center;
    }

    /* ATT Filter Adjustment */
    .att-filter-wrapper {
        padding: 20px;
        margin: 0;
        /* Remove margin to center properly */
    }

    /* --- GRIDS & SECTIONS --- */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        row-gap: 20px;
    }

    @media (max-width: 480px) {
        .product-grid {
            grid-template-columns: 1fr;
        }
    }

    .features-grid,
    .categories-grid,
    .trust-grid,
    .footer-grid,
    .contact-content {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    /* --- FOOTER CENTER ALIGNMENT --- */
    .footer-widget {
        align-items: center !important;
        text-align: center !important;
        margin-bottom: 30px;
    }

    .footer-widget .widget-title::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        right: auto;
    }

    .contact-details li {
        justify-content: center !important;
    }

    .social-icons {
        justify-content: center !important;
    }

    .footer-bottom-content {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }

    .payment-icons {
        justify-content: center !important;
    }

    /* Map Responsive */
    .map-section iframe {
        height: 250px;
    }
}

/* ============================================
   CONTACT PAGE - Get In Touch Section
   ============================================ */
.contact-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.contact-info-column,
.contact-form-column {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFF00;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FFFF00;
    transform: translateY(-3px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFFF00 0%, #FFD700 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 22px;
    color: #000;
}

.contact-card-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.contact-card-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}

/* Hours Card - Full Width */
.hours-card {
    grid-column: 1 / -1;
}

.hours-list {
    margin-top: 5px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.hours-row span:last-child {
    font-weight: 600;
    color: #FFFF00;
}

/* Contact Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFFF00;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(255, 255, 0, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #FFFF00 0%, #FFD700 100%);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn i {
    font-size: 14px;
}

.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
    text-align: center;
}

/* Contact Form Success/Error States */
.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid #F44336;
    color: #F44336;
}

   / *   C a r t   B a d g e   -   D e s k t o p   &   G l o b a l   * /     . c a r t - b a d g e    {
                 p o s i t i o n :    a b s o l u t e ;
                 t o p :    - 8 p x ;
                 r i g h t :    - 8 p x ;
                 b a c k g r o u n d :    # F F F F 0 0 ;
                 c o l o r :    # 0 0 0 ;
                 f o n t - s i z e :    1 1 p x ;
                 f o n t - w e i g h t :    7 0 0 ;
                 m i n - w i d t h :    2 0 p x ;
                 h e i g h t :    2 0 p x ;
                 b o r d e r - r a d i u s :    5 0 % ;
                 d i s p l a y :    f l e x ;
                 a l i g n - i t e m s :    c e n t e r ;
                 j u s t i f y - c o n t e n t :    c e n t e r ;
                 p a d d i n g :    0   4 p x ;
                 z - i n d e x :    2 ;
                 b o x - s h a d o w :    0   2 p x   5 p x   r g b a ( 0 ,  0 ,  0 ,  0 . 2 ) ;
         
}

         . c a r t - b a d g e : e m p t y    {
                 d i s p l a y :    n o n e ;
         
}

     

/* Hide Clear Filters on Desktop */
.att-clear-filters {
    display: none;
}

/* Select Placeholder Color Logic */
.att-select-wrapper select {
    color: #999;
    /* Placeholder color */
}

.att-select-wrapper select.has-value {
    color: #fff;
    /* Selected value color */
}

.att-select-wrapper select option {
    color: #fff;
    /* Dropdown options always white */
    background-color: #1a1a1a;
}

.bf-image-side .att-select-wrapper select {
    color: #999;
}

.bf-image-side .att-select-wrapper select.has-value {
    color: #fff;
}


/* Clear filters button - hidden on desktop */
.att-clear-filters,
.att-clear-search {
    display: none;
}

/* Car Showcase Section */
.car-showcase-section {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at 20% 50%, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
}

.car-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/clean-1757689032329.png') no-repeat center center;
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.car-image-wrapper {
    position: relative;
    z-index: 2;
}

.car-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.car-image:hover {
    transform: scale(1.02) translateX(10px);
}

.car-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.2) 0%, transparent 70%);
    z-index: -1;
    filter: blur(40px);
}

.product-showcase-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.product-showcase-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(255, 255, 255, 0.03) 50%,
            transparent 100%);
    transform: rotate(45deg);
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.perfect-fit-badge {
    display: inline-block;
    background: rgba(255, 255, 0, 0.15);
    color: #FFFF00;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 0, 0.3);
}

.showcase-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
}

.highlight-text {
    color: #FFFF00;
    text-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
}

.showcase-body {
    display: flex;
    gap: 20px;
}

.showcase-image-box {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-product-img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.showcase-product-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.showcase-details {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.specs-list li {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.specs-list li i {
    color: #FFFF00;
    width: 20px;
    text-align: center;
}

.price-box {
    margin-bottom: 20px;
}

.price-box .currency {
    color: #FFFF00;
    font-size: 1.2rem;
    font-weight: 700;
    vertical-align: top;
}

.price-box .amount {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.buy-now-btn {
    background: #FFFF00;
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 255, 0, 0.2);
}

.buy-now-btn:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

@media (max-width: 900px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-car-col {
        order: 1;
        margin-bottom: -40px;
        z-index: 1;
    }

    .showcase-product-col {
        order: 2;
        z-index: 2;
    }

    .car-image {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }

    .showcase-body {
        flex-direction: row;
    }

    .showcase-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .showcase-body {
        flex-direction: column;
    }

    .showcase-image-box {
        margin-bottom: 20px;
    }
}

/* ===================================
   JAN-U-WORRY CAMPAIGN STYLES
   =================================== */

.juw-title {
    font-size: 70px !important;
    letter-spacing: -3px;
}

.juw-stroke {
    -webkit-text-stroke: 2px #ff3333;
    animation: vibrant-glow 3s infinite alternate !important;
}

/* Update the pseudo-element content for the blur effect */
.juw-stroke::before {
    content: 'JAN-U-WORRY' !important;
}

.juw-percent {
    font-size: 90px;
    color: #FFFF00;
    text-shadow: 0 0 40px rgba(255, 255, 0, 0.5);
    animation: pulse-yellow 2s infinite;
}

@keyframes vibrant-glow {
    0% {
        filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
        -webkit-text-stroke: 2px #ff0000;
        color: transparent;
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(255, 50, 0, 0.8));
        -webkit-text-stroke: 2px #ff5500;
        color: rgba(255, 255, 0, 0.1);
    }

    100% {
        filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.6));
        -webkit-text-stroke: 2px #ff0000;
        color: transparent;
    }
}

@keyframes pulse-yellow {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 30px rgba(255, 255, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 50px rgba(255, 255, 0, 0.8), 0 0 20px rgba(255, 200, 0, 0.6);
    }
}

@media (max-width: 992px) {
    .juw-title {
        font-size: 50px !important;
    }
}

@media (max-width: 480px) {
    .juw-title {
        font-size: 32px !important;
    }

    .juw-percent {
        font-size: 50px;
    }
}