.banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .banner-wrapper {
    aspect-ratio: 16 / 9; /* Better for mobile */
  }
}
@media (max-width: 991px) {
    .ad-banner {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}


@media only screen and (max-width: 767px) {
    .rts-section-gap {
         padding: 2px 0;
    }
}


.partner-ticker {
    background: linear-gradient(90deg, #0f172a, #1e293b);
    color: #ffffff;
    padding: 10px 0;
    overflow: hidden;
    border-radius: 10px;
    margin: 12px 0 24px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.ticker-content {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: tickerMove 14s linear infinite;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

@keyframes tickerMove {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

/* ===============================
   HEADER PROFESSIONAL DESIGN
=================================*/

.header-area {
    background: #ffffff;
    border-bottom: 1px solid #eef2f7;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

/* Logo */
.header-area .logo img {
    max-height: 42px;
}

/* Navigation Links */
.header-area .main-menu ul li a {
    font-weight: 500;
    color: #1e293b;
    padding: 12px 18px;
    transition: 0.3s ease;
}

.header-area .main-menu ul li a:hover {
    color: #4f46e5;
}

/* Active Menu */
.header-area .main-menu ul li.active a {
    color: #4f46e5;
}

/* Right Side Icons */
.header-area .action-icons i {
    font-size: 18px;
    color: #475569;
    transition: 0.3s ease;
}

.header-area .action-icons i:hover {
    color: #4f46e5;
}

/* ===============================
   SEARCH BAR PROFESSIONAL LOOK
=================================*/

.header-search {
    background: #f1f5f9;
    border-radius: 10px;
    padding: 6px 12px;
    border: 1px solid transparent;
    transition: 0.3s ease;
}

.header-search:focus-within {
    background: #ffffff;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}

.header-search input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 14px;
}

/* ===============================
   CATEGORY MENU BAR
=================================*/

.category-menu-wrapper {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.category-menu-wrapper ul li a {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    padding: 10px 14px;
    transition: 0.3s ease;
}

.category-menu-wrapper ul li a:hover {
    background: #f1f5f9;
    border-radius: 6px;
    color: #4f46e5;
}

/* ===============================
   STICKY HEADER EFFECT
=================================*/

.header-sticky {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #ffffff;
}

/* ===============================
   MOBILE HEADER FIX
=================================*/

@media (max-width: 992px) {

    .header-area .main-menu {
        background: #ffffff;
        padding: 20px;
    }

    .header-area .main-menu ul li a {
        padding: 10px 0;
        display: block;
    }

}







/* Modal overlay */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal box */
.modal-content {
  background: #fff;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 0 20px;
  border-radius: 10px;
  position: relative;
}

/* Close button */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

/* Tab control */
/*.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}*/

/* Mobile */
@media (max-width: 480px) {
  .modal-content {
    margin: 10px;
    padding: 15px;
  }
}
.phone-box{
    display: flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    height: 40px;
    padding: 0 0px 0 14px;
    background: #fff;
    max-width: 420px;
    transition: 0.25s ease;
}

.phone-box:focus-within{
    border-color: #6366f1;
    box-shadow: 0 0 0 4px rgba(99,102,241,0.15);
}

.country-inside{
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #374151;
   /* padding-right: 14px;
    margin-right: 14px;*/
    border-right: 1px solid #e5e7eb;
    white-space: nowrap;
}

.phone-input{
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
}



/* Prevent image distortion */
.banner-img,
.ad-banner {
  object-fit: cover;
}

/* Make carousel inner & items fill height */

.gbc-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.gbc-img {
  aspect-ratio: 7 / 6;   /* desktop */
}

@media (max-width: 768px) {
  .gbc-img {
   
    object-fit: scale-down;
    aspect-ratio: 16 / 5;   /* desktop */
  }
  
}

</style>
<style>
    .swal2-input,
.swal2-select,
.swal2-textarea {
  display: none !important;
}

/* ===============================
   GLOBAL IMPROVEMENTS
=================================*/
a {
    text-decoration: none;
}

.section-gap {
    padding: 70px 0;
}

.card,
.single-shopping-card-one,
.single-category-one {
    border-radius: 14px;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
}

.container {
    max-width: 1320px;
}

/* ===============================
   FEATURED CATEGORY SECTION (Overlay on Slider)
=================================*/

.rts-category-area {
    background: rgba(255, 255, 255, 0.75);  /* transparent white */
    padding: 60px 0;
    position: relative;
    z-index: 5;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.title-area-between .title-left {
    font-size: 20px;
    font-weight: 500;
    color: #1e293b;
}

/* Category Card */
.single-category-one {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    transition: 0.3s ease;
    border: 1px solid #f1f5f9;
}

.single-category-one:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: #e0e7ff;
}

.single-category-one img {
    height: 80px;
    object-fit: contain;
    margin-bottom: 10px;
}

.single-category-one p {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0;
}

/* Swiper arrows styling */
.swiper-button-prev,
.swiper-button-next {
    background: #ffffff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.swiper-button-prev i,
.swiper-button-next i {
    font-size: 14px;
    color: #334155;
}


/* ===============================
   PRODUCT CARDS PROFESSIONAL LOOK
=================================*/

.single-shopping-card-one {
    background: #ffffff;
    border-radius: 14px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    height: 100%;
}

.single-shopping-card-one:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.thumbnail-preview img {
    height: 180px;
    object-fit: contain;
}

.body-content .title {
    font-size: 15px;
    font-weight: 500;
}

.price-area .current {
    font-weight: 600;
    color: #1e293b;
}

/* ===============================
   FEATURE CARDS (Shipping / Safety etc)
=================================*/

.single-feature-card {
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s ease;
}

.single-feature-card:hover {
    transform: scale(1.02);
}

/* ===============================
   WEEKLY DEALS SECTION
=================================*/

.weekly-best-deals-top-primary-wrapper {
    border-radius: 16px;
    overflow: hidden;
}

/* ===============================
   FOUR FEATURE SIDE LIST
=================================*/

.feature-product-list-wrapper {
    background: #ffffff;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* ===============================
   SERVICE ICON SECTION
=================================*/

.single-short-service-area-start {
    /*background: #ffffff;*/
    padding: 0px;
    border-radius: 14px;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.single-short-service-area-start:hover {
    transform: translateY(-6px);
}

/* ===============================
   BUTTON PROFESSIONAL LOOK
=================================*/

.btn-primary {
    background: #4f46e5;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
}

.btn-primary:hover {
    background: #4338ca;
}

.btn-outline-dark {
    border-radius: 8px;
}




</style>