
      :root{
  --samsung-blue: #1428a0;
  --samsung-dark: #0b1226;
  --samsung-light: #f7f7f7;
}

        .samsung_brandshop_header_top {
            /* background: linear-gradient(135deg, #0b1226 0%, #1428a0 100%); */
                /* padding: 10px 70px; */
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #D5DFE4;
    z-index: 1002;
    position: relative;
    background: #ffffff;
    color: #000 !important;
            /* color: #fffff;
            position: relative;
            z-index: 1000;
            height: 50px; */
        }

        .samsung_brandshop_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .samsung_brandshop_row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            min-height: 50px;
        }

        .samsung_brandshop_left_section {
            display: flex;
            align-items: center;
        }

        .samsung_brandshop_logo_link {
            color: #425A8B !important;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            letter-spacing: 0.5px;
            transition: opacity 0.3s ease;
        }

        .samsung_brandshop_logo_link:hover {
            opacity: 0.8;
        }

        .samsung_brandshop_right_section {
            display: flex;
            align-items: center;
            justify-self: flex-end;
        }

        .samsung_brandshop_nav_menu {
            display: flex;
            list-style: none;
            gap: 0;
        }

        .samsung_brandshop_nav_item {
            position: relative;
        }

        .samsung_brandshop_nav_link {
            display: block;
            color: #425A8B !important;
            text-decoration: none;
            padding: 15px 20px;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }

        .samsung_brandshop_nav_link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-bottom-color: #ff6b35;
        }

        .samsung_brandshop_dropdown {
            position: fixed;
            top: 50px;
            left: 0;
            width: 100vw;
            background: #ffff !important;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border-top: 3px solid #1428a0;
            z-index: 999;
        }

        .samsung_brandshop_nav_item:hover .samsung_brandshop_dropdown {
            opacity: 1;
            visibility: visible;
        }

        .samsung_brandshop_dropdown_container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .samsung_brandshop_dropdown_grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .samsung_brandshop_dropdown_section h3 {
            color: #1428a0;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .samsung_brandshop_dropdown_links {
            list-style: none;
        }

        .samsung_brandshop_dropdown_links li {
            margin-bottom: 12px;
        }

        .samsung_brandshop_dropdown_link {
            color: #666;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .samsung_brandshop_dropdown_link:hover {
            color: #1428a0;
            transform: translateX(5px);
        }

        .samsung_brandshop_icon_section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }

        .samsung_brandshop_icon_item {
            text-align: center;
            padding: 20px;
            transition: all 0.3s ease;
        }

        .samsung_brandshop_icon_item:hover {
            background-color: #f8f9fa;
            border-radius: 8px;
        }

        .samsung_brandshop_icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1428a0, #0d47a1);
            border-radius: 50%;
            color: #425A8B !important;
            font-size: 24px;
        }

        .samsung_brandshop_icon_title {
            color: #333;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .samsung_brandshop_icon_subtitle {
            color: #666;
            font-size: 12px;
        }

        .samsung_brandshop_mobile_toggle {
            display: none;
            background: none;
            border: none;
            color: #425A8B !important;
            font-size: 24px;
            cursor: pointer;
            padding: 10px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .samsung_brandshop_row {
                flex-wrap: wrap;
            }

            .samsung_brandshop_nav_menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #ffff;
                flex-direction: column;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            }

            .samsung_brandshop_nav_menu.active {
                display: flex;
            }

            .samsung_brandshop_mobile_toggle {
                display: block;
            }

            .samsung_brandshop_dropdown {
                position: static;
                transform: none;
                width: 100%;
                box-shadow: none;
                border-top: none;
                border-left: 3px solid #ff6b35;
                margin-left: 20px;
            }

            .samsung_brandshop_dropdown_container {
                padding: 20px;
            }

            .samsung_brandshop_dropdown_grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .samsung_brandshop_icon_section {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .samsung_brandshop_container {
                padding: 0 15px;
            }

            .samsung_brandshop_logo_link {
                font-size: 14px;
            }

            .samsung_brandshop_nav_link {
                padding: 12px 15px;
                font-size: 13px;
            }
        }

        

    .samsung_brandshop_main_header_top-main {
        background: #FDFDFD !important;
        color: #000 !important;
        position: relative;
        /* z-index: 1000; */
        height: 50px;
        display: flex;
        align-items: center;
    }

    .samsung_brandshop_main_container-main-main-main {
        /* max-width: 1400px; */
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
    }

    .samsung_brandshop_main_row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

    .samsung_brandshop_main_left_section {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .samsung_brandshop_main_logo {
        color: #FDFDFD;
        text-decoration: none;
        font-weight: bold;
        font-size: 24px;
        letter-spacing: -0.5px;
    }

    .samsung_brandshop_main_nav_menu {
        display: flex;
        list-style: none;
        gap: 0;
        margin: 0;
    }

    .samsung_brandshop_main_nav_item {
        position: relative;
        
    }

    .samsung_brandshop_main_nav_link {
        display: block;
        color: #000;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: all 0.3s ease;
        #FDFDFD-space: nowrap;
    padding: 12px 12px 16px 12px;
    height: 46px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.33;
    color: #000;
    -webkit-transition: color .1s cubic-bezier(0.35,0,0.36,1);
    transition: color .1s cubic-bezier(0.35,0,0.36,1);
    text-transform:uppercase 
    }

    .samsung_brandshop_main_nav_link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .samsung_brandshop_main_right_section {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .samsung_brandshop_main_search_container {
        position: relative;
    }

    .samsung_brandshop_main_search_wrapper {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 25px;
        padding: 8px 16px;
        transition: all 0.3s ease;
        min-width: 300px;
    }

    .samsung_brandshop_main_search_wrapper:focus-within {
        background: #FDFDFD;
        border-color: #0071E3; /* Lighter Samsung blue */
    }

    .samsung_brandshop_main_search_input {
        background: transparent;
        border: none;
        outline: none;
        color: #FDFDFD;
        font-size: 14px;
        flex: 1;
        padding: 0 10px;
    }

    .samsung_brandshop_main_search_input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .samsung_brandshop_main_search_wrapper:focus-within .samsung_brandshop_main_search_input {
        color: #333;
    }

    .samsung_brandshop_main_search_wrapper:focus-within .samsung_brandshop_main_search_input::placeholder {
        color: #999;
    }

    .samsung_brandshop_main_search_icon {
        color: rgba(255, 255, 255, 0.8);
        font-size: 16px;
        cursor: pointer;
    }

    .samsung_brandshop_main_search_wrapper:focus-within .samsung_brandshop_main_search_icon {
        color: #0071E3; /* Lighter Samsung blue */
    }

    .samsung_brandshop_main_user_actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .samsung_brandshop_main_icon_button {
        color: #FDFDFD;
        font-size: 18px;
        cursor: pointer;
        padding: 8px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .samsung_brandshop_main_icon_button:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    /* Dropdown Styles */
    .samsung_brandshop_main_dropdown {
        position: fixed;
        top: 50px;
        left: 0;
        width: 100vw;
        background: #FDFDFD;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 3px solid #4A90E2; /* Lighter Samsung blue */
        z-index: 999;
        margin-top: 130px; /* Increased margin-top to avoid blocking nav bar */
    }

    .samsung_brandshop_main_nav_item:hover .samsung_brandshop_main_dropdown {
        opacity: 1;
        visibility: visible;
    }

    .samsung_brandshop_main_dropdown_container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 40px 20px;
    }

    .samsung_brandshop_main_dropdown_content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
    }

    .samsung_brandshop_main_dropdown_section h3 {
        color: #0071E3; /* Lighter Samsung blue */
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .samsung_brandshop_main_product_grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .samsung_brandshop_main_product_item {
        text-align: center;
        padding: 20px;
        border-radius: 8px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .samsung_brandshop_main_product_item:hover {
        background-color: #f8f9fa;
        transform: translateY(-2px);
    }

    .samsung_brandshop_main_product_image {
        width: 120px;
        height: 120px;
        border-radius: 8px;
        margin: 0 auto 15px;
        object-fit: cover; /* Ensure images scale properly */
    }

    .samsung_brandshop_main_product_name {
        color: #333;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .samsung_brandshop_main_product_price {
        color: #0071E3; /* Lighter Samsung blue */
        font-size: 16px;
        font-weight: 600;
    }

    .samsung_brandshop_main_category_links {
        list-style: none;
    }

    .samsung_brandshop_main_category_links li {
        margin-bottom: 12px;
    }

    .samsung_brandshop_main_category_link {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        display: block;
        padding: 5px 0;
    }

    .samsung_brandshop_main_category_link:hover {
        color: #0071E3; /* Lighter Samsung blue */
        padding-left: 10px;
    }

    /* Search Dropdown */
    .samsung_brandshop_main_search_dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FDFDFD;
        border-radius: 8px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        margin-top: 5px;
        z-index: 1001;
    }

    .samsung_brandshop_main_search_container:focus-within .samsung_brandshop_main_search_dropdown {
        opacity: 1;
        visibility: visible;
    }

    .samsung_brandshop_main_search_suggestions {
        padding: 15px 0;
    }

    .samsung_brandshop_main_search_suggestion {
        padding: 10px 20px;
        cursor: pointer;
        transition: background-color 0.2s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .samsung_brandshop_main_search_suggestion:hover {
        background-color: #f8f9fa;
    }

    .samsung_brandshop_main_search_suggestion_icon {
        color: #666;
        font-size: 14px;
    }

    .samsung_brandshop_main_search_suggestion_text {
        color: #333;
        font-size: 14px;
    }

    /* Mobile Responsiveness */
    .samsung_brandshop_main_mobile_toggle {
        display: none;
        background: none;
        border: none;
        color: #FDFDFD;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
    }

    @media (max-width: 1024px) {
        .samsung_brandshop_main_header_top-main {
            display: none !important
        }
        .samsung_brandshop_main_nav_menu {
            display: none;
        }
        
        .samsung_brandshop_main_nav_menu.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 50px;
            left: 0;
            width: 100%;
            background: #FDFDFD;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            z-index: 999;
        }

        .samsung_brandshop_main_nav_item {
            width: 100%;
        }

        .samsung_brandshop_main_nav_link {
            color: #333;
            padding: 15px;
            border-bottom: 1px solid #eee;
        }

        .samsung_brandshop_main_dropdown {
            position: static;
            width: 100%;
            margin-top: 0;
            border-top: none;
            box-shadow: none;
            opacity: 1;
            visibility: visible;
            display: none;
        }

        .samsung_brandshop_main_nav_item.active .samsung_brandshop_main_dropdown {
            display: block;
        }

        .samsung_brandshop_main_search_wrapper {
            min-width: 200px;
        }
    }

    @media (max-width: 768px) {
         .samsung_brandshop_main_header_top-main {
            display: none !important
        }
        .samsung_brandshop_main_left_section {
            gap: 20px;
        }

        .samsung_brandshop_main_search_wrapper {
            min-width: 150px;
        }

        .samsung_brandshop_main_dropdown_content {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .samsung_brandshop_main_product_grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 15px;
        }
    }

    @media (max-width: 480px) {
         .samsung_brandshop_main_header_top-main {
            display: none !important
        }
        .samsung_brandshop_main_container-main-main-main {
            padding: 0 15px;
        }

        .samsung_brandshop_main_logo {
            font-size: 18px;
        }

        .samsung_brandshop_main_search_wrapper {
            min-width: 120px;
        }
    }

   .samsung_btn_add_to_cart {
    display: block; 
    width: 100% !important;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    color: #425A8B;
    border: 1px solid #8C9EC5;
    text-align: center;
    padding: 7px 22px;
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 6px; 
}

.samsung_btn_add_to_cart:hover {
    background: #425A8B;
    color: #fff;
    border-color: #425A8B;
}

.product-card-inner .list-features {
    padding-left: 15px;
    margin: 20px 0px 0px 0px;
}

.product-card-inner .list-features li {
    font-size: 10px;
    line-height: 18px;
    list-style-type: disc;
    padding: 0px;
}




/* Samsung Brandshop Modal Styling */
.samsung_branshop-modal .modal-content {
    background: #ffffff;
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    font-family: 'SamsungOne', Arial, sans-serif;
}

.samsung_branshop-header {
    background: #1428a0; /* Samsung Blue */
    color: #ffffff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.samsung_branshop-header h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.samsung_branshop-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
}

.samsung_branshop-body {
    padding: 20px;
}

.samsung_branshop-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.samsung_branshop-image img:hover {
    transform: scale(1.05);
}

.samsung_branshop-product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1428a0;
    margin-bottom: 8px;
}

.samsung_branshop-meta {
    margin-bottom: 12px;
    color: #555;
    font-size: 0.9rem;
}

.samsung_branshop-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1428a0;
}

.samsung_branshop-old-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.samsung_branshop-description {
    font-size: 0.95rem;
    color: #444;
    margin: 12px 0 20px;
    line-height: 1.5;
}

/* Buttons */
.samsung_branshop-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.samsung_branshop-btn-primary {
    background: #1428a0;
    color: #fff;
    border: none;
}

.samsung_branshop-btn-primary:hover {
    background: #0f1d73;
}

.samsung_branshop-btn-secondary {
    background: #f1f3f6;
    color: #1428a0;
    border: 1px solid #d0d3da;
}

.samsung_branshop-btn-secondary:hover {
    background: #e2e6ed;
}

.samsung_branshop-whatsapp {
    background: #25d366;
    color: #fff;
    margin-top: 10px;
}

.samsung_branshop-whatsapp:hover {
    background: #1eb354;
}

/* Footer */
.samsung_branshop-footer {
    padding: 15px 20px;
    background: #f9f9f9;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #e6e6e6;
}

.samsung_branshop-btn-outline {
    border: 1px solid #1428a0;
    color: #1428a0;
    background: transparent;
}

.samsung_branshop-btn-outline:hover {
    background: #1428a0;
    color: #fff;
}

/* Out of Stock */
.samsung_branshop-out-of-stock {
    background: #ff3b3b;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600;
    margin-top: 10px;
}


/* Samsung Design System Variables */
:root {
    --samsung-primary: #1428A0;
    --samsung-primary-dark: #0D1B5C;
    --samsung-primary-light: #3B4CC0;
    --samsung-accent: #00A8E8;
    --samsung-accent-light: #66D9FF;
    --samsung-white: #FFFFFF;
    --samsung-black: #000000;
    --samsung-gray-50: #FAFAFA;
    --samsung-gray-100: #F5F5F5;
    --samsung-gray-200: #EEEEEE;
    --samsung-gray-300: #E0E0E0;
    --samsung-gray-400: #BDBDBD;
    --samsung-gray-500: #9E9E9E;
    --samsung-gray-600: #757575;
    --samsung-gray-700: #616161;
    --samsung-gray-800: #424242;
    --samsung-gray-900: #212121;
    --samsung-success: #4CAF50;
    --samsung-warning: #FF9800;
    --samsung-error: #F44336;
    --samsung-whatsapp: #25D366;
    --samsung-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --samsung-shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --samsung-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --samsung-shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    --samsung-radius-sm: 8px;
    --samsung-radius-md: 12px;
    --samsung-radius-lg: 16px;
    --samsung-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modal Base Styling */
.samsung-quick-view-modal .modal-dialog {
    max-width: 1100px;
    margin: 1rem;
}

.samsung-modal {
    border: none;
    border-radius: var(--samsung-radius-lg);
    overflow: hidden;
    box-shadow: var(--samsung-shadow-xl);
    background: var(--samsung-white);
}

/* Header Styling */
.samsung-modal-header {
    position: relative;
    background: linear-gradient(135deg, var(--samsung-primary) 0%, var(--samsung-primary-dark) 100%);
    padding: 0;
    border-bottom: none;
}

.samsung-header-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, 
        var(--samsung-primary) 0%, 
        var(--samsung-primary-light) 50%, 
        var(--samsung-accent) 100%);
    opacity: 0.1;
}

.samsung-header-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
}

.samsung-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.samsung-logo-accent {
    width: 4px;
    height: 24px;
    background: var(--samsung-accent);
    border-radius: 2px;
}

.samsung-modal-title {
    color: var(--samsung-white);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.samsung-close-btn {
    background: none;
    border: none;
    padding: 8px;
    border-radius: 50%;
    transition: var(--samsung-transition);
    position: relative;
    overflow: hidden;
}

.samsung-close-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: var(--samsung-transition);
}

.samsung-close-btn:hover::before {
    transform: scale(1);
}

.samsung-close-icon {
    position: relative;
    color: var(--samsung-white);
    font-size: 1.2rem;
    z-index: 1;
}

/* Modal Body */
.samsung-modal-body {
    padding: 32px 24px;
    background: var(--samsung-white);
}

/* Image Section */
.samsung-image-container {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.samsung-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--samsung-gray-50) 0%, var(--samsung-gray-100) 100%);
    border-radius: var(--samsung-radius-md);
    padding: 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--samsung-gray-200);
    transition: var(--samsung-transition);
}

.samsung-image-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: var(--samsung-shadow-md);
}

.samsung-product-img {
    max-width: 100%;
    max-height: 350px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--samsung-transition);
}

.samsung-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 40, 160, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--samsung-transition);
    border-radius: var(--samsung-radius-md);
}

.samsung-image-wrapper:hover .samsung-image-overlay {
    opacity: 1;
}

.samsung-zoom-indicator {
    background: var(--samsung-white);
    color: var(--samsung-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--samsung-shadow-md);
    transform: scale(0.8);
    transition: var(--samsung-transition);
}

.samsung-image-wrapper:hover .samsung-zoom-indicator {
    transform: scale(1);
}

.samsung-discount-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, var(--samsung-error) 0%, #D32F2F 100%);
    color: var(--samsung-white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: var(--samsung-shadow-sm);
}

/* Product Info Section */
.samsung-product-info {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.samsung-product-header {
    border-bottom: 1px solid var(--samsung-gray-200);
    padding-bottom: 16px;
}

.samsung-product-title {
        font-family: "DM Sans", sans-serif;
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
}

.samsung-product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.samsung-stars {
    display: flex;
    gap: 2px;
}

.samsung-stars i {
    color: var(--samsung-warning);
    font-size: 0.9rem;
}

.samsung-rating-text {
    color: var(--samsung-gray-600);
    font-size: 0.9rem;
}

/* Meta Information */
.samsung-meta-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--samsung-gray-200);
}

.samsung-meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.samsung-meta-label {
    color: var(--samsung-gray-600);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.samsung-meta-value {
    color: var(--samsung-gray-900);
    font-weight: 600;
}

.samsung-availability-badge .samsung-in-stock {
    color: var(--samsung-success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.samsung-availability-badge .samsung-out-of-stock {
    color: var(--samsung-error);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Pricing Section */
.samsung-pricing-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--samsung-gray-200);
}

.samsung-price-container {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.samsung-original-price {
    color: var(--samsung-gray-500);
    font-size: 1.1rem;
    text-decoration: line-through;
}

.samsung-current-price {
    color: var(--samsung-primary);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.samsung-savings {
    display: inline-block;
}

.samsung-save-text {
    background: linear-gradient(135deg, var(--samsung-success) 0%, #388E3C 100%);
    color: var(--samsung-white);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Description */
.samsung-description {
    flex: 1;
}

.samsung-description-title {
    color: var(--samsung-gray-900);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1rem;
}

.samsung-description-text {
    color: var(--samsung-gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Action Buttons */
.samsung-actions {
    margin-top: auto;
    padding-top: 24px;
}

.samsung-primary-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.samsung-btn {
    position: relative;
    border: none;
    border-radius: var(--samsung-radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--samsung-transition);
    overflow: hidden;
    user-select: none;
}

.samsung-btn-primary {
    background: linear-gradient(135deg, var(--samsung-primary) 0%, var(--samsung-primary-light) 100%);
    color: var(--samsung-white);
    padding: 14px 24px;
    flex: 1;
}

.samsung-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--samsung-shadow-md);
    color: var(--samsung-white);
}

.samsung-btn-secondary {
    background: var(--samsung-gray-100);
    color: var(--samsung-gray-700);
    padding: 14px 16px;
    border: 1px solid var(--samsung-gray-300);
}

.samsung-btn-secondary:hover {
    background: var(--samsung-gray-200);
    transform: translateY(-2px);
    box-shadow: var(--samsung-shadow-sm);
}

.samsung-btn-disabled {
    background: var(--samsung-gray-300);
    color: var(--samsung-gray-500);
    padding: 14px 24px;
    flex: 1;
    cursor: not-allowed;
}

.samsung-btn-icon {
    margin-right: 8px;
    font-size: 1rem;
}

.samsung-btn-text {
    position: relative;
    z-index: 1;
}

/* WhatsApp Button */
.samsung-whatsapp-link {
    display: block;
    background: linear-gradient(135deg, var(--samsung-whatsapp) 0%, #20A85A 100%);
    color: var(--samsung-white);
    padding: 14px 20px;
    border-radius: var(--samsung-radius-sm);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: var(--samsung-transition);
}

.samsung-whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--samsung-shadow-md);
    color: var(--samsung-white);
}

.samsung-whatsapp-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.samsung-whatsapp-content i {
    font-size: 1.2rem;
}

/* Modal Footer */
.samsung-modal-footer {
    position: relative;
    background: var(--samsung-gray-50);
    border-top: 1px solid var(--samsung-gray-200);
    padding: 20px 24px;
}

.samsung-footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--samsung-accent) 50%, 
        transparent 100%);
}

.samsung-footer-content {
    text-align: center;
}

.samsung-btn-outline {
    background: transparent;
    border: 2px solid var(--samsung-primary);
    color: var(--samsung-primary);
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: var(--samsung-transition);
}

.samsung-btn-outline:hover {
    background: var(--samsung-primary);
    color: var(--samsung-white);
    transform: translateY(-2px);
    box-shadow: var(--samsung-shadow-md);
}

.samsung-btn-arrow {
    transition: var(--samsung-transition);
}

.samsung-btn-outline:hover .samsung-btn-arrow {
    transform: translateX(4px);
}

/* Ripple Effects */
.samsung-btn-ripple,
.samsung-whatsapp-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.samsung-btn:active .samsung-btn-ripple,
.samsung-whatsapp-link:active .samsung-whatsapp-ripple {
    width: 300px;
    height: 300px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .samsung-quick-view-modal .modal-dialog {
        max-width: 90vw;
        margin: 0.5rem;
    }
    
    .samsung-modal-body {
        padding: 24px 16px;
    }
    
    .samsung-image-container {
        min-height: 300px;
    }
    
    .samsung-product-title {
        font-size: 1.5rem;
    }
    
    .samsung-current-price {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .samsung-quick-view-modal .modal-dialog {
        margin: 0;
        max-width: 100vw;
        height: 100vh;
    }
    
    .samsung-modal {
        height: 100%;
        border-radius: 0;
    }
    
    .samsung-modal-body {
        padding: 16px;
        overflow-y: auto;
        max-height: calc(100vh - 140px);
    }
    
    .samsung-image-container {
        min-height: 250px;
    }
    
    .samsung-primary-buttons {
        flex-direction: column;
    }
    
    .samsung-btn-primary {
        width: 100%;
    }
    
    .samsung-meta-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

/* Animation Classes */
.samsung-modal.show {
    animation: samsung-modal-show 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes samsung-modal-show {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Loading States */
.samsung-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.samsung-btn.loading .samsung-btn-text {
    opacity: 0;
}

.samsung-btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: samsung-spin 1s linear infinite;
}

@keyframes samsung-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Accessibility Improvements */
.samsung-btn:focus,
.samsung-whatsapp-link:focus {
    outline: 2px solid var(--samsung-accent);
    outline-offset: 2px;
}

.samsung-close-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --samsung-gray-100: #E8E8E8;
        --samsung-gray-200: #D0D0D0;
        --samsung-gray-300: #B8B8B8;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sm--button {
    background: #1a1a1a;
    color: #f7f7f7;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 32px;
    font-family: 'Samsung Sharp Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.sm--button__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.sm--button:hover {
    background: linear-gradient(90deg, #2F3D5C, #1C2640);
    box-shadow: 0 6px 12px rgba(66, 90, 139, 0.4);
    transform: translateY(-2px);
}

.sm--button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(66, 90, 139, 0.2);
}

.deal-of-day-section {
    background: #f8faff; /* Light Samsung blue tone */
    padding: 40px 0;
    border-radius: 12px;
}

.samsung-title {
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 15px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.samsung-title .column h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1C2640;
    margin: 0;
}

.samsung-title .column span {
    display: block;
    font-size: 16px;
    color: #425A8B;
    margin-top: 4px;
}

.samsung-title .right-area {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.samsungg_up .column h4 {
    font-size: 18px;
    color: #1C2640;
    margin: 0;
}

.samsungg_up .column p {
    font-size: 14px;
    color: #6C7A93;
    margin: 0;
}

.countdown {
    display: flex;
    gap: 10px;
    /* background: #fff; */
    /* border-radius: 8px; */
    padding: 8px 14px;
    font-weight: bold;
    font-size: 16px;
    color: #1C2640;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); */
}

.right_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #425A8B;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.right_link:hover {
    color: #2F3D5C;
}

/* Campaign items layout */
.campaign-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.campaign-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.campaign-item img {
    width: 100%;
    height: auto;
    display: block;
}

.campaign-item-content {
    padding: 15px;
}

.campaign-item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1C2640;
    margin-bottom: 8px;
}

.campaign-item-price {
    font-size: 18px;
    font-weight: bold;
    color: #e53935;
}

/* Left column main deal */
.deal-highlight {
    border: 3px solid #1C2640;
    padding: 12px;
    border-radius: 14px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .samsung-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.nv18-quick-filter__inner {
    position: relative;
    margin: 0 auto
}

.nv18-quick-filter__headline {
    padding: 0 24px;
    margin: 0 auto;
    max-width: 1440px;
    font-weight: 700;
    font-family: 'SamsungSharpSans',arial,sans-serif;
    font-size: 40px;
    line-height: 1.33
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-vertical>.swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide,.swiper-wrapper {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.swiper-container-multirow>.swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.swiper-container-multirow-column>.swiper-wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-container-free-mode>.swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide {
    height: auto
}

.swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height,-webkit-transform;
    transition-property: height,-webkit-transform;
    transition-property: transform,height;
    transition-property: transform,height,-webkit-transform
}

.swiper-container-3d {
    -webkit-perspective: 1200px;
    perspective: 1200px
}

.swiper-container-3d .swiper-wrapper,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d
}

.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
    background-image: linear-gradient(to left,rgba(0,0,0,0.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
    background-image: linear-gradient(to right,rgba(0,0,0,0.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
    background-image: linear-gradient(to top,rgba(0,0,0,0.5),rgba(0,0,0,0))
}

.swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
    background-image: linear-gradient(to bottom,rgba(0,0,0,0.5),rgba(0,0,0,0))
}

.swiper-container-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}


.nv18-quick-filter__inner {
    padding: 6px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.nv18-quick-filter__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(220, 53, 69, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.nv18-quick-filter__headline {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #212529;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 2;
}

.nv18-quick-filter__headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6f42c1);
    border-radius: 2px;
}

.nv18-quick-filter__item {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.nv18-quick-filter__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.nv18-quick-filter__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.nv18-quick-filter__link:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 5px 15px rgba(0, 123, 255, 0.2);
    background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
    border-color: rgba(0, 123, 255, 0.2);
    text-decoration: none;
    color: inherit;
}

.nv18-quick-filter__link:hover::before {
    left: 100%;
}

.nv18-quick-filter__image {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    position: relative;
    transition: transform 0.3s ease;
}

.nv18-quick-filter__link:hover .nv18-quick-filter__image {
    transform: scale(1.1) rotateY(5deg);
}

.nv18-quick-filter__image .image {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nv18-quick-filter__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.nv18-quick-filter__name-wrap {
    text-align: center;
    width: 100%;
}

.nv18-quick-filter__name {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    color: #212529;
    margin: 0;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.nv18-quick-filter__link:hover .nv18-quick-filter__name {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nv18-quick-filter__headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .nv18-quick-filter__headline {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .nv18-quick-filter__link {
        min-height: 140px;
        padding: 20px 10px;
    }
    
    .nv18-quick-filter__image {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .nv18-quick-filter__inner {
        padding: 40px 0;
    }
    
    .nv18-quick-filter__headline {
        font-size: 1.8rem;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }
    
    .nv18-quick-filter__link {
        min-height: 120px;
        padding: 15px 8px;
    }
    
    .nv18-quick-filter__image {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .nv18-quick-filter__name {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .nv18-quick-filter__headline {
        font-size: 1.5rem;
    }
    
    .nv18-quick-filter__link {
        min-height: 100px;
        padding: 12px 6px;
    }
    
    .nv18-quick-filter__image {
        width: 50px;
        height: 50px;
    }
    
    .nv18-quick-filter__name {
        font-size: 11px;
    }
}


/* Base Card Styling */
.samsung__card {
        background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);

    border-radius: 10px;
    overflow: hidden;
    /* transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    height: 100%;
}

.samsung__card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Product Card Image Container */
.samsung__card-image-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f4 100%);
    /* padding: 40px 20px; */
    text-align: center;
    /* min-height: 320px; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.samsung__card-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, transparent 70%);
    pointer-events: none;
}

.samsung__card-image {
    max-width: 85%;
    max-height: 240px;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
    transition: transform 0.3s ease;
    position: relative;
    background: radial-gradient(circle at center, rgba(255,255,255,0.8) 0%, transparent 70%);

    z-index: 1;
}

/* .samsung__card:hover .samsung__card-image {
    transform: scale(1.05);
} */

/* Product Card Info */
.samsung__card-info {
    padding: 32px 24px;
    text-align: center;
    background: #f7f7f7;
}

.samsung__card-name {
    font-family: 'Samsung Sharp Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Buy Now Button */
.buy-now-btn {
    background: #1a1a1a;
    color: #f7f7f7;
    border: none;
    padding: 14px 28px;
    border-radius: 28px;
    font-family: 'Samsung Sharp Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.buy-now-btn a {
    color: #f7f7f7 !important;
    text-decoration: none !important;
}

.buy-now-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Special Card (Unpacked Replay) */
.special-card {
    background: url('{{ asset("assets/images/ui/Replay_Galaxy-Z-Flip7_Home_Feature_Card_560x560 (1).avif") }}') no-repeat center center;
    background-size: cover;
    color: white;
    position: relative;
    overflow: hidden;
}

.special-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.special-content {
    padding: 40px 20px;
    min-height: 400px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Special Card Text */
.special-title {
    font-family: 'Samsung Sharp Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
    letter-spacing: -0.02em;
    position: relative;
}

.special-subtitle {
    font-family: 'Samsung Sharp Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 32px;
    position: relative;
}

/* Watch Now Button */
.watch-now-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #f7f7f7;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    border-radius: 28px;
    font-family: 'Samsung Sharp Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
    position: relative;
}

.watch-now-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* View All Button */
.view-all-btn {
    background: #1a1a1a;
    color: #f7f7f7;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 32px;
    font-family: 'Samsung Sharp Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.view-all-btn:hover {
    background: #333333;
    color: #f7f7f7;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .samsung__card-image-container {
        min-height: 280px;
        padding: 30px 15px;
    }
    
    .samsung__card-image {
        max-height: 200px;
    }
    
    .special-content {
        min-height: 350px;
        padding: 30px 15px;
    }
    
    .special-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .samsung__card-image-container {
        min-height: 240px;
        padding: 25px 15px;
    }
    
    .samsung__card-image {
        max-height: 180px;
    }
    
    .samsung__card-info {
        padding: 24px 20px;
    }
    
    .samsung__card-name {
        font-size: 1.2rem;
    }
    
    .special-content {
        min-height: 300px;
        padding: 25px 15px;
    }
}

@media (max-width: 576px) {
    .row.g-4 {
        gap: 1.5rem;
    }
    
    .samsung__card {
        margin-bottom: 20px;
    }
    
    .samsung__card-image-container {
        min-height: 200px;
        padding: 20px 10px;
    }
    
    .samsung__card-image {
        max-height: 150px;
    }
    
    .special-content {
        min-height: 280px;
        padding: 20px 10px;
    }
}

/* Animation for smooth loading */
/* @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* .samsung__card {
    animation: fadeInUp 0.6s ease-out;
} */

/* .samsung__card:nth-child(2) { animation-delay: 0.1s; }
.samsung__card:nth-child(3) { animation-delay: 0.2s; }
.samsung__card:nth-child(4) { animation-delay: 0.3s; } */

.text-block-container {
    position: relative;
    display: block;
    direction: ltr;
    text-align: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.text-color--black {
    color: #000 !important;
}
@media only screen and (min-width: 768px) and (max-width: 1440px) {
    .text-block-container__title-wrap {
        padding-top: 3.33333333vw;
    }
}
.text-block-container__title-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    /* max-width: 1440px; */
    padding-top: 48px;
}
@media only screen and (min-width: 768px) and (max-width: 1440px) {
    .text-block-container__headline-wrap {
        min-height: 3.33333333vw;
        margin-bottom: 1.11111111vw;
    }
}
.text-block-container__headline-wrap {
    overflow: hidden;
    min-height: 48px;
    margin-bottom: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 1440px) {
    .text-block-container__headline {
        max-width: 96.66666667vw;
        font-size: 2.63888889vw;
    }
}

.text-block-container__headline {
    position: relative;
    width: 100%;
    max-width: 1392px;
    margin: 0 auto;
    font-family: 'SamsungSharpSans', arial, sans-serif;
    font-size: 38px;
    font-weight: bold;
    line-height: 1.2;
    overflow: visible;
    word-break: keep-all;
    text-align: center;
    text-overflow: clip;
}
.text-block-container {
    position: relative;
    display: block;
    direction: ltr;
    text-align: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.banner-image {
    position: relative;
}

.banner-image img {
    display: block;
    width: 100%;
    height: auto;
}

.overlay-text {
    position: absolute;
    bottom: 15px; /* distance from bottom */
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    background: rgba(0, 0, 0, 0.4); /* semi-transparent background */
    padding: 8px 15px;
    border-radius: 5px;
}
