body {
    font-family: 'SackersGothicStd', sans-serif !important;
}

/* For whole website */

a {
    color: black;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 15px;
}

h6 {
    font-size: 13px;
}

p {
    font-size: 14px;
}


/* accordion slider */

.accordion-button:not(.collapsed) {
    color: black;
    background-color: white;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

.accordion {
    --bs-accordion-btn-focus-box-shadow: black;
}

.accordion-slider a {
    pointer-events: auto !important;
    opacity: 1 !important;
    cursor: pointer !important;
  }


/* Radio */

/* Remove default styles */
input[type="checkbox"],
input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 4px;
    /* Checkbox: square with slightly rounded corners */
    background-color: white;
    cursor: pointer;
    position: relative;
    margin-right: 8px;
    vertical-align: middle;
    transition: background-color 0.2s, border-color 0.2s;
}

/* Radio buttons should be round */
input[type="radio"] {
    border-radius: 50%;
}

/* Checked state for checkbox */
input[type="checkbox"]:checked {
    background-color: #ae160f;
    /* red */
    border-color: #ae160f;
}

/* Tick mark for checkbox */
input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Checked state for radio button */
input[type="radio"]:checked {
    background-color: #ae160f;
    /* green */
    border-color: #ae160f;
}

/* Dot for selected radio */
input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 4.3px;
    left: 4.3px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Index Page Starts */

/* Header Starts */

/* Hover effects */
.hover-gray:hover {
    color: #d1d5db !important;
  }
  
  .hover-red:hover {
    color: #fca5a5 !important;
  }
  
  .hover-wishlist:hover {
    background-color: white;
    border-color: black !important;
  }
  
  /* Mobile menu animations - MODIFIED: Added width: 70% for mobile menu */
  .mobile-menu-checkbox {
    display: none;
  }
  
  .mobile-menu {
    width: 70%; /* CHANGED: Set to 70% width instead of w-100 class */
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }
  
  .mobile-menu-checkbox:checked ~ .mobile-menu {
    transform: translateX(0);
  }
  
  .mobile-menu-checkbox:checked ~ header .menu-icon {
    display: none;
  }
  
  .mobile-menu-checkbox:checked ~ header .close-icon {
    display: block !important;
  }
  
  /* Mobile submenu animations */
  .submenu-checkbox {
    display: none;
  }
  
  .mobile-submenu {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  
  .submenu-checkbox:checked ~ .mobile-submenu {
    height: auto; /* CHANGED: from height: 1500px to height: auto */
    max-height: 1500px; /* ADDED: max-height to prevent it from getting too tall */
    opacity: 1;
    padding-bottom: 1rem;
    padding-left: 1rem;
    overflow: visible;
  }
  
  .submenu-checkbox:checked ~ .submenu-label .chevron {
    transform: rotate(180deg);
  }
  
  .chevron {
    transition: transform 0.2s ease-in-out;
  }
  
  /* Mega Menu img */
  
  #mega_menu_product_img {
    height: 300px;
  }
  
  /* Desktop mega menu hover effects */
  .dropdown-hover {
    position: static;
  }
  
  .mega-menu-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease-in-out;
    pointer-events: none;
    z-index: 1040;
  }
  
  .dropdown-hover:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }
  
  /* Keep mega menu visible when hovering over it */
  .mega-menu-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }
  
  /* Link hover effects */
  .mega-menu-link:hover {
    color: #6b7280 !important;
  }
  
  .mobile-menu-link:hover {
    color: white !important;
  }
  
  /* Product card styles */
  .megamenu-product-card {
    transition: transform 0.2s ease-in-out;
    cursor: pointer;
  }
  
  .megamenu-product-card:hover {
    transform: translateY(-2px);
  }
  
  .product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  /* Mobile product card styles */
  .mobile-product-card {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .mobile-product-image {
    height: 300px;
    object-fit: cover;
    border-radius: 4px;
  }
  
  .product-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.25rem;
    line-height: 1.2;
    text-align: center;
    padding-top: 10px;
  }
  
  .mobile-product-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 0.25rem;
    margin-top: 0.5rem;
    line-height: 1.2;
    text-align: center;
  }
  
  .product-subtitle {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.2;
    text-align: center;
  }
  
  .mobile-product-subtitle {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.2;
    text-align: center;
  }
  
  /* Custom scrollbar for mobile menu */
  .overflow-auto::-webkit-scrollbar {
    width: 4px;
  }
  
  .overflow-auto::-webkit-scrollbar-track {
    background: #374151;
  }
  
  .overflow-auto::-webkit-scrollbar-thumb {
    background: #6b7280;
    border-radius: 2px;
  }
  
  .overflow-auto::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
  }
  
  /* Button reset */
  .btn-link {
    border: none !important;
    text-decoration: none !important;
  }
  
  .btn-link:focus {
    box-shadow: none !important;
  }
  
  /* Ensure proper z-index */
  .mobile-menu {
    z-index: 1060;
  }
  
  /* Gap utility classes */
  .gap-1 {
    gap: 0.25rem !important;
  }
  
  .gap-2 {
    gap: 0.5rem !important;
  }
  
  .gap-3 {
    gap: 1rem !important;
  }
  
  .gap-4 {
    gap: 1.5rem !important;
  }
  
  /* Mega menu container */
  .mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .text-center {
    color: white;
  }
  
  /* Header Ends */

/* Mega Menu Starts */



/* Mega Menu CSS Ends */


/* Mega Menu Ends */


/* New In starts */

#new_in_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 100px;
    margin-bottom: 100px;
    /* padding-left: 30px;
    padding-right: 30px; */
}

#new_in_main {
    height: auto;
    background-color: none;
    float: left;
    /* padding-left: 40px;
    padding-right: 50px; */
}

#new_in_l {
    height: auto;
    background-color: none;
    float: left;
    padding-right: 10px;
}

#new_in_l h4 {
    padding-top: 70px;
}

#new_in_l h3 {

    font-size: 48px;
}

#new_in_l p {
    font-size: 16px;
}

#new_in_l button {
    height: 40px;
    width: 60%;
    background-color: black;
    color: white;
    border: none;
    font-size: 14px;
    border-radius: 2px;

}

#new_in_l button:hover {
    height: 40px;
    width: 60%;
    background-color: #ae160f;
    color: white;
    border: none;
    font-size: 14px;
    border-radius: 2px;

}

#new_in_mobile_button {
    display: none;
}

#new_in_r {
    height: auto;
    background-color: none;
    float: left;
}

/* New In R right side starts */

/* you may like ccopy for new in r  starts*/

#new_in_r_bg {
    height: auto;
    background-color: none;
    float: left;
}

#new_in_r_main {
    height: auto;
    background-color: none;
    float: left;
}

/* you may like ccopy for new in r ends */

/*  New in r right side ends */



/*  */

#productSlider {
    scroll-behavior: smooth;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0px 0px;
}

.product-card {
    width: 25%;
    padding: 0 8px;
    flex-shrink: 0;
    background: none;
    border: none;
}

.new_in_r_products_main {
    padding: 0;
    border: none;
    background: none;
}

.new_in_r_products_img_one {
    height: auto;
    border: none;
    background: none;
}

.slider-nav-btn {
    position: absolute;
    top: 35%;
    z-index: 5;
    background-color: white;
    border: none;
    padding: 10px;
    /* border-radius: 50%; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#prevBtnNewIn {
    left: 8px;
}

#nextBtnNewIn {
    right: 8px;
}

.slider-nav-btn i {
    color: black;
    font-size: 16px;
}

@media (max-width: 768px) {
    .product-card {
        width: 40%;
        /* shows approx. 2.5 items */
    }

    #prevBtnNewIn,
    #nextBtnNewIn {
        display: none !important;
    }
}

#productSlider::-webkit-scrollbar {
    display: none;
}

/*  */

/* New In ends */


/* Hide scroll bar */
.designer-slider::-webkit-scrollbar {
    display: none;
  }
  .designer-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  
  /* Mobile view: 2.5 items visible */
  @media (max-width: 767.98px) {
    .designer-slider .col-6 {
      flex: 0 0 auto;
      width: 40%; /* 100 / 2.5 = 40% */
    }
  }
  
  /* Desktop view: 6 items (col-md-2 means 12/2 = 6) */

/* Slider Starts */

#slider {
    height: auto;
    background-color: none;
    float: left;
    padding: 0;
    margin: 0;
}


#contact_slider {
    height: auto;
    background-color: none;
    float: left;
    padding: 0;
    margin: 0;
}


#slider img {
    height: 100vh;
    object-fit: cover;
}

#homepagemyVideo {
    height: 810px;
    /* Set the desired height */
    width: 100%;
    /* Maintain aspect ratio */
    object-fit: cover;
    /* Ensures it fills the container without distortion */
}

#slider_overlay {
    height: 810px;
    float: left;
    opacity: 0.5;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.4s ease-in-out;
    margin-top: -817px;
}

#slider_button_red_l {
    height: 40px;
    width: 250px;
    background-color: white;
    color: black;
    /* border-radius: 10px; */
    border: none;
    font-size: 15px;
    margin-top: 10px;
    /* padding: 10px 20px 20px 20px; */
}

#slider_button_red_l:hover {
    background-color: #ae160f;
    color: white;
}

#slider_button_red {
    height: 40px;
    width: 200px;
    background-color: black;
    color: white;
    /* border-radius: 10px; */
    border: none;
    font-size: 12px;
    margin-top: 5px;
    padding: 10px 20px 10px 20px;
}

#slider_button_red:hover {
    background-color: #ae160f;
    color: white;
}

#slider_button_red_r {
    height: 40px;
    width: 200px;
    background-color: white;
    color: black;
    /* border-radius: 10px; */
    border: none;
    font-size: 12px;
    margin-top: 5px;
    padding: 10px 20px 10px 20px;
}

#slider_button_red_r:hover {
    background-color: #ae160f;
    color: white;
}

#slider_text {
    height: auto;
    background-color: none;
    float: left;
    position: relative;
    z-index: 1;
    padding-left: 50px;
    margin-top: -300px;
    color: white;
}

#contact_slider_text {
    height: auto;
    background-color: none;
    float: left;
    position: relative;
    z-index: 1;
    padding-left: 130px;
    margin-top: -80px;

    color: white;
}

#slider_logo_img {
    height: 23px;
    width: 120px;
    margin-top: -7px;
    margin-left: 5px;
}

#slider_heading {
    font-size: 32px;
}

#slider_subheading {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Slider Ends */


/* Slider 2 Starts */

#slider_two {
    height: auto;
    background-color: none;
    float: left;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}


#contact_slider_two {
    height: auto;
    background-color: none;
    float: left;
}


#slider_two img {
    height: auto;
    object-fit: cover;
}

#slider_two_button_red_l {
    height: auto;
    background-color: transparent;
    color: white;
    border-radius: 2px;
    border: none;
    font-size: 14px;
    margin-top: 10px;
    padding: 11px 16px;
    line-height: 17.5px;
    border: 1px solid rgba(255, 255, 255, 1);
    margin-right: 10px;
}

#slider_two_button_red_l:hover {
    background-color: #ae160f;
    color: white;
}

#slider_two_button_red_r {
    height: 40px;
    width: 200px;
    background-color: white;
    color: black;
    /* border-radius: 10px; */
    border: none;
    font-size: 12px;
    margin-top: 5px;
    padding: 10px 20px 10px 20px;
}

#slider_two_button_red_r:hover {
    background-color: #ae160f;
    color: white;
}

#slider_two_text {
    height: auto;
    background-color: none;
    float: left;
    position: relative;
    z-index: 1;
    padding-left: 50px;
    margin-top: -290px;
    color: white;
    text-align: center;
}

#contact_slider_two_text {
    height: auto;
    background-color: none;
    float: left;
    position: relative;
    z-index: 1;
    padding-left: 130px;
    margin-top: -80px;
    color: white;
}

#slider_two_heading {
    font-size: 80px;
}

#slider_two_subheading {
    font-size: 20px;
    margin-top: -15px;
    padding-bottom: 10px;
}

#slider_two_terms {
    font-size: 12px;
    margin-top: 15px;
    padding-bottom: 10px;
}

/* Slider 2 Ends */


/* Slider 3 Starts */

#slider_three {
    height: auto;
    background-color: none;
    float: left;
    padding: 0;
    margin: 0;
}


#contact_slider_three {
    height: auto;
    background-color: none;
    float: left;
    padding: 0;
    margin: 0;
}


#slider_three img {
    height: auto;
    object-fit: cover;
}

#homepagemyVideo {
    height: 810px;
    /* Set the desired height */
    width: 100%;
    /* Maintain aspect ratio */
    object-fit: cover;
    /* Ensures it fills the container without distortion */
}

#slider_three_overlay {
    height: 810px;
    float: left;
    opacity: 0.5;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.4s ease-in-out;
    margin-top: -817px;
}

#slider_three_button_red_l {
    height: 40px;
    width: 250px;
    background-color: white;
    color: black;
    /* border-radius: 10px; */
    border: none;
    font-size: 15px;
    margin-top: 10px;
    /* padding: 10px 20px 20px 20px; */
}

#slider_three_button_red_l:hover {
    background-color: #ae160f;
    color: white;
}

#slider_three_button_red_r {
    height: 40px;
    width: 200px;
    background-color: white;
    color: black;
    /* border-radius: 10px; */
    border: none;
    font-size: 12px;
    margin-top: 5px;
    padding: 10px 20px 10px 20px;
}

#slider_three_button_red_r:hover {
    background-color: #ae160f;
    color: white;
}

#slider_three_text {
    height: auto;
    background-color: none;
    float: left;
    position: relative;
    z-index: 1;
    padding-left: 50px;
    margin-top: -170px;
    color: white;
}

#contact_slider_three_text {
    height: auto;
    background-color: none;
    float: left;
    position: relative;
    z-index: 1;
    padding-left: 130px;
    margin-top: -80px;

    color: white;
}

#slider_three_logo_img {
    height: 23px;
    width: 120px;
    margin-top: -7px;
    margin-left: 5px;
}

#slider_three_heading {
    font-size: 32px;
}

#slider_three_subheading {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Slider 3 Ends */


/* All eyes starts */

#all_eyes_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 100px;
    margin-bottom: 100px;
    /* padding-left: 30px;
    padding-right: 30px; */
}

#all_eyes_main {
    height: auto;
    background-color: none;
    float: left;
    /* padding-left: 40px;
    padding-right: 50px; */
}

#all_eyes_l {
    height: auto;
    background-color: none;
    float: left;
    padding-right: 10px;
}

#all_eyes_l h4 {
    padding-top: 70px;
}

#all_eyes_l h3 {

    font-size: 48px;
}

#all_eyes_l p {
    font-size: 16px;
}

#all_eyes_l button {
    height: 40px;
    width: 60%;
    background-color: black;
    color: white;
    border: none;
    font-size: 14px;
    border-radius: 2px;

}

#all_eyes_l button:hover {
    height: 40px;
    width: 60%;
    background-color: #ae160f;
    color: white;
    border: none;
    font-size: 14px;
    border-radius: 2px;

}

#all_eyes_mobile_button {
    display: none;
}

#all_eyes_r {
    height: auto;
    background-color: none;
    float: left;
}

/* New In R right side starts */

/* you may like ccopy for new in r  starts*/

#all_eyes_r_bg {
    height: auto;
    background-color: none;
    float: left;
}

#all_eyes_r_main {
    height: auto;
    background-color: none;
    float: left;
}

/* you may like ccopy for new in r ends */

/*  New in r right side ends */



/*  */

#all_eyes_productSlider {
    scroll-behavior: smooth;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0px 0px;
}

.all_eyes_product-card {
    width: 25%;
    padding: 0 8px;
    flex-shrink: 0;
    background: none;
    border: none;
}

.all_eyes_r_products_main {
    padding: 0;
    border: none;
    background: none;
}

.all_eyes_r_products_img_one {
    height: auto;
    border: none;
    background: none;
}

.all_eyes_slider-nav-btn {
    position: absolute;
    top: 35%;
    z-index: 5;
    background-color: white;
    border: none;
    padding: 10px;
    /* border-radius: 50%; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#all_eyes_prevBtnNewIn {
    left: 8px;
}

#all_eyes_nextBtnNewIn {
    right: 8px;
}

.all_eyes_slider-nav-btn i {
    color: black;
    font-size: 16px;
}

@media (max-width: 768px) {
    .all_eyes_product-card {
        width: 40%;
        /* shows approx. 2.5 items */
    }

    #all_eyes_prevBtnNewIn,
    #all_eyes_nextBtnNewIn {
        display: none !important;
    }
}

#all_eyes_productSlider::-webkit-scrollbar {
    display: none;
}

/*  */

/* All eyes ends */

/* Categories Starts */


#categories_bg {
    height: auto;
    background-color: none;
    float: left;
}

.categories_main_bg {
    height: auto;
    background-color: none;
    float: left;
    padding: 10px;
}

.categories_main {
    height: auto;
    background-color: none;
    float: left;
}

.categories_main h4 {
    color: white;
    margin-top: 350px;
    margin-left: 20px;
}

.categories_img_one,
.categories_img_two {
    height: auto;
    object-fit: cover;
    /* or 'contain' based on need */
}

.categories_img_two {
    display: none;
}

.categories_main_content {
    height: 50px;
    background-color: none;
    float: left;
    margin-top: -50px;
    padding-left: 20px;
    color: white;
}

/* Categories Ends */

/* Image slider Starts */

#image_slider {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 50px;
    padding-bottom: 50px;
}

#image_slider_heading{
    height: auto;
    background-color: none;
    float: left;
    margin-top: -480px;
    position: relative;
    padding-left: 40px;
}

#image_slider_heading h2{
    font-size: 80px;
}

#image_slider_down_text{
    height: auto;
    background-color: none;
    float: left;
}

#image_slider_text_bg{
    height: auto;
    background-color: none;
    float: left;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

#image_slider_text_main{
    height: auto;
    background-color: none;
    float: left;
}


#image_slider_text_l{
    height: auto;
    background-color: none;
    float: left;
    padding-bottom: 50px;
}

#image_slider_text_r{
    height: auto;
    background-color: none;
    float: left;
    padding-bottom: 50px;
}

/* Accordion Slider width set to 100% */
.accordion-slider {
    width: 100% !important;
    max-width: 100% !important;
    /* Adjust as needed */
}

/* Image slider Ends */

/* Best SEllers Starts */

#best_sellers_bg {
    height: auto;
    background-color: none;
    float: left;
    /* padding-left: 20px;
    padding-right: 20px; */
    padding-top: 50px;
    padding-bottom: 50px;
}

#best_sellers_heading {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
}

.best_sellers_main_bg {
    height: auto;
    background-color: none;
    float: left;
    padding: 10px;

}

.best_sellers_main {
    height: auto;
    background-color: none;
    float: left;
}

.best_sellers_main h4 {
    color: white;
    margin-top: 350px;
    margin-left: 20px;
}

#best_sellers_tag {
    height: 50px;
    background-color: none;
    float: left;
    margin-top: -390px;
    padding-left: 10px;
}

#best_sellers_tag button {
    border-radius: 20px;
}

.best_sellers_img_one {
    display: block;
}

.best_sellers_img_two {
    display: none;
}

.best_sellers_img_one,
.best_sellers_img_two {
    height: auto;
    object-fit: cover;
    /* or 'contain' based on need */
}

.best_sellers_main_content {
    height: auto;
    background-color: none;
    float: left;
    color: white;
    padding-top: 10px;
}

.best_sellers_main_content h6 {
    color: black;
    padding-top: 10px;
    font-size: 20px;
    margin-bottom: -3px;
}

.best_sellers_main_content p {
    color: black;
    font-size: 16px;
    padding-top: 10px;
}

.best_sellers_main_content span {
    color: black;
    font-size: 14px;
    text-decoration: underline;
}

#best_sellers_button_bg {
    height: 100px;
    background-color: none;
    float: left;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#best_sellers_button {
    height: 40px;
    width: auto;
    background-color: black;
    color: white;
    border: none;
    margin-top: 5px;
    padding: 20px;
}

#best_sellers_button:hover {
    background-color: #ae160f;
    color: white;
}

/* Best SEllers Ends */


/*  NEw Arrivals Starts */

#new_arrivals_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-bottom: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

#new_arrivals_heading {
    height: auto;
    background-color: none;
    float: left;
}

.new_arrivals_main_bg {
    height: auto;
    background-color: none;
    float: left;
    padding: 10px;

}

.new_arrivals_main {
    height: auto;
    background-color: none;
    float: left;
}

.new_arrivals_main:hover {
    opacity: 0.6;
}



.new_arrivals_main h4 {
    color: white;
    margin-top: 350px;
    margin-left: 20px;
}

#new_arrivals_tag {
    height: 50px;
    background-color: none;
    float: left;
    margin-top: -390px;
    padding-left: 10px;
}

#new_arrivals_tag button {
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.new_arrivals_img_one {
    display: block;
}

.new_arrivals_img_two {
    display: none;
}

.new_arrivals_img_one,
.new_arrivals_img_two {
    height: auto;
    object-fit: cover;
    /* or 'contain' based on need */
}

.new_arrivals_main_content {
    height: auto;
    background-color: none;
    float: left;
    color: white;
    padding-top: 10px;
}

.new_arrivals_main_content h6 {
    color: black;
    padding-top: 10px;
    font-size: 14px;
}

.new_arrivals_main_content span {
    color: black;
    font-size: 16px;
}

#new_arrivals_button_bg {
    height: 100px;
    background-color: none;
    float: left;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#new_arrivals_button {
    height: 40px;
    width: auto;
    background-color: black;
    color: white;
    border: none;
    margin-top: 5px;
    padding: 20px;
}

#new_arrivals_button:hover {
    background-color: #ae160f;
    color: white;
}


/* NEw Arrivals Ends */

/* Our Partners Starts */

#our_partners_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 50px;
}

#our_partners_heading {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
    padding-bottom: 10px;
}

#our_partners_span_red {
    color: red;
}

.our_partners_main_bg {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;

}

.our_partners_main {
    height: auto;
    background-color: none;
    float: left;
}

.our_partners_main h4 {
    color: white;
    margin-top: 350px;
    margin-left: 20px;
}

.our_partners_img_one {
    height: 400px;
    object-fit: cover;
    /* or 'contain' based on need */
}

#our_partners_tag {
    height: 360px;
    background-color: none;
    float: left;
    margin-top: -360px;
}

#our_partners_tag:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.4s ease-in-out;
}

#our_partners_tag button {
    height: auto;
    width: 200px;
    padding: 10px;
    font-size: 15px;
    background-color: none;
    color: white;
    border: 1px solid white;
    transition: color 0.4s ease-in-out;
    background: transparent;
    margin-top: 50%;
}

#our_partners_tag button:hover {
    background-color: white;
    color: black;
}

.our_partners_main_content {
    height: auto;
    background-color: none;
    float: left;
    padding-left: 20px;
    color: white;
    text-align: center;
    padding-top: 10px;
}

.our_partners_main_content h6 {
    color: black;
}

.our_partners_main_content span {
    color: #57aecf;
    font-size: 18px;
}

#our_partners_button_bg {
    height: 100px;
    background-color: none;
    float: left;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#our_partners_button {
    height: 40px;
    width: auto;
    background-color: black;
    color: white;
    border: none;
    margin-top: 5px;
    padding: 20px;
}

#our_partners_button:hover {
    background-color: #ae160f;
    color: white;
}


/* Our Partners Ends */


/* Gift CArds starts */

#gift_cards_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 50px;
    padding-bottom: 50px;
}

#gift_cards_heading {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
}

.gift_cards_main_bg {
    height: auto;
    background-color: none;
    float: left;
    padding: 10px;

}

.gift_cards_main {
    height: auto;
    background-color: none;
    float: left;
}

.gift_cards_main h4 {
    color: white;
    margin-top: 350px;
    margin-left: 20px;
}

.gift_cards_main_content {
    height: auto;
    background-color: none;
    float: left;
    padding-left: 20px;
    color: white;
    text-align: center;
    padding-top: 10px;
}

.gift_cards_main_content h6 {
    color: black;
}

.gift_cards_main_content span {
    color: #57aecf;
    font-size: 18px;
}

#gift_cards_button_bg {
    height: 100px;
    background-color: none;
    float: left;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#gift_cards_button {
    height: auto;
    width: auto;
    background-color: black;
    color: white;
    border: none;
    margin-top: 5px;
    padding: 15px;
    border-radius: 10px;
    font-size: 13px;
}

#gift_cards_button:hover {
    background-color: #ae160f;
    color: white;
}

.gift_cards_img_one {
    height: 600px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
}



/* Gift CArds ends */


/* Etsy Area starts */

#etsy_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 50px;
    padding-bottom: 50px;
}

#etsy_heading {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
    padding-bottom: 10px;
}

#etsy_span_red {
    color: red;
}

.etsy_main_bg {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;

}

.etsy_main {
    height: auto;
    background-color: none;
    float: left;
}

.etsy_img_one {
    height: auto;
    object-fit: cover;
    /* or 'contain' based on need */
}

.etsy_main h4 {
    color: white;
    margin-top: 350px;
    margin-left: 20px;
}

#etsy_tag {
    height: 360px;
    background-color: none;
    float: left;
    margin-top: -360px;
    display: none;
    transition: all 0.3s ease;
}

.etsy_main_bg:hover #etsy_tag {
    display: block;
}

#etsy_tag:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.4s ease-in-out;
}

#etsy_tag h6 {
    color: white;
    margin-top: 50%;
}

#etsy_tag p {
    color: #ccc;
}

#etsy_button_bg {
    height: 100px;
    background-color: none;
    float: left;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#etsy_button {
    height: 40px;
    width: auto;
    background-color: black;
    color: white;
    border: none;
    margin-top: 5px;
    padding: 20px;
}

#etsy_button:hover {
    background-color: #ae160f;
    color: white;
}


/* Etsy Area ends */

/* Amazon Area starts */

#amazon_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 50px;
}

#amazon_heading {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
    padding-bottom: 10px;
}

#amazon_span_red {
    color: red;
}

.amazon_main_bg {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;

}

.amazon_main {
    height: auto;
    background-color: none;
    float: left;
}

.amazon_img_one {
    height: auto;
    object-fit: cover;
    /* or 'contain' based on need */
}

.amazon_main h4 {
    color: white;
    margin-top: 350px;
    margin-left: 20px;
}

#amazon_tag {
    height: 360px;
    background-color: none;
    float: left;
    margin-top: -360px;
    display: none;
    transition: all 0.3s ease;
}

.amazon_main_bg:hover #amazon_tag {
    display: block;
}

#amazon_tag:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.4s ease-in-out;
}

#amazon_tag h6 {
    color: white;
    margin-top: 50%;
}

#amazon_tag p {
    color: #ccc;
}

/* Amazon Area ends */

/* Ebays Area Starts */

#ebay_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 50px;
}

#ebay_heading {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
    padding-bottom: 10px;
}

#ebay_span_red {
    color: red;
}

.ebay_main_bg {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;

}

.ebay_main {
    height: auto;
    background-color: none;
    float: left;
}

.ebay_img_one {
    height: auto;
    object-fit: cover;
    /* or 'contain' based on need */
}

#ebay_tag {
    height: 360px;
    background-color: none;
    float: left;
    margin-top: -360px;
    display: none;
    transition: all 0.3s ease;
}

.ebay_main_bg:hover #ebay_tag {
    display: block;
}

#ebay_tag:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.4s ease-in-out;
}

#ebay_tag h6 {
    color: white;
    margin-top: 50%;
}

#ebay_tag p {
    color: #ccc;
}

/* Ebays Area Ends */


/* Footer Starts  */


    /* Custom accordion button styling */
    .custom-accordion-btn {
        text-align: left;
        outline: none;
        box-shadow: none;
    }
    
    .custom-accordion-btn:focus {
        box-shadow: none;
        outline: none;
    }
    
    .custom-accordion-btn:hover {
        background-color: transparent !important;
    }
    
    /* Chevron positioning and animation */
    .chevron-icon {
        transition: transform 0.3s ease;
        font-size: 0.875rem;
        margin-left: auto;
    }
    
    @media (max-width: 767.98px) {
        .small {
            font-size: 0.875rem;
            line-height: 1.4;
        }
    }
    
    /* Ensure proper text wrapping on mobile */
    @media (max-width: 575.98px) {
        .small {
            word-wrap: break-word;
            hyphens: auto;
        }
    }


/* Footer Ends  */

/* Index Page Ends */






/* Category Page Starts */

#category_bg {
    height: auto;
    background-color: none;
    float: left;
}

#category_heading {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: 0.5px solid gray;
}

#category_heading h4{
    font: normal 24px / 30px Chronicle Display;
}

#category_main {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 50px;

}

#category_main_filter_bg {
    height: auto;
    background-color: none;
    float: left;

}

#category_main_products_bg {
    height: auto;
    background-color: none;
    float: left;
}

#category_main_filter_heading {
    height: auto;
    background-color: none;
    float: left;
    padding-left: 20px;
}

#category_main_filter_dropdown {
    height: auto;
    background-color: none;
    float: left;
}

#category_filter_category_list {
    height: auto;
    background-color: none;
    float: left;
}

#denim_filter_denim_list {
    height: auto;
    background-color: none;
    float: left;
    margin-bottom: 10px;
}

#gray_href {
    color: gray;
}

#clearDenimSelection {
    margin-top: 30px;
}

#color_filter_color_list {
    height: auto;
    background-color: none;
    float: left;
    margin-bottom: 10px;
}

#clearColorSelection {
    margin-top: 30px;
    margin-bottom: 10px;
}

#designer_filter_designer_list {
    height: auto;
    background-color: none;
    float: left;
    margin-bottom: 10px;
}

#clearDesignerSelection {
    margin-top: 30px;
    margin-bottom: 10px;
}

#size_filter_size_list {
    height: auto;
    background-color: none;
    float: left;
    margin-bottom: 10px;
}

#clearSizeSelection {
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Price slider starts  */

/* Styling for the range slider */

/* Styling for the range slider */
.priceSlider {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 10px;
    border-radius: 5px;
    background: #ddd;
    cursor: pointer;
    z-index: 2;
    /* Ensures the second slider is above the first one */
}

.priceSlider:focus {
    outline: none;
}

#priceSliderContainer {
    position: relative;
    width: 100%;
    height: 20px;
}

#priceMin {
    z-index: 1;
    /* The first slider (min) should be below the second one */
}

/* Price slider ends  */

#result {
    height: auto;
    background-color: none;
    float: left;
    padding: 5px;
    padding-left: 60px;
}

/* Products Starts  */

#category_products_bg {
    height: auto;
    background-color: none;
    float: left;
    padding: 15px 20px 20px 20px;
}

#category_products_heading {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
}

.category_products_main_bg {
    height: auto;
    background-color: none;
    float: left;
    padding: 10px;

}

.category_products_main {
    height: auto;
    background-color: none;
    float: left;
}

.category_products_img_one {
    display: block;
}

.category_products_img_two {
    display: none;
}

.category_products_img_one,
.category_products_img_two {
    height: auto;
    object-fit: cover;
    /* or 'contain' based on need */
}

.category_products_main h4 {
    color: white;
    margin-top: 350px;
    margin-left: 20px;
}

#category_products_tag {
    height: 50px;
    background-color: none;
    float: left;
    margin-top: -390px;
    padding-left: 10px;
}

#category_products_sizes_bg {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
    color: black;
    margin-top: -35px;
    /* padding: 10px; */
}

#category_products_sizes {
    height: auto;
    background-color: none;
    float: left;
}

/* Ensure the parent div has position relative */
.category_products_main_bg {
    position: relative;
}

/* Initially hide the sizes */
.sizes-overlay {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    top: 0;
    left: 0;
    background-color: rgba(255, 254, 254, 0.78);
    /* Semi-transparent background */
    color: white;
    /* padding: 10px; */
    width: 100%;
    height: 100%;
    z-index: 1;
    justify-content: center;
    align-items: center;
}

/* Show sizes on hover */
.category_products_main_bg:hover .sizes-overlay {
    display: flex;
    opacity: 1;
}

#category_products_size_one {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
}

#category_products_size_one:hover {
    background-color: white;
}

#category_products_size_two {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
}

#category_products_size_two:hover {
    background-color: white;
}

#category_products_size_three {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
}

#category_products_size_three:hover {
    background-color: white;
}

#category_products_size_four {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
}

#category_products_size_four:hover {
    background-color: white;
}

#category_products_size_five {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
}

#category_products_size_five:hover {
    background-color: white;
}

#category_products_size_six {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
}

#category_products_size_six:hover {
    background-color: white;
}

#category_products_tag button {
    border-radius: 20px;
}

.category_products_main_content {
    height: auto;
    background-color: none;
    float: left;
    color: white;
    padding-top: 10px;
    padding-bottom: 20px;
}

.category_products_main_content h6 {
    color: black;
    font-size: 14px;
    padding-top: 10px;
    /* margin-bottom: -3px; */
    font-weight: 700;
}

.category_products_main_content span {
    color: black;
    font-size: 14px;
    font-weight: 700;
}

#category_products_button_bg {
    height: 100px;
    background-color: none;
    float: left;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#category_products_button {
    height: 40px;
    width: auto;
    background-color: black;
    color: white;
    border: none;
    margin-top: 5px;
    padding: 20px;
}

#category_products_button:hover {
    background-color: #ae160f;
    color: white;
}

#category_product_rating {
    color: black;
}

#category_product_review_text {
    font-size: 13px;
}

/* Lazzy Load statrs */

.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load[src] {
    opacity: 1;
}



/* Lazy Load ends */

/* Products Ends  */

/* Other Categories Starts */

#other_category_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-bottom: 50px;
}

#other_category_paragraph {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 50px;
    padding-bottom: 20px;
}

#other_category_heading {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
    padding-bottom: 20px;
}

#other_category_image {
    height: auto;
    background-color: none;
    float: left;
}

#other_category_list_bg {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#other_category_list_one {
    height: auto;
    background-color: none;
    float: left;
    border: 1px solid grey;
    margin-top: 10px;
    padding-top: 15px;
    padding-bottom: 10px;
    color: black;
}

#other_category_list_shop {
    height: auto;
    background-color: black;
    float: left;
    border: 1px solid grey;
    margin-top: 10px;
    padding-top: 15px;
    padding-bottom: 10px;
    color: white;
}

#other_category_list_shop:hover {
    background-color: #ae160f;
}



/* Other Categories Ends */

/* Category Page Endss */


/* Collection Page Starts */

#collection_bg {
    height: auto;
    background-color: none;
    float: left;
}

#collection_heading {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#collection_main_filter_bg {
    height: auto;
    background-color: none;
    float: left;

}

#collection_main_products_bg {
    height: auto;
    background-color: none;
    float: left;
}

/* Products Starts  */

#collection_products_bg {
    height: auto;
    background-color: none;
    float: left;
    padding: 50px;
}

#collection_products_heading {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
}

.collection_products_main_bg {
    height: auto;
    background-color: none;
    float: left;
    padding: 10px;

}

.collection_products_main {
    height: auto;
    background-color: none;
    float: left;
}

.collection_products_main h4 {
    color: white;
    margin-top: 350px;
    margin-left: 20px;
}

#collection_products_tag {
    height: 50px;
    background-color: none;
    float: left;
    margin-top: -390px;
    padding-left: 10px;
}

#collection_products_sizes_bg {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
    color: black;
    margin-top: -35px;
    /* padding: 10px; */
}

#collection_products_title_bg {
    height: auto;
    background-color: none;
    float: left;
}

#collection_products_title {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 5px;
    padding-bottom: 5px;
    color: white;
}

#collection_products_tag button {
    border-radius: 20px;
}

.collection_products_img_one {
    display: block;
}

.collection_products_img_two {
    display: none;
}

.collection_products_main_content {
    height: auto;
    background-color: none;
    float: left;
    padding-left: 20px;
    color: white;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
}

.collection_products_main_content h6 {
    color: black;
    font-size: 14px;
}

.collection_products_main_content span {
    color: black;
    font-size: 14px;
}


/* Collection Page Ends */


/* Product Details Page Starts */



/* NEWW */

/* Mobile first: stacked layout (your original behavior) */
#product_wrapper {
    display: block;
  }
  
  /* Desktop and up: equal height side-by-side layout */
  @media (min-width: 768px) {
    #product_wrapper {
      display: flex;
      align-items: stretch;
    }
  
    #product_details_image,
    #product_details_description {
      /* flex: 1; */
      padding: 20px;
    }
  
    #product_details_description_main {
      position: sticky;
      top: 200px;
      height: 100vh;
      overflow-y: auto;
      padding-right: 10px;
  
      /* Hide scrollbar visually */
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
  
    #product_details_description_main::-webkit-scrollbar {
      display: none;
    }
  }
  

/* NEWW */



#product_details_description_title {
    height: auto;
    background-color: none;
    float: left;
}

#product_details_description_size {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 20px;
}

/* Modal Styling starts */

#modal_img {
    height: auto;
    background-color: none;
    float: left;
}

#modal_img img {
    height: auto;
    width: 100%;
}

#modal_table {
    height: auto;
    background-color: none;
    float: left;
    padding: 20px;
}

#table_heading {
    height: auto;
    background-color: none;
    float: left;
}

#table_data {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
}

#modal_note {
    height: auto;
    background-color: none;
    float: left;
}

/* Modal Styling ends */

#product_detail_size {
    height: auto;
    background-color: none;
    float: left;
}

/* Sizes Radio CSS starts */

/* Fieldset styling */
.variant-input-wrap {
    /* border: 2px solid #ddd; */
    padding: 10px;
    margin: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    border-radius: 5px;
}

/* Radio buttons hidden */
.variant-input-wrap input[type="radio"] {
    display: none;
}

/* Radio buttons hidden with improved accessibility */
.variant-input-wrap input {
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    overflow: hidden;
    position: absolute;
    height: 1px;
    width: 1px;
}

/* Label styling as buttons */
.variant__button-label {
    padding: 8px 16px;
    margin: 3px;
    background-color: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

/* Hover and active states */
.variant__button-label:hover {
    background-color: none;
}

.variant__button-label:active {
    transform: scale(0.98);
}

/* Checked state styling with blue background */
input[type="radio"]:checked+.variant__button-label {
    background-color: none;
    color: black;
    border-color: inherit;
}

/* Checked state with black border */
.variant-input-wrap input[type=radio]:checked+label {
    box-shadow: 0 0 0 2px #000;
}



/* Sizes Radio CSS ends*/


#product_details_description_quantity {
    height: auto;
    background-color: none;
    float: left;
}

#product_details_description_add_to_cart_button {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 20px;
    padding-bottom: 20px;
}

#p_add_to_cart {
    height: auto;
    background-color: none;
    float: left;
}

#p_add_to_cart button {
    height: 50px;
    width: 100%;
    background-color: black;
    float: left;
    color: white;
    border-radius: 2px;
    border: none;
    letter-spacing: .2em;
    /* font-size: 16px; */
}

#p_add_to_cart button:hover {
    background-color: #ae160f;
    color: white;
}

#p_add_to_wishlist {
    height: auto;
    background-color: none;
    float: left;
}

#p_add_to_wishlist button {
    height: 50px;
    width: 100%;
    background-color: black;
    float: left;
    color: white;
    border-radius: 2px;
    border: none;
    letter-spacing: .2em;
}

#p_add_to_wishlist button:hover {
    background-color: #ae160f;
    color: white;
}

#product_details_description_dropdown {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 20px;

}

/* how to wear starts */

#how_to_wear_bg {
    height: auto;
    background-color: white;
    float: left;
    padding-bottom: 50px;
    padding-top: 100px;
}

#how_to_wear_main {
    height: auto;
    background-color: none;
    float: left;
}

#how_to_wear_products {
    height: auto;
    background-color: none;
    float: left;
}

#how_to_wear_products_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-bottom: 20px;
}

#how_to_wear_products_img {
    height: auto;
    background-color: none;
    float: left;
}

#how_to_wear_products_img img {
    height: 180px;
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.how_to_wear_products_img_one {
    display: block;
}

.how_to_wear_products_img_two {
    display: none;
}

.how_to_wear_products_img_one,
.how_to_wear_products_img_two {
    height: auto;
    object-fit: cover;
    /* or 'contain' based on need */
}

#how_to_wear_products_description {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 10px;
    padding-left: 20px;
}

#how_to_wear_products_description_price {
    padding-top: 20px;
}

#how_to_wear_img {
    height: auto;
    background-color: none;
    float: left;
}

#how_to_wear_img img {
    height: 500px;
    object-fit: cover;
    /* or 'contain' based on need */
}

/* how to wear ends */

/* You may also like starts */

#you_may_also_like_bg {
    height: auto;
    background-color: white;
    float: left;
}

#you_may_also_like_main {
    height: auto;
    background-color: white;
    float: left;
}

#prevBtn {
    background-color: white;
    border: white;
}

#nextBtn {
    background-color: white;
    border: white;
}

#you_may_also_like_product {
    text-align: center;
    padding-bottom: 20px;
}

#you_may_also_like_product p {
    line-height: 16px !important;
    -webkit-line-clamp: 1;
    overflow: hidden;
    display: block;
    height: 16px;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #656565;
}

.you_may_also_like_products_main {
    height: auto;
    background-color: none;
    float: left;
    margin-bottom: 10px;
}

.you_may_also_like_products_img_one {
    display: block;
}

.you_may_also_like_products_img_two {
    display: none;
}

.you_may_also_like_products_img_one,
.you_may_also_like_products_img_two {
    height: auto;
    object-fit: cover;
    /* or 'contain' based on need */
}

.desktop-cross{

    border-radius: 20px;
    height: 32px;
    width: 32px;
    float: right;
    padding: 3px;
    margin-top: 0px;
    margin-right: 10px;
    background-color: #f7f5f4;
    border: none;
    cursor: pointer;
    position: relative;

}

.mobile-cross{

    border-radius: 20px;
    height: 32px;
    width: 32px;
    float: right;
    padding: 3px;
    margin-top: -215px;
    margin-right: 10px;
    background-color: #f7f5f4;
    border: none;
    cursor: pointer;
    position:relative;

}

/* For sticky footer on mobile  */

#sticky_add_to_cart {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  }
  #sticky_add_to_cart.hidden {
    display: none !important;
  }  

/* You may also like ends */


/* to truncate words */

.text-truncate-single {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }



/* Product Details Page ends */

/* Cart Page Starts */

#cart_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 20px;
    margin-bottom: 50px;
}

#cart_main {
    height: auto;
    background-color: none;
    float: left;
}

#cart_shop_bag_bg {
    height: auto;
    background-color: none;
    float: left;
}

#cart_shop_bag_heading {
    height: auto;
    background-color: none;
    float: left;
    padding-bottom: 20px;
}

#cart_shop_bag_product_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #e5e5e5;
}

#cart_shop_bag_product_img {
    height: auto;
    background-color: none;
    float: left;
}

#cart_shop_bag_product_img img {
    height: 200px;
    object-fit: cover;
}

#cart_shop_bag_product_description {
    height: auto;
    background-color: none;
    float: left;
    padding-left: 20px;
}

#cart_shop_bag_product_description_taxes_detail {
    height: auto;
    background-color: none;
    float: left;
}

#cart_shop_bag_product_description_taxes_detail span {
    font-size: 14px;
}

#cart_shop_bag_product_description_title {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 20px;
}

#cart_shop_bag_product_description_title h4 {
    font-size: 15px;
}

#cart_shop_bag_product_description_sub_title {
    height: auto;
    background-color: none;
    float: left;
}

#cart_shop_bag_product_description_sub_title span {
    font-size: 14px;
}

#cart_shop_bag_product_description_color {
    height: auto;
    background-color: none;
    float: left;
}

#cart_shop_bag_product_description_color span {
    font-size: 14px;
}

#cart_shop_bag_product_description_color>span:not(:first-of-type)::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #838383;
    /* or any color you want */
    transform: rotate(45deg);
    /* diamond shape */
    margin: 0 8px 3px 8px;
}

#cart_shop_bag_product_description_price {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 10px;
}

#cart_shop_bag_product_description_price h5 {
    font-size: 15px;
}

#cart_shop_bag_product_description_tax {
    height: auto;
    background-color: none;
    float: left;
}

#cart_shop_bag_product_description_tax p {
    font-size: 14px;
}

#cart_shop_bag_product_description_total {
    height: auto;
    background-color: none;
    float: left;
}

#cart_shop_bag_product_description_total h5 {
    font-size: 15px;
}

#cart_shop_bag_product_description_quantity_left {
    height: auto;
    background-color: none;
    float: left;
}

#cart_shop_bag_product_description_quantity_left p {
    font-size: 13px;
}

#cart_shop_bag_product_remove_from_bag_bg {
    height: auto;
    background-color: none;
    float: left;
}

#cart_shop_bag_product_remove_from_bag_bg span {
    font-size: 13px;
}

#cart_shop_bag_product_remove_from_bag_bg>span:not(:first-of-type)::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #838383;
    /* or any color you want */
    transform: rotate(45deg);
    /* diamond shape */
    margin: 0 8px 3px 8px;
}

/* Order Summary */

#cart_order_summary_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-left: 40px;
    padding-right: 10px;
    padding-top: 40px;
}

#cart_order_summary_main {
    height: auto;
    background-color: none;
    float: left;
}

#cart_order_summary_heading {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 10px;
    padding-bottom: 10px;
}

#cart_order_summary_item_subtotal {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 10px;
    padding-bottom: 10px;
}

#cart_order_summary_item_subtotal_l {
    height: auto;
    background-color: none;
    float: left;
}

#cart_order_summary_item_subtotal_r {
    height: auto;
    background-color: none;
    float: left;
}

#cart_order_summary_shipping {
    height: auto;
    background-color: none;
    float: left;
    border-bottom: 1px #e5e5e5 solid;
    padding-bottom: 10px;
}

#cart_order_summary_shipping_l {
    height: auto;
    background-color: none;
    float: left;
}

#cart_order_summary_shipping_r {
    height: auto;
    background-color: none;
    float: left;
}

#cart_order_summary_total {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 10px;
}

#cart_order_summary_total_l {
    height: auto;
    background-color: none;
    float: left;
}

#cart_order_summary_total_r {
    height: auto;
    background-color: none;
    float: left;
}

#cart_order_summary_local_tax_may_apply {
    height: auto;
    background-color: #edf6fd;
    border: 1px solid #d6e2ec;
    float: left;
    margin-top: 10px;
    padding: 5px;
    margin-bottom: 20px;

}

#cart_order_summary_local_tax_may_apply i {
    padding-left: 5px;
    padding-right: 10px;
}

#cart_order_summary_earn_exclusive {
    height: auto;
    background-color: none;
    float: left;
}

#cart_order_summary_promo {
    height: auto;
    background-color: none;
    float: left;
}

#cart_order_summary_promo_heading {
    height: auto;
    background-color: none;
    float: left;
    padding-bottom: 20px;
}

#cart_order_summary_promo_btn {
    height: auto;
    background-color: none;
    float: left;
}

#cart_order_summary_promo_btn_l {
    height: auto;
    background-color: none;
    float: left;
}

#cart_order_summary_promo_btn_l input {
    height: 40px;
    padding: 10px;
    border: 1px #e5e5e5 solid;

}

#cart_order_summary_promo_btn_l input:focus {
    border: 1px solid black;
    outline: none;
}

#cart_order_summary_promo_btn_r {
    height: auto;
    background-color: none;
    float: left;
    margin-bottom: 10px;
}

#cart_order_summary_promo_btn_r input {
    height: 40px;
    width: 100%;
    border: 1px #e5e5e5 solid;
    color: gray;
    background: none;
}

#cart_order_summary_note {
    height: auto;
    background: #f0f0f0;
    border: 1px solid #e5e5e5;
    float: left;
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 10px 20px 10px 20px;
}

#cart_order_summary_checkout_btn {
    height: auto;
    background-color: none;
    float: left;
}

#cart_order_summary_checkout_btn button {
    height: 40px;
    width: 100%;
    background-color: black;
    color: white;
    border-radius: 2px;
    border: none;
    margin-top: 5px;
    padding: 10px 20px 10px 20px;
}

#cart_order_summary_checkout_btn button:hover {
    background-color: #ae160f;
    color: white;
}

#cart_order_summary_logos {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
}

#cart_order_summary_stripe_payment_logo {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
}

#cart_order_summary_stripe_payment_logo img {
    height: 50px;
    width: 100%;
    object-fit: cover;
}

#cart_order_summary_paypal_payment_logo {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
}


#cart_order_summary_paypal_payment_logo img {
    height: 50px;
    width: 100%;
    object-fit: cover;
}


/* Cart Page Ends */

/* Sign In Page Starts */

#header_bg_login {
    height: auto;
    background-color: black;
    float: left;
}

#sign_in_bg {
    height: auto;
    background-color: none;
    float: left;
}

#sign_in_main {
    height: auto;
    background-color: none;
    float: left;
}

#sign_in_heading {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 40px;
    margin-bottom: 10px;
}

#sign_in_heading h4 {
    font-size: 18px;
}

#sign_in_inputs_bg {
    height: auto;
    background-color: none;
    float: left;
    border: 1px #e5e5e5 solid;
    margin-top: 10px;
}

#sign_in_inputs_bg_main {
    height: auto;
    background-color: none;
    float: left;
    padding: 20px;
}

#sign_in_inputs_heading {
    height: auto;
    background-color: none;
    float: left;
}

#sign_in_inputs_heading p {
    font-size: 14px;
}

#sign_in_input_email_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#sign_in_input_email_heading {
    height: auto;
    background-color: none;
    float: left;
}

#sign_in_input_email_heading h6 {
    font-size: 13px;
}

#sign_in_input_email_input {
    height: auto;
    background-color: none;
    float: left;
}

#sign_in_input_email_input input {
    height: 35px;
    width: 100%;
}

#sign_in_input_password_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#sign_in_input_password_heading {
    height: auto;
    background-color: none;
    float: left;
}

#sign_in_input_password_heading h6 {
    font-size: 13px;
}

#sign_in_input_password_input {
    height: auto;
    background-color: none;
    float: left;
}

#sign_in_input_password_input input {
    height: 35px;
    width: 100%;
}

#sign_in_inputs_forgot_password {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#sign_in_inputs_forgot_password h6 {
    font-size: 13px;
}

#sign_in_inputs_btn {
    height: auto;
    background-color: none;
    float: left;
}

#sign_in_inputs_btn input {
    background-color: black;
    width: 100%;
    color: white;
    padding: 8px;
    border: none;
    font-size: 13px;
}

#sign_in_inputs_btn input:hover {
    background-color: #ae160f;
    border: none;
}

#register_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    padding: 10px 20px 0px 20px;
    border: 1px #e5e5e5 solid;
}

#register_bg p {
    font-size: 13px;
}

#register_bg_href {
    color: black;
}

#create_account_later_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 40px;
}

#create_account_later_bg p {
    font-size: 13px;
}

/* Sign In Page Ends */

/* Sign Up Page Starts */


#sign_up_bg {
    height: auto;
    background-color: none;
    float: left;
}

#sign_up_main {
    height: auto;
    background-color: none;
    float: left;
}

#sign_up_heading {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 40px;
    margin-bottom: 10px;
}

#sign_up_heading h4 {
    font-size: 18px;
}

#sign_up_inputs_bg {
    height: auto;
    background-color: none;
    float: left;
    border: 1px #e5e5e5 solid;
    margin-top: 10px;
}

#sign_up_inputs_bg_main {
    height: auto;
    background-color: none;
    float: left;
    padding: 20px;
}

#sign_up_inputs_heading {
    height: auto;
    background-color: none;
    float: left;
}

#sign_up_inputs_heading p {
    font-size: 14px;
}

#sign_up_input_email_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#sign_up_input_email_heading {
    height: auto;
    background-color: none;
    float: left;
}

#sign_up_input_email_heading h6 {
    font-size: 13px;
}

#sign_up_input_email_input {
    height: auto;
    background-color: none;
    float: left;
}

#sign_up_input_email_input input {
    height: 35px;
    width: 100%;
}

#sign_up_input_password_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#sign_up_input_password_heading {
    height: auto;
    background-color: none;
    float: left;
}

#sign_up_input_password_heading h6 {
    font-size: 13px;
}

#sign_up_input_password_input {
    height: auto;
    background-color: none;
    float: left;
}

#sign_up_input_password_input input {
    height: 35px;
    width: 100%;
}

/* first name */

#sign_up_input_first_name_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#sign_up_input_first_name_heading {
    height: auto;
    background-color: none;
    float: left;
}

#sign_up_input_first_name_heading h6 {
    font-size: 13px;
}

#sign_up_input_first_name_input {
    height: auto;
    background-color: none;
    float: left;
}

#sign_up_input_first_name_input input {
    height: 35px;
    width: 100%;
}

/* last name  */


#sign_up_input_last_name_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#sign_up_input_last_name_heading {
    height: auto;
    background-color: none;
    float: left;
}

#sign_up_input_last_name_heading h6 {
    font-size: 13px;
}

#sign_up_input_last_name_input {
    height: auto;
    background-color: none;
    float: left;
}

#sign_up_input_last_name_input input {
    height: 35px;
    width: 100%;
}

#sign_up_inputs_forgot_password {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#sign_up_inputs_forgot_password h6 {
    font-size: 13px;
}

#sign_up_inputs_btn {
    height: auto;
    background-color: none;
    float: left;
}

#sign_up_inputs_btn input {
    background-color: black;
    width: 100%;
    color: white;
    padding: 8px;
    border: none;
    font-size: 13px;
}

#sign_up_inputs_btn input:hover {
    background-color: #ae160f;
    border: none;
}

#register_sign_in_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    padding: 10px 20px 0px 20px;
    border: 1px #e5e5e5 solid;
}

#register_sign_in_bg p {
    font-size: 13px;
}

#register_sign_in_bg_href {
    color: black;
}

#create_account_later_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 40px;
}

#create_account_later_bg p {
    font-size: 13px;
}

#create_account_later_href {
    color: black;
}

/* Sign Up Page Ends */

/* Continue as guest starts */


#continue_as_guest_bg {
    height: auto;
    background-color: none;
    float: left;
}

#continue_as_guest_main {
    height: auto;
    background-color: none;
    float: left;
}

#continue_as_guest_heading {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 40px;
    margin-bottom: 10px;
}

#continue_as_guest_heading h4 {
    font-size: 18px;
}

#continue_as_guest_inputs_bg {
    height: auto;
    background-color: none;
    float: left;
    border: 1px #e5e5e5 solid;
    margin-top: 10px;
    margin-bottom: 50px;
}

#continue_as_guest_inputs_bg_main {
    height: auto;
    background-color: none;
    float: left;
    padding: 20px;
}

#continue_as_guest_inputs_heading {
    height: auto;
    background-color: none;
    float: left;
}

#continue_as_guest_inputs_heading p {
    font-size: 14px;
}

#continue_as_guest_input_email_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#continue_as_guest_input_email_heading {
    height: auto;
    background-color: none;
    float: left;
}

#continue_as_guest_input_email_heading h6 {
    font-size: 13px;
}

#continue_as_guest_input_email_input {
    height: auto;
    background-color: none;
    float: left;
}

#continue_as_guest_input_email_input input {
    height: 35px;
    width: 100%;
}

#continue_as_guest_inputs_forgot_password {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#continue_as_guest_inputs_forgot_password h6 {
    font-size: 13px;
}

#continue_as_guest_inputs_btn {
    height: auto;
    background-color: none;
    float: left;
}

#continue_as_guest_inputs_btn input {
    background-color: black;
    width: 100%;
    color: white;
    padding: 8px;
    border: none;
    font-size: 13px;
}

#sign_up_inputs_btn input:hover {
    background-color: #ae160f;
    border: none;
}

#register_sign_in_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    padding: 10px 20px 0px 20px;
    border: 1px #e5e5e5 solid;
}

#register_sign_in_bg p {
    font-size: 13px;
}

#register_sign_in_bg_href {
    color: black;
}

#continue_as_guest_privacy_policy_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    text-align: center;
}

#continue_as_guest_privacy_policy_bg p {
    font-size: 13px;
}

#create_account_later_href {
    color: black;
}

/* Continue as guest ends */

/* Checkout Address Starts */

#logo {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
}

#logo img {
    height: 80px;
    width: auto;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 20px;
}

#checkout_address_bg {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_main {
    height: auto;
    background-color: none;
    float: left;
    margin-bottom: 50px;
}

#checkout_address_heading {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 40px;
    margin-bottom: -5px;
}

#checkout_address_heading h4 {
    font-size: 18px;
}

#checkout_address_inputs_bg {
    height: auto;
    background-color: none;
    float: left;
    border-top: 1px #e5e5e5 solid;
    border-bottom: 1px #e5e5e5 solid;
    margin-top: 10px;
}

#checkout_address_inputs_bg_main {
    height: auto;
    background-color: none;
    float: left;
    padding: 20px;
}

#checkout_address_inputs_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_inputs_heading p {
    font-size: 14px;
}

/* Shipping to */

#checkout_address_input_shipping_to_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_shipping_to_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_shipping_to_heading h6 {
    font-size: 13px;
}

#checkout_address_input_shipping_to_input {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_shipping_to_input select {
    height: 35px;
    width: 100%;
}


/* Zip code */

#checkout_address_input_zip_code_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_zip_code_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_zip_code_heading h6 {
    font-size: 13px;
}

#checkout_address_input_zip_code_input {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_zip_code_input input {
    height: 35px;
    width: 100%;
}


/* enter address manually */

#checkout_address_input_enter_address_manually_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_enter_address_manually_heading {
    height: auto;
    background-color: none;
    float: left;
}

#enter-manually-link {
    color: gray;
}

#checkout_address_input_enter_address_manually_heading h6 {
    font-size: 13px;
}


/* Address line one */

#checkout_address_input_address_line_one_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_address_line_one_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_address_line_one_heading h6 {
    font-size: 13px;
}

#checkout_address_input_address_line_one_input {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_address_line_one_input input {
    height: 35px;
    width: 100%;
}

/* Add new address */

#checkout_address_input_add_new_address_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_add_new_address_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_add_new_address_heading h6 {
    font-size: 13px;
}

#add-new-line-link {
    color: gray;
}

/* Address line two */

#checkout_address_input_address_line_two_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_address_line_two_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_address_line_two_heading h6 {
    font-size: 13px;
}

#checkout_address_input_address_line_two_input {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_address_line_two_input input {
    height: 35px;
    width: 100%;
}

/* City */

#checkout_address_input_city_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_city_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_city_heading h6 {
    font-size: 13px;
}

#checkout_address_input_city_input {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_city_input input {
    height: 35px;
    width: 100%;
}

/* State */

#checkout_address_input_state_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_state_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_state_heading h6 {
    font-size: 13px;
}

#checkout_address_input_state_input {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_state_input select {
    height: 35px;
    width: 100%;
}

/* Second Zip Code */

#checkout_address_input_second_zip_code_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_second_zip_code_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_second_zip_code_heading h6 {
    font-size: 13px;
}

#checkout_address_input_second_zip_code_input {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_second_zip_code_input input {
    height: 35px;
    width: 100%;
}

/* search for another address */

#checkout_address_input_search_for_another_address_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_search_for_another_address_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_search_for_another_address_heading h6 {
    font-size: 13px;
}

#search-another-link {
    color: gray;
}

/* Phone Number */

#checkout_address_input_phone_number_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_phone_number_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_phone_number_heading h6 {
    font-size: 13px;
}

#checkout_address_input_phone_number_input {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_phone_number_input input {
    height: 35px;
    width: 100%;
}

/* Alternate Phone Number link */

#checkout_address_input_alternate_phone_number_link_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_alternate_phone_number_link_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_alternate_phone_number_link_heading h6 {
    font-size: 13px;
}

#add-alternate-phone-link {
    color: gray;
}

/* Alternate Phone Number */

#checkout_address_input_alternate_phone_number_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_alternate_phone_number_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_alternate_phone_number_heading h6 {
    font-size: 13px;
}

#checkout_address_input_alternate_phone_number_input {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_alternate_phone_number_input input {
    height: 35px;
    width: 100%;
}


/* first name */

#checkout_address_input_first_name_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_first_name_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_first_name_heading h6 {
    font-size: 13px;
}

#checkout_address_input_first_name_input {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_first_name_input input {
    height: 35px;
    width: 100%;
}

/* last name  */


#checkout_address_input_last_name_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_input_last_name_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_last_name_heading h6 {
    font-size: 13px;
}

#checkout_address_input_last_name_input {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_input_last_name_input input {
    height: 35px;
    width: 100%;
}

#checkout_address_inputs_forgot_password {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

#checkout_address_inputs_forgot_password h6 {
    font-size: 13px;
}

#checkout_address_inputs_btn {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 30px;
    margin-bottom: 20px;
}

#checkout_address_inputs_btn input {
    background-color: black;
    width: 100%;
    color: white;
    padding: 8px;
    border: none;
    font-size: 13px;
}

#checkout_address_inputs_btn input:hover {
    background-color: #ae160f;
    border: none;
}

#need_help_bg {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    margin-bottom: 40px;
}

#need_help_bg p {
    font-size: 13px;
}

#need_help_href {
    color: black;
}

/* search zip code starts */

#search {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid black;
    border-radius: 4px;
}

.suggestions {
    width: 100%;
    max-width: 436px;
    border: 1px solid #eee;
    border-top: none;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: absolute;
    margin-top: -1px;
    border-radius: 0 0 4px 4px;
    display: none;
    /* Initially hidden */
    z-index: 1000;
}

.suggestion {
    padding: 10px;
    cursor: pointer;
    border-top: 1px solid #eee;
}

.suggestion:first-child {
    border-top: none;
}

.suggestion:hover {
    background: #f5f5f5;
}


/* search zip code ends */

/* Hide and show logic starts */

.hidden {
    display: none !important;
}

/* Hide and show logic ends */

/* cart Details area Starts */

#checkout_address_cart_bg {
    height: auto;
    background-color: #f7f7f7;
    float: left;
}

#checkout_address_cart_main {
    height: auto;
    background-color: none;
    float: left;
    padding: 20px;
}

#checkout_address_cart_heading {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_cart_heading h6 {
    margin-top: -10px;
    padding-bottom: 25px;
}

#checkout_address_cart_products_bg {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_cart_products_main {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_cart_product_bg {
    height: auto;
    background-color: none;
    float: left;
    border-top: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 20px;
}

#checkout_address_cart_product_img {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_cart_product_img img {
    height: 120px;
    object-fit: cover;
}

#checkout_address_cart_product_description {
    height: auto;
    background-color: none;
    float: left;
    padding-left: 20px;
}

#checkout_address_cart_product_description_title {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 10px;
}

#checkout_address_cart_product_description_title h4 {
    font-size: 15px;
}

#checkout_address_cart_product_description_sub_title {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_cart_product_description_sub_title span {
    font-size: 14px;
}

#checkout_address_cart_product_description_color {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_cart_product_description_color span {
    font-size: 14px;
}

#checkout_address_cart_product_description_color>span:not(:first-of-type)::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #838383;
    /* or any color you want */
    transform: rotate(45deg);
    /* diamond shape */
    margin: 0 8px 3px 8px;
}

#checkout_address_cart_product_description_price {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 10px;
}

#checkout_address_cart_product_description_price h5 {
    font-size: 15px;
}

#checkout_address_cart_item_subtotal {
    height: auto;
    background-color: none;
    float: left;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding-top: 20px;
    padding-bottom: 20px;
}

#checkout_address_cart_item_subtotal_l {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 10px;
    padding-bottom: 10px;
}

#checkout_address_cart_item_subtotal_r {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 10px;
    padding-bottom: 10px;
}

#checkout_address_cart_total {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 20px;
    padding-bottom: 45px;
}

#checkout_address_cart_total_l {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 30px;
}

#checkout_address_cart_total_r {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 30px;
}

/* Sticy starts */

/* Make the sidebar fixed to the right */
#checkout_address_cart_bg {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    z-index: 1000;
    /* Ensure it appears above other elements */
    width: 33.3333%;
    /* Matches col-lg-4 width */
    padding: 15px;
}

/* Full height container layout */
#checkout_address_cart_main {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Sticky heading */
#checkout_address_cart_heading {
    flex: 0 0 auto;
    padding: 10px 0;
    background: #fff;
    z-index: 2;
}

/* Scrollable product area */
#checkout_address_cart_products_bg {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-bottom: 10px;
    padding-right: 10px;
}

/* Fixed subtotal and total */
#checkout_address_cart_item_subtotal,
#checkout_address_cart_total {
    flex: 0 0 auto;
    background: #fff;
    padding: 10px 0;
    z-index: 2;
}

/* Sticy ends */

/* cart Details area ends */

/* Checkout Address Ends */

/* Shipping Options Starts */

#checkout_address_shipping_option_heading_span {
    height: auto;
    background-color: none;
    float: left;
}

#checkout_address_shipping_option_heading_span span {
    font-size: 14px;
}

#change-link {
    color: gray;
}

#shipping_option_heading {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 10px;
    border-bottom: 1px solid #eee;

}

#shipping_option_heading h4 {
    font-size: 18px;
}

#shipping_address_radio_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

#shipping_address_radio_btn {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 20px;
}

#shipping_address_radio_text {
    height: auto;
    background-color: none;
    float: left;
}

#shipping_address_radio_text h6 {
    font-size: 14px;
}

#shipping_address_radio_text span {
    font-size: 13px;
}

/* Shipping Options ends */

/* Packaging Options Starts */

#packaging_option_li {
    font-size: 14px;
}

#shipping_option_information {
    height: auto;
    background-color: #ecf6fd;
    float: left;
    padding: 20px;
    margin-top: 20px;
}

#shipping_option_information h4 {
    font-size: 14px;
}

#shipping_option_information p {
    font-size: 13px;
    color: gray;
}

#packaging_option_radio_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

#packaging_option_radio_btn {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 40px;
}

#packaging_option_radio_img {
    height: auto;
    background-color: none;
    float: left;
}

#packaging_option_radio_img img {
    height: 120px;
    object-fit: cover;
}


#packaging_option_radio_text {
    height: auto;
    background-color: none;
    float: left;
    padding: 10px;
}

#packaging_option_radio_text h6 {
    font-size: 14px;
}

#packaging_option_radio_text span {
    font-size: 13px;
}

#packaging_option_add_a_gift {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 20px;
}

#packaging_option_add_a_gift span {
    font-size: 13px;
    padding-left: 5px;
}

#packaging_option_did_you_know_bg {
    height: auto;
    background-color: none;
    float: left;
    border-bottom: 1px solid #eee;
}

#packaging_option_did_you_know_bg p {
    font-size: 13px;
    padding-top: 20px;
}

#packaging_option_did_you_know_bg h6 {
    font-size: 13px;
    padding-bottom: 20px;
}

#learn-more-link {
    color: gray;
}


/* Packaging Options ends */

/* Payment Options starts */


#payment_option_radio_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

#payment_option_radio_btn {
    height: auto;
    background-color: none;
    float: left;
    margin-top: 15px;
    margin-bottom: 20px;
}

#payment_option_radio_img {
    height: auto;
    background-color: none;
    float: left;
}

#payment_option_radio_img img {
    height: auto;
    object-fit: cover;
    margin-top: 15px;

}

#payment_option_credit_card_img_bg {
    height: auto;
    background-color: none;
    float: left;
}

#payment_option_credit_card_img {
    height: 40px !important;
    margin-top: 5px;
}

.hidden {
    display: none;
}

#stripe_info {
    height: auto;
    background-color: none;
    float: left;
}


#stripe_info p {
    font-size: 13px;
}

#paypal_info {
    height: auto;
    background-color: none;
    float: left;
}


#paypal_info p {
    font-size: 13px;
}

#payment_option_radio_text {
    height: auto;
    background-color: none;
    float: left;
    padding: 10px;
}

#payment_option_radio_text h6 {
    font-size: 14px;
}

#payment_option_radio_text span {
    font-size: 13px;
}


/* Payment Options ends */


/* contact Us page starts */




/* Wrapper must be relative */
#contact_link_bg {
    position: relative;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

/* Contact links container */
#contact_link_main {
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#contact_link_main::-webkit-scrollbar {
    display: none;
}

/* Nav styles */
.nav {
    display: flex;
    flex-wrap: nowrap;
}

.nav-item {
    flex-shrink: 0;
}

.nav-link {
    font-size: 14px;
    color: black;
    border-bottom: 1px solid transparent;
    white-space: nowrap;
}

.nav-link.active {
    border-bottom: 1px solid black;
}

.nav-link:hover,
.nav-link:focus {
    color: black;
}


/* Arrows */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    border: none;
    padding: 0;
    height: 36px;
    width: 36px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* Chevron positioning within visible area */
.scroll-arrow.left {
    left: 10px;
}

.scroll-arrow.right {
    right: 10px;
}

/* Show arrows only on mobile */
@media (max-width: 767.98px) {
    .scroll-arrow {
        display: flex !important;
    }
}





/* contacct faq type */

#contact_faq_type_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 50px;
    padding-bottom: 50px;
}

#contact_faq_type_main {
    height: auto;
    background-color: none;
    float: left;
}

#contact_faq_type_left {
    height: auto;
    background-color: none;
    float: left;
}

#contact_faq_type_one {
    height: auto;
    background-color: none;
    float: left;
}

#contact_faq_href {
    color: black;
}

#contact_faq_type_right {
    height: auto;
    background-color: none;
    float: left;
}

.nav-link {
    border-bottom: 1px solid transparent;
    transition: border-bottom 0.3s ease;
}

.nav-link.active {
    border-bottom: 1px solid #000;
}

.nav-link.hovering {
    border-bottom: 1px solid #000;
}

/* contact Us page ends */





/* Blog details Starts */

/* Blog Background */
.blog-details-background {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  /* Main Content Styles */
  .main-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
  }
  
  /* Blog Header */
  .blog-header {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
  }
  
  .blog-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
  }
  
  .blog-meta {
    font-size: 0.9rem;
  }
  
  .meta-item {
    white-space: nowrap;
  }
  
  .meta-item i {
    color: #6c757d;
  }
  
  /* Featured Image */
  .featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  /* Blog Content */
  .blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  
  .blog-content h2 {
    color: #2c3e50;
    font-weight: 600;
    border-left: 4px solid #ae160f;
    padding-left: 1rem;
  }
  
  .blog-content .lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #6c757d;
  }
  
  .blog-content blockquote {
    font-style: italic;
    font-size: 1.1rem;
  }
  
  /* Tags Section */
  .tags-section {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
  }
  
  /* Author Bio */
  .author-bio {
    border: 1px solid #e9ecef;
  }
  
  .author-image {
    object-fit: cover;
  }
  
  /* Comments Section */
  .comments-section {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
  }
  
  .comment-item {
    transition: background-color 0.3s ease;
  }
  
  .comment-item:hover {
    background-color: #f8f9fa;
    border-radius: 5px;
    padding: 1rem;
    margin: -1rem;
  }
  
  .comment-form {
    border: 1px solid #e9ecef;
  }
  
  /* Sidebar Styles */
  .sidebar-content {
    position: sticky;
    top: 2rem;
  }
  
  .sidebar-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }
  
  .widget-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ae160f;
    padding-bottom: 0.5rem;
  }
  
  /* Categories Widget */
  .list-group-item {
    border: none;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
  }
  
  .list-group-item:last-child {
    border-bottom: none;
  }
  
  .list-group-item a {
    color: #495057;
    transition: color 0.3s ease;
  }
  
  .list-group-item a:hover {
    color: #ae160f;
  }
  
  /* Recent Posts Widget */
  .list-group-item-action {
    transition: all 0.3s ease;
  }
  
  .list-group-item-action:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
  }
  
  /* Newsletter Widget */
  .card {
    border: 1px solid #e9ecef;
    box-shadow: none;
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  /* Tags Cloud */
  .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .tag-cloud .badge {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
  }
  
  .tag-cloud .badge:hover {
    background-color: #ae160f !important;
    color: white !important;
    transform: translateY(-2px);
  }
  
  /* Button Styles */
  .btn-primary {
    background-color: #ae160f;
    border-color: #ae160f;
    transition: all 0.3s ease;
  }
  
  .btn-primary:hover {
    background-color: #ae160f;
    border-color: #ae160f;
    transform: translateY(-2px);
  }
  
  .btn-outline-primary {
    transition: all 0.3s ease;
  }
  
  .btn-outline-primary:hover {
    transform: translateY(-2px);
  }
  
  /* Responsive Design */
  @media (max-width: 991.98px) {
    .sidebar-content {
      position: static;
      margin-top: 2rem;
    }
  
    .main-content {
      margin-bottom: 0;
    }
  }
  
  @media (max-width: 767.98px) {
    .blog-details-background {
      padding: 1rem 0;
    }
  
    .main-content {
      padding: 1.5rem;
      margin-bottom: 1rem;
    }
  
    .blog-title {
      font-size: 2rem;
    }
  
    .blog-meta {
      flex-direction: column;
      gap: 0.5rem !important;
    }
  
    .meta-item {
      justify-content: center;
    }
  
    .featured-image {
      height: 250px;
    }
  
    .sidebar-widget {
      padding: 1rem;
    }
  
    .comment-item .row {
      text-align: center;
    }
  
    .comment-item .col-auto {
      margin: 0 auto 1rem;
    }
  
    .author-bio .row {
      text-align: center;
    }
  
    .author-bio .col-auto {
      margin: 0 auto 1rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .container-fluid {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  
    .main-content {
      padding: 1rem;
    }
  
    .blog-title {
      font-size: 1.75rem;
    }
  
    .featured-image {
      height: 200px;
    }
  
    .blog-content {
      font-size: 1rem;
    }
  
    .blog-content h2 {
      font-size: 1.5rem;
    }
  }
  
  /* Animation for smooth loading */
  .main-content,
  .sidebar-widget {
    animation: fadeInUp 0.6s ease-out;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Focus states for accessibility */
  .btn:focus,
  .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  }
  
  /* Print styles */
  @media print {
    .sidebar-content,
    .comments-section {
      display: none;
    }
  
    .main-content {
      box-shadow: none;
      padding: 0;
    }
  
    .blog-details-background {
      background: white;
      padding: 0;
    }
  }
  

/* Blog details Ends */



/* Blog Start  */

/* Blog Page Specific Styles - No Global Interference */

.blog-page {
    background-color: #f8f9fa;
    padding-bottom: 2rem;
  }
  
  /* Hero Section */
  .blog-hero {
    background: linear-gradient(135deg, #ae160f 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  
  .blog-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }
  
  .blog-hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0;
  }
  
  /* Featured Post */
  .blog-featured-post {
    margin-bottom: 2rem;
  }
  
  .blog-featured-post .card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .blog-featured-post .card:hover {
    transform: translateY(-5px);
  }
  
  .blog-featured-img {
    height: 300px;
    object-fit: cover;
  }
  
  .blog-featured-title {
    font-size: 1.5rem;
    margin: 1rem 0;
  }
  
  .blog-featured-title a {
    color: #2c3e50;
  }
  
  .blog-featured-title a:hover {
    color: #ae160f;
  }
  
  .blog-featured-text {
    color: #6c757d;
    margin-bottom: 1rem;
  }
  
  /* Blog Post Items */
  .blog-post-item {
    margin-bottom: 2rem;
  }
  
  .blog-post-item .card {
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .blog-post-item .card:hover {
    transform: translateY(-3px);
  }
  
  .blog-post-img {
    height: 200px;
    object-fit: cover;
  }
  
  .blog-post-title {
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
  }
  
  .blog-post-title a {
    color: #2c3e50;
  }
  
  .blog-post-title a:hover {
    color: #ae160f;
  }
  
  .blog-post-excerpt {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .blog-badges {
    margin-bottom: 1rem;
  }
  
  .blog-post-meta {
    margin-bottom: 1rem;
    font-size: 0.8rem;
  }
  
  /* Pagination */
  .blog-pagination {
    margin-top: 2rem;
  }

.active>.page-link, .page-link.active{
 background-color: #ae160f !important;
 border-color: #ae160f !important;
 color: white !important;
  }

.page-link{
    color: #ae160f !important;
 }
  
  /* Sidebar */
  .blog-sidebar {
    margin-top: 2rem;
  }
  
  .blog-sidebar-widget {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .blog-widget-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #ae160f;
    padding-bottom: 0.5rem;
  }
  
  /* Categories */
  .blog-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .blog-categories-list li {
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f3f4;
  }
  
  .blog-categories-list li:last-child {
    border-bottom: none;
  }
  
  .blog-categories-list a {
    color: #495057;
    text-decoration: none;
  }
  
  .blog-categories-list a:hover {
    color: #ae160f;
  }
  
  /* Recent Posts */
  .blog-recent-posts {
    margin: 0;
  }
  
  .blog-recent-post {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f3f4;
  }
  
  .blog-recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .blog-recent-post h6 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  
  .blog-recent-post a {
    color: #2c3e50;
  }
  
  .blog-recent-post a:hover {
    color: #ae160f;
  }
  
  /* Newsletter */
  .blog-newsletter-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  /* Tags */
  .blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .blog-tags .badge {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    text-decoration: none;
    border: 1px solid #ddd;
  }
  
  .blog-tags .badge:hover {
    background-color: #ae160f !important;
    color: white !important;
    border-color: #ae160f;
  }
  
  /* Mobile Responsive */
  @media (max-width: 991.98px) {
    .blog-sidebar {
      margin-top: 3rem;
    }
  }
  
  @media (max-width: 767.98px) {
    .blog-hero {
      padding: 1.5rem 0;
    }
  
    .blog-hero-title {
      font-size: 1.75rem;
    }
  
    .blog-featured-img {
      height: 200px;
    }
  
    .blog-post-img {
      height: 180px;
    }
  
    .blog-sidebar-widget {
      padding: 1rem;
    }
  
    .blog-post-meta {
      text-align: center;
    }
  }
  
  @media (max-width: 575.98px) {
    .blog-hero-title {
      font-size: 1.5rem;
    }
  
    .blog-featured-img {
      height: 180px;
    }
  
    .blog-post-img {
      height: 160px;
    }
  
    .blog-featured-post .card-body,
    .blog-post-item .card-body {
      padding: 1rem;
    }
  }

/* Blog ends */



/* Gift Card starts */

#hero_section {
    height: auto;
    background-color: none;
    float: left;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

#gift_card_section {
    height: auto;
    background-color: none;
    float: left;
    background-color: #ffffff;
    padding: 80px 0;
}

#hero_content {
    height: auto;
    background-color: none;
    float: left;
}

#hero_background {
    height: auto;
    background-color: none;
    float: left;
}

#amount_selection {
    height: auto;
    background-color: none;
    float: left;
}

#design_selection {
    height: auto;
    background-color: none;
    float: left;
    margin-bottom: 20px;
}

#gift_card_preview {
    height: auto;
    background-color: none;
    float: left;
}

/* Custom Styles */
.hero-title {
    font-size: 4rem;
    font-weight: bold;
    color: #000;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

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

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.floating-image {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: rotate(15deg);
}

.floating-image:nth-child(1) {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
}

.floating-image:nth-child(2) {
    top: 20%;
    right: 10%;
    width: 120px;
    height: 120px;
    transform: rotate(-10deg);
}

.floating-image:nth-child(3) {
    bottom: 30%;
    left: 8%;
    width: 180px;
    height: 180px;
    transform: rotate(25deg);
}

.floating-image:nth-child(4) {
    bottom: 10%;
    right: 15%;
    width: 140px;
    height: 140px;
    transform: rotate(-15deg);
}

.floating-image:nth-child(5) {
    top: 50%;
    left: 15%;
    width: 100px;
    height: 100px;
    transform: rotate(45deg);
}

.floating-image:nth-child(6) {
    top: 60%;
    right: 20%;
    width: 160px;
    height: 160px;
    transform: rotate(-20deg);
}

.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.amount-option {
    border: 2px solid #e9ecef;
    padding: 15px 25px;
    margin: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    color: black;
}

.amount-option:hover,
.amount-option.active {
    border-color: #000;
    background-color: #000;
    color: #fff;
}

.design-option {
    border: 2px solid #e9ecef;
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-option:hover,
.design-option.active {
    border-color: #000;
}

.gift-card-preview {
    background-color: #000;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gift-card-text {
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

    #hero_section,
    #gift_card_section,
    #hero_content,
    #hero_background,
    #amount_selection,
    #design_selection,
    #gift_card_preview {
        float: none !important;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .floating-image {
        display: none;
    }

    #hero_section {
        padding: 60px 0;
    }

    #gift_card_section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .amount-option {
        margin: 5px;
        padding: 12px 20px;
    }

    .design-option {
        margin: 5px;
        height: 100px;
    }

    .gift-card-text {
        font-size: 1.5rem;
    }
}

/* Clearfix */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.personalized-message-wrapper .form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px;
}

.delivery-option-btn {
    padding: 12px 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.delivery-option-btn:hover {
    background-color: #ae160f;
}

.delivery-option-btn.active {
    background-color: black;
    color: #fff;
    border-color: black;
}

.product-description-text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.product-info-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
}

.quantity-controls {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
}

.quantity-btn {
    border: none;
    background: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-display {
    min-width: 30px;
    text-align: center;
}

.add-to-cart-btn {
    background-color: black;
    border-color: black;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px;
    font-size: 13px;
}

.add-to-cart-btn:hover {
    background-color: #ae160f;
    border-color: #ae160f;
    color: white;
}

.price-display {
    font-weight: 600;
    font-size: 1.1rem;
}


/* Gift Card ends */


/* Porter Page starts  */

.menu-item {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }



  .modal-menu-item {
    border-bottom: 1px solid #444;
    padding: 1rem 0;
    text-align: center;
    font-weight: 600;
    color: #fff;
  }

  /* Hide scrollbars in modal */
  .modal-body {
    overflow: hidden;
  }

  /* Mobile row layout */
  @media (max-width: 767.98px) {
    .mobile-menu-row {
      overflow-x: auto;
      white-space: nowrap;
    }

    .mobile-menu-row .menu-item {
      display: inline-block;
      margin-right: 1rem;
    }

    /* Hide scrollbar (Webkit) */
    .mobile-menu-row::-webkit-scrollbar {
      display: none;
    }

    .mobile-menu-row {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }
  }

  /* img secction */


  .cover-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .logo-overlay {
    position: absolute;
    top: 10px;
    right: 15px;
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: black;
  }
  @media (min-width: 768px) {
    .logo-overlay {
      display: none;
    }
  }
  @media (max-width: 767.98px) {
    .text-col {
      display: none;
    }
  }

  /* Three Images */

  .second-porter{
    margin-top: 80px;
  }

  .third-porter{
    margin-top: 180px;
  }

  .img-hover-zoom {
    overflow: hidden;
  }
  .img-hover-zoom img {
    transition: transform 0.5s ease;
  }
  .img-hover-zoom:hover img {
    transform: scale(1.1);
  }
  @media (max-width: 767px) {
    .mobile-vertical {
      flex-direction: column;
      align-items: flex-start;
    }
  }

  /* new season style starts */


  .new-season-section {
    background-color: #000;
    color: #fff;
    padding: 60px 0;
  }
  
  .section-title {
    color: #fff;
  }
  
  .new-season-card {
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .new-season-card:hover {
    transform: scale(1.05);
  }
  
  .flip-card {
    background-color: transparent;
    width: 90%;
    max-width: 320px;
    height: 400px;
    margin: auto;
    perspective: 1000px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
  }
  
  .flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
  }
  
  .flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .flip-card-back {
    background-color: #fff;
    color: #000;
    transform: rotateY(180deg);
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .swiper {
    width: 100%;
    max-width: 320px;
    height: 420px;
    margin: auto;
  }
  
  .swiper-wrapper {
    display: flex;
  }
  
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Responsive Toggle */
  @media (min-width: 768px) {
    .mobile-only {
      display: none !important;
    }
  }
  
  @media (max-width: 767.98px) {
    .desktop-only {
      display: none !important;
    }
  }
  
  

  /* new season style ends */

  /* Ultimate Style starts  */

  .ultimate-text{
    margin-left: -50px;
  }

  /* Ultimate Style ends  */

  /* porter-bg-image  starts*/

  .porter-bg-image{
    height: auto; 
    background-color: none; 
    padding: 20px;
    object-fit: cover;
  }
  /* porter-bg-image  ends*/

/* Porter Page ends */





/* ============ desktop view ============ */
@media all and (min-width: 992px) {

    .navbar .has-megamenu {
        position: static !important;
    }

    .navbar .megamenu {
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
    }

}

/* ============ desktop view .end// ============ */

/* ============ mobile view ============ */
@media(max-width: 991px) {

    .navbar.fixed-top .navbar-collapse,
    .navbar.sticky-top .navbar-collapse {
        overflow-y: auto;
        height: 90vh;
        margin-top: 10px;
    }

    #logo img {
        /* height: 50px;
        width: 100px; */
        padding: 10px;
        margin-top: 25px;
        margin-left: 20px;
        margin-bottom: 20px;
    }

    #homepagemyVideo {
        height: 100%;
        /* Set the desired height */
        width: 100%;
        /* Maintain aspect ratio */
        object-fit: cover;
        /* Ensures it fills the container without distortion */
    }

    #slider_logo_img {
        height: 9px;
        width: 55px;
        margin-top: -3px;
    }

    #slider_button_red_l {
        height: 40px;
        width: 100%;
        background-color: white;
        color: black;
        /* border-radius: 10px; */
        border: none;
        font-size: 15px;
        margin-top: 10px;
        /* padding: 10px 20px 20px 20px; */
    }

    #slider_button_red_r {
        height: 30px;
        width: 150px;
        background-color: black;
        color: white;
        border-radius: 10px;
        border: none;
        font-size: 8px;
        margin-top: 5px;
        padding: 10px 20px 10px 20px;
    }

    */ #slider_overlay {
        height: 285px;
        float: left;
        opacity: 1;
        background: rgba(0, 0, 0, 0.6);
        transition: background 0.4s ease-in-out;
        margin-top: -290px;
    }

    #slider_text {
        margin-top: -180px;
        padding-left: 20px;
        padding-right: 15px;
    }

    #slider img {
        height: 85vh;

    }

    #slider_heading {
        font-size: 32px;
    }

    #slider_subheading {
        font-size: 16px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    /* Slider 2 Starts */

#slider_two {
    height: auto;
    background-color: none;
    float: left;
    padding: 0;
    margin: 0;
}


#contact_slider_two {
    height: auto;
    background-color: none;
    float: left;
}


#slider_two img {
    height: auto;
    object-fit: cover;
}

#slider_two_button_red_l {
    height: auto;
    background-color: transparent;
    color: white;
    border-radius: 2px;
    border: none;
    font-size: 12px;
    margin-top: 10px;
    padding: 11px 16px;
    line-height: 17.5px;
    border: 1px solid rgba(255, 255, 255, 1);
    margin-right: 10px;
}

#slider_two_button_red_l:hover {
    background-color: #ae160f;
    color: white;
}

#slider_two_button_red_r {
    height: 40px;
    width: 200px;
    background-color: white;
    color: black;
    /* border-radius: 10px; */
    border: none;
    font-size: 12px;
    margin-top: 5px;
    padding: 10px 20px 10px 20px;
}

#slider_two_button_red_r:hover {
    background-color: #ae160f;
    color: white;
}

#slider_two_text {
    height: auto;
    background-color: none;
    float: left;
    position: relative;
    z-index: 1;
    padding-left: 50px;
    margin-top: -190px;
    color: white;
    text-align: center;
}

#contact_slider_two_text {
    height: auto;
    background-color: none;
    float: left;
    position: relative;
    z-index: 1;
    padding-left: 130px;
    margin-top: -80px;
    color: white;
}

#slider_two_buttons{
    margin-top: -25px;
}

#slider_two_heading {
    font-size: 40px;
}

#slider_two_subheading {
    font-size: 15px;
    margin-top: -15px;
}

#slider_two_terms {
    font-size: 12px;
    margin-top: 15px;
    padding-bottom: 10px;
}

/* to make slideable */

/* Scrollable container for mobile */
#slider_two_buttons {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    gap: 10px;
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE 10+ */
}

/* Hide scrollbar for WebKit browsers (Chrome, Safari) */
#slider_two_buttons::-webkit-scrollbar {
    display: none;
}

#slider_two_buttons a {
    flex-shrink: 0;
}

/* Disable scrolling on desktop */
@media (min-width: 769px) {
    #slider_two_buttons {
        overflow-x: hidden;
    }
}

/* Slider 2 Ends */

/* Slider 3 starts  */

#slider_three_text {
    padding-left: 20px;
        padding-right: 15px;
}

#slider_three_button_red_l {
    height: 40px;
    width: 100%;
    background-color: white;
    color: black;
    /* border-radius: 10px; */
    border: none;
    font-size: 15px;
    margin-top: 10px;
    /* padding: 10px 20px 20px 20px; */
}

#slider_three_button_red_r {
    height: 30px;
    width: 150px;
    background-color: black;
    color: white;
    border-radius: 10px;
    border: none;
    font-size: 8px;
    margin-top: 5px;
    padding: 10px 20px 10px 20px;
}

/* Slider 3 ends */

    /* New In starts */

    #new_in_bg {
        height: auto;
        background-color: none;
        float: left;
        margin-top: 0px;
        margin-bottom: 30px;
        padding-left: 5px;
        padding-right: 5px;
    }

    #new_in_main {
        height: auto;
        background-color: none;
        float: left;
        padding-left: 5px;
        padding-right: 5px;
    }

    #new_in_l {
        height: auto;
        background-color: none;
        float: left;
        padding-right: 10px;
    }

    #new_in_l button {
        height: 40px;
        width: 60%;
        background-color: black;
        color: white;
        border: none;
        font-size: 14px;
        border-radius: 2px;
        margin-bottom: 50px;
        display: none;

    }

    #new_in_l h4 {
        padding-top: 60px;
    }

    #new_in_mobile_button {
        display: block;
    }

    #new_in_mobile_button button {
        height: 40px;
        width: 100%;
        background-color: black;
        color: white;
        border: none;
        font-size: 14px;
        border-radius: 2px;
        margin-top: 30px;
    }

    #new_in_mobile_button button:hover {
        height: 40px;
        width: 100%;
        background-color: #ae160f;
        color: white;
        border: none;
        font-size: 14px;
        border-radius: 2px;
        margin-top: 30px;

    }


    /*  New in r right side ends */

    /* all eyes starts */

    #all_eyes_bg {
        height: auto;
        background-color: none;
        float: left;
        margin-top: 0px;
        margin-bottom: 30px;
        padding-left: 5px;
        padding-right: 5px;
    }

    #all_eyes_main {
        height: auto;
        background-color: none;
        float: left;
        padding-left: 5px;
        padding-right: 5px;
    }

    #all_eyes_l {
        height: auto;
        background-color: none;
        float: left;
        padding-right: 10px;
    }

    #all_eyes_l button {
        height: 40px;
        width: 60%;
        background-color: black;
        color: white;
        border: none;
        font-size: 14px;
        border-radius: 2px;
        margin-bottom: 50px;
        display: none;

    }

    #all_eyes_l h4 {
        padding-top: 60px;
    }

    #all_eyes_mobile_button {
        display: block;
    }

    #all_eyes_mobile_button button {
        height: 40px;
        width: 100%;
        background-color: black;
        color: white;
        border: none;
        font-size: 14px;
        border-radius: 2px;
        margin-top:30px;
    }

    #all_eyes_mobile_button button:hover {
        height: 40px;
        width: 100%;
        background-color: #ae160f;
        color: white;
        border: none;
        font-size: 14px;
        border-radius: 2px;
        margin-top: 30px;

    }


    /*  All eyes right side ends */


    /* Best SEllers Starts */

#best_sellers_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 50px;
    padding-bottom: 50px;
}

#best_sellers_heading {
    height: auto;
    background-color: none;
    float: left;
    text-align: center;
}

.best_sellers_main_bg {
    height: auto;
    background-color: none;
    float: left;
    padding: 20px;

}

.best_sellers_main {
    height: auto;
    background-color: none;
    float: left;
}

.best_sellers_main h4 {
    color: white;
    margin-top: 350px;
    margin-left: 0px;
}

#best_sellers_tag {
    height: 50px;
    background-color: none;
    float: left;
    margin-top: -390px;
    padding-left: 0px;
}

#best_sellers_tag button {
    border-radius: 20px;
}

.best_sellers_img_one {
    display: block;
}

.best_sellers_img_two {
    display: none;
}

.best_sellers_img_one,
.best_sellers_img_two {
    height: auto;
    object-fit: cover;
    /* or 'contain' based on need */
}

.best_sellers_main_content {
    height: auto;
    background-color: none;
    float: left;
    color: white;
    padding-top: 10px;
}

.best_sellers_main_content h6 {
    color: black;
    padding-top: 10px;
    font-size: 20px;
    margin-bottom: -3px;
}

.best_sellers_main_content p {
    color: black;
    font-size: 16px;
    padding-top: 10px;
}

.best_sellers_main_content span {
    color: black;
    font-size: 14px;
    text-decoration: underline;
}

#best_sellers_button_bg {
    height: 100px;
    background-color: none;
    float: left;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#best_sellers_button {
    height: 40px;
    width: auto;
    background-color: black;
    color: white;
    border: none;
    margin-top: 5px;
    padding: 20px;
}

#best_sellers_button:hover {
    background-color: #ae160f;
    color: white;
}

/* Best SEllers Ends */

/* Image slider Starts */

#image_slider {
    height: auto;
    background-color: none;
    float: left;
    padding-top: 0px;
    padding-bottom: 0px;
}

#image_slider_heading{
    height: auto;
    background-color: none;
    float: left;
    margin-top: -285px;
    padding-left: 0px;
}

#image_slider_heading h2{
    font-size: 40px;
}

#image_slider_down_text{
    height: auto;
    background-color: none;
    float: left;
}

#image_slider_text_bg{
    height: auto;
    background-color: none;
    float: left;
    padding-top: 50px;
    padding-bottom: 50px;
    /* padding-left: 15px; */
    /* padding-right: 15px; */
}

#image_slider_text_main{
    height: auto;
    background-color: none;
    float: left;
}


#image_slider_text_l{
    height: auto;
    background-color: none;
    float: left;
    padding-bottom: 50px;
}

#image_slider_text_r{
    height: auto;
    background-color: none;
    float: left;
    padding-bottom: 50px;
}




/* Image slider Ends */

/*  NEw Arrivals Starts */

#new_arrivals_bg {
    height: auto;
    background-color: none;
    float: left;
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
}

#new_arrivals_heading {
    height: auto;
    background-color: none;
    float: left;
    padding-bottom: 20px;
}

.new_arrivals_main_bg {
    height: auto;
    background-color: none;
    float: left;
    padding: 0px;

}

.new_arrivals_main {
    height: auto;
    background-color: none;
    float: left;
}

.new_arrivals_main h4 {
    color: white;
    margin-top: 350px;
    margin-left: 0px;
}

#new_arrivals_tag {
    height: 50px;
    background-color: none;
    float: left;
    margin-top: -390px;
    padding-left: 0px;
}

#new_arrivals_tag button {
    border-radius: 20px;
    padding-left: 0px;
    padding-right: 0px;
}

.new_arrivals_img_one {
    display: block;
}

.new_arrivals_img_two {
    display: none;
}

.new_arrivals_img_one,
.new_arrivals_img_two {
    height: auto;
    object-fit: cover;
    /* or 'contain' based on need */
}

.new_arrivals_main_content {
    height: auto;
    background-color: none;
    float: left;
    color: white;
    padding-top: 10px;
    padding-bottom: 20px;
}

.new_arrivals_main_content h6 {
    color: black;
    padding-top: 10px;
    font-size: 14px;
}

.new_arrivals_main_content span {
    color: black;
    font-size: 16px;
}

#new_arrivals_button_bg {
    height: 100px;
    background-color: none;
    float: left;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}

#new_arrivals_button {
    height: 40px;
    width: auto;
    background-color: black;
    color: white;
    border: none;
    margin-top: 5px;
    padding: 0px;
}

#new_arrivals_button:hover {
    background-color: #ae160f;
    color: white;
}


/* NEw Arrivals Ends */

/* category page starts */

#category_products_bg {
    padding: 0px;
}

/* category page ends */

    #contact_slider img {
        height: 120px;
    }



   
    /* checkout mobile vewi  */

    #checkout_address_cart_bg {
        position: static;
        width: 100%;
        height: auto;
        margin-top: 30px;
        padding: 0 15px;
    }

    #checkout_address_cart_products_bg {
        height: none;
        overflow: visible;
        padding-right: 0;
    }

    /* Payment Options */


    #packaging_option_radio_img img {
        /* height: 120px;
        width: 100%; */
        padding-top: 10px;
    }

    /* Cart */

    /* Payment option logo  */

    #payment_option_radio_img img {
        height: auto;
        object-fit: cover;
        margin-top: 20px;
    }

    /* gift cards */

    .delivery-option-column-two {
        padding-top: 10px;
    }

    /* Gift ccard image */

    .gift_cards_img_one {
        height: 300px;
        width: 100%;
    }

    /* Home page our partners */

    /* #our_partners_tag {
        height: 400px;
        margin-top: -400px;
    }
    #our_partners_tag button {
        margin-top: 40%;
    } */

    /* Home page etsy */

    /* #etsy_tag {
        height: 400px;
        margin-top: -400px;
    }
    #etsy_tag button {
        margin-top: 40%;
    } */

    /* Home page Amazon */

    /* #amazon_tag {
        height: 400px;
        margin-top: -400px;
    }
    #amazon_tag button {
        margin-top: 40%;
    } */

    /* Home page Ebay */

    /* #ebay_tag {
        height: 400px;
        margin-top: -400px;
    }
    #ebay_tag button {
        margin-top: 40%;
    } */

    /* Product Details */

    

    #how_to_wear_img img {
        height: auto;
        object-fit: cover;
        /* or 'contain' based on need */
    }

    /* Cart Page Starts */

    #cart_bg {
        padding-left: 0px;
        padding-right: 0px;
    }

    #cart_shop_bag_product_img img {
        height: auto;
        object-fit: cover;
    }

    #cart_shop_bag_product_description {
        padding-top: 20px;
        padding-left: 20px;
    }


    /* Order Summary */

    #cart_order_summary_bg {
        padding-left: 0px;
        padding-right: 0px;
    }

    #cart_order_summary_local_tax_may_apply i {
        padding-left: 0px;
        padding-right: 0px;
    }

    #cart_order_summary_note {
        padding: 10px 20px 10px 20px;
    }

    #cart_order_summary_checkout_btn {
        height: auto;
        background-color: none;
        float: left;
    }

    #cart_order_summary_checkout_btn button {
        height: 40px;
        width: 100%;
        background-color: black;
        color: white;
        border-radius: 2px;
        border: none;
        margin-top: 5px;
        padding: 10px 0px 10px 0px;
        /* padding: top right bottom left; */
    }

    /* Cccategories home page images */

    .categories_img_one,
    .categories_img_two {
        height: auto;
        object-fit: cover;
    }

    /* Cart Page Ends */

    /* Product Detatils starts  */

    #p_add_to_wishlist button {
        margin-left: 0%;
        margin-top: 10px;
    }

    /* Product Detatils ends */

    /* Payment options starts */

    #stripe_radio{
        margin-top: 12px;
    }
    
    /* Payment options ends */

    /* Three Images */

  .second-porter{
    margin-top: 50px;
  }

  .third-porter{
    margin-top: 50px;
  }

  /* three images ends */

  /* Ultimate Style starts  */

  .ultimate-text{
    margin-left: 0px;
    margin-left: 5%;
    margin-top: -80px;
    width: 90%;

  }

  /* Ultimate Style ends  */

  .image-secction-text{
    margin-left: 0px;
    margin-left: 5%;
    margin-top: -80px;
    width: 90%;
    position: relative;
  }

  /* porter-bg-image  starts*/

  .porter-bg-image{
    padding: 0px;
  }
  /* porter-bg-image  ends*/

  /* Product details page starts */

  /*  */

/* Product Details Page Starts */




  /*  */

  #product_details_description {
    height: auto;
}

#product_details_description {
    height: auto !important;
    background-color: none;
    float: left;
    padding-top: 80px;
    padding-bottom: 50px;
    position: relative;
    /* height: 6000px; */
    /* Your scrolling content height */
}


#product_details_description_main {
    height: auto;
    background-color: none;
    float: left;
    /* position: sticky;
    top: 0px;
    height: 100vh;
    overflow-y: auto;
    padding-right: 10px; */
}

/* Hide the scrollbar but still allow scrolling */
#product_details_description_main::-webkit-scrollbar {
    /* width: 0px; */
    /* Hide scrollbar */
    /* height: 0px; */
    /* For horizontal scrolling if needed */
}

#product_details_description_main {
    /* -ms-overflow-style: none; */
    /* For IE and Edge */
    /* scrollbar-width: none; */
    /* For Firefox */
}

  /* Product details page ends */


}

/* ============ mobile view .end// ============ */

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .fs-md-3 {
        font-size: 1.25rem !important;
    }
}

@media (min-width: 768px) {
    .fs-md-3 {
        font-size: 1.75rem !important;
    }
}

/* Hide mobile menu on desktop */
@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}