/**
 * RoikhikWoo Global Style Manifest (Modern Sass Version)
 * 
 * This is the central entry point. We use @use instead of @import for 
 * modern Sass compatibility and to prevent variable collisions.
 *
 * @package RoikhikWoo
 * @author Roikhik Architect
 */
/**
 * Bengali Font: SiyamRupali
 * Updated Path: Relative to the compiled assets/css/main.css file.
 */
@font-face {
  font-family: "SiyamRupali";
  src: url("../frontend/fonts/SiyamRupali.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0980-09FF;
}
/**
 * English/Global Font: Lato (Regular)
 */
@font-face {
  font-family: "Lato";
  src: url("../frontend/fonts/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/**
 * English/Global Font: Lato (Bold)
 */
@font-face {
  font-family: "Lato";
  src: url("../frontend/fonts/Lato-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/**
 * RoikhikWoo Master Styling Engine - ELITE EDITION
 * 
 * This file serves as the core layout and typography engine. It enforces
 * the custom font stack, sets up the elite container system, and ensures
 * perfect responsiveness across all devices.
 *
 * @package RoikhikWoo
 * @author Roikhik Architect
 */
/**
 * RoikhikWoo Design System - Global Variables
 * 
 * This file defines the core design tokens including colors, typography, 
 * spacing, and breakpoints. Every value is curated for an elite user experience.
 *
 * @package RoikhikWoo
 * @author Roikhik Architect
 */
*, ::after, ::before {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #f5f5f5;
  color: #212121;
  font-family: "SiyamRupali", "Lato", sans-serif !important;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.title, .product-title, .wd-entities-title,
.menu-item a, input, button, select, textarea {
  font-family: "SiyamRupali", "Lato", sans-serif !important;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

.rk-container {
  width: 100%;
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .rk-container {
    padding-right: 15px;
    padding-left: 15px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
}
a {
  color: #da5306;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover {
  color: #b34405;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.rk-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  .rk-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .rk-hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .rk-hide-desktop {
    display: none !important;
  }
}

/**
 * RoikhikWoo Master Styling Engine - ELITE EDITION
 * 
 * This file serves as the core layout and typography engine. It enforces
 * the custom font stack, sets up the elite container system, and ensures
 * perfect responsiveness across all devices.
 *
 * @package RoikhikWoo
 * @author Roikhik Architect
 */
/**
 * RoikhikWoo Elite Header Design - ATOMIC FIXED VERSION
 * 
 * Restores My Account premium UI, Top Bar linear layout, and 
 * implements the Horizontal Category Engine.
 *
 * @package RoikhikWoo
 * @author Roikhik Architect
 */
/**
 * RoikhikWoo Master Styling Engine - ELITE EDITION
 * 
 * This file serves as the core layout and typography engine. It enforces
 * the custom font stack, sets up the elite container system, and ensures
 * perfect responsiveness across all devices.
 *
 * @package RoikhikWoo
 * @author Roikhik Architect
 */
/**
 * RoikhikWoo Elite Mixin Library - FIXED VERSION
 * 
 * This file contains reusable Sass mixins. Fixed syntax errors 
 * for Sass compiler compatibility.
 *
 * @package RoikhikWoo
 * @author Roikhik Architect
 */
#rk-masthead {
  background-color: #ffffff;
  position: relative;
  z-index: 1000;
  width: 100%;
  /**
    * 0. MOBILE & TABLET HEADER STYLING
    * Dedicated elite layout for small screens (< 992px).
    */
}
#rk-masthead .rk-mobile-header {
  background-color: #ffffff;
  height: 60px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f1f1f1;
  position: relative;
  z-index: 1010;
}
#rk-masthead .rk-mobile-header .rk-mobile-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
#rk-masthead .rk-mobile-header .rk-icon-btn {
  background: none;
  border: none;
  font-size: 22px;
  color: #1a1a1a;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#rk-masthead .rk-mobile-header .rk-icon-btn:hover {
  color: #da5306;
}
#rk-masthead .rk-mobile-header .rk-mobile-logo {
  flex: 1;
  display: flex;
  justify-content: center;
}
#rk-masthead .rk-mobile-header .rk-mobile-logo img {
  max-height: 38px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
#rk-masthead .rk-mobile-header .rk-mobile-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}
#rk-masthead .rk-mobile-header .rk-mobile-actions .rk-mobile-cart-link {
  position: relative;
  font-size: 20px;
  color: #1a1a1a;
  padding: 10px;
  text-decoration: none;
}
#rk-masthead .rk-mobile-header .rk-mobile-actions .rk-mobile-cart-link .rk-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: #da5306;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  font-size: 9px;
  background-color: #da5306;
}
#rk-masthead .rk-mobile-header .rk-mobile-search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  padding: 15px 0;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  display: none;
  border-top: 1px solid #f9f9f9;
  z-index: 1009;
}
#rk-masthead .rk-mobile-header .rk-mobile-search-overlay.rk-is-active {
  display: block;
  animation: rkFadeInDown 0.3s ease-out;
}
#rk-masthead .rk-mobile-header .rk-mobile-search-overlay .rk-mobile-search-form {
  display: flex;
  position: relative;
}
#rk-masthead .rk-mobile-header .rk-mobile-search-overlay .rk-mobile-search-form .rk-search-field {
  width: 100%;
  height: 45px;
  padding: 0 50px 0 20px;
  border: 2px solid #f1f1f1;
  border-radius: 8px;
  font-size: 14px;
  background: #f9f9f9;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#rk-masthead .rk-mobile-header .rk-mobile-search-overlay .rk-mobile-search-form .rk-search-field:focus {
  border-color: #da5306;
  background: #ffffff;
}
#rk-masthead .rk-mobile-header .rk-mobile-search-overlay .rk-mobile-search-form .rk-search-submit {
  position: absolute;
  right: 0;
  top: 0;
  height: 45px;
  width: 50px;
  background: none;
  border: none;
  color: #da5306;
  font-size: 18px;
  cursor: pointer;
}
#rk-masthead .rk-top-bar {
  background-color: #f1f2f4;
  border-bottom: 1px solid #e0e0e0;
  font-size: 12px;
  color: #444444;
}
#rk-masthead .rk-top-bar .rk-top-bar-inner {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  height: 42px;
  flex-wrap: nowrap !important;
}
#rk-masthead .rk-top-bar .rk-top-left, #rk-masthead .rk-top-bar .rk-top-right {
  display: flex !important;
  align-items: center !important;
  width: auto !important;
}
#rk-masthead .rk-top-bar .rk-hotline-info {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
#rk-masthead .rk-top-bar .rk-hotline-info i {
  font-size: 16px;
  color: #666;
  margin-right: 8px;
}
#rk-masthead .rk-top-bar .rk-hotline-info .rk-number {
  font-weight: 700;
  color: #1a1a1a;
  margin-left: 4px;
}
#rk-masthead .rk-top-bar .rk-hotline-info .rk-time {
  color: #888;
  margin-left: 8px;
  font-size: 11px;
}
#rk-masthead .rk-top-bar .rk-top-nav-list {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
#rk-masthead .rk-top-bar .rk-top-nav-list li {
  display: flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  margin: 0 !important;
}
#rk-masthead .rk-top-bar .rk-top-nav-list li::before {
  display: none !important;
}
#rk-masthead .rk-top-bar .rk-top-nav-list li:not(:last-child)::after {
  content: "|";
  color: #ccc;
  margin: 0 12px;
  font-weight: 300;
}
#rk-masthead .rk-top-bar .rk-top-nav-list li a {
  color: #444 !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#rk-masthead .rk-top-bar .rk-top-nav-list li a:hover {
  color: #da5306 !important;
}
#rk-masthead .rk-main-header {
  padding: 15px 0 0 0;
  border-bottom: none;
  background-color: #ffffff;
}
#rk-masthead .rk-main-header .rk-main-header-inner {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 60px;
}
#rk-masthead .rk-main-header .rk-header-logo {
  flex-shrink: 0;
}
#rk-masthead .rk-main-header .rk-header-logo img {
  height: 50px;
  width: auto;
  max-width: 220px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#rk-masthead .rk-main-header .rk-header-logo img:hover {
  transform: scale(1.02);
}
#rk-masthead .rk-main-header .rk-header-search {
  flex: 1;
  max-width: 850px;
  position: relative;
}
#rk-masthead .rk-main-header .rk-header-search .rk-search-wrapper {
  display: flex;
}
#rk-masthead .rk-main-header .rk-header-search .rk-search-wrapper .rk-search-field {
  width: 100%;
  height: 42px;
  padding: 0 50px 0 20px;
  border: 1px solid #d1d1d1;
  border-radius: 99px;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#rk-masthead .rk-main-header .rk-header-search .rk-search-wrapper .rk-search-field:focus {
  border-color: #da5306;
  outline: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
#rk-masthead .rk-main-header .rk-header-search .rk-search-wrapper .rk-search-submit {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  color: #da5306;
  font-size: 18px;
  cursor: pointer;
}
#rk-masthead .rk-main-header .rk-header-search .rk-ajax-search-results {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  z-index: 1001;
  display: none;
}
#rk-masthead .rk-main-header .rk-header-search .rk-ajax-search-results.rk-is-active {
  display: block;
  animation: rkFadeInUp 0.3s;
}
#rk-masthead .rk-main-header .rk-header-actions {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 35px;
}
#rk-masthead .rk-main-header .rk-header-actions .rk-action-item a {
  text-decoration: none !important;
  color: inherit !important;
}
#rk-masthead .rk-main-header .rk-header-actions .rk-action-item .rk-action-icon-wrapper {
  position: relative;
  font-size: 24px;
  color: #1a1a1a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#rk-masthead .rk-main-header .rk-header-actions .rk-action-item .rk-action-icon-wrapper:hover {
  color: #da5306;
}
#rk-masthead .rk-main-header .rk-header-actions .rk-action-item .rk-action-icon-wrapper .rk-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: #da5306;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
#rk-masthead .rk-main-header .rk-header-actions .rk-account .rk-account-content {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
}
#rk-masthead .rk-main-header .rk-header-actions .rk-account .rk-account-content i {
  font-size: 26px;
  color: #1a1a1a;
}
#rk-masthead .rk-main-header .rk-header-actions .rk-account .rk-account-content .rk-account-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
#rk-masthead .rk-main-header .rk-header-actions .rk-account .rk-account-content .rk-account-text .rk-sub-text {
  font-size: 11px;
  color: #666666;
}
#rk-masthead .rk-main-header .rk-header-actions .rk-account .rk-account-content .rk-account-text .rk-main-text {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: capitalize;
}
#rk-masthead .rk-main-header .rk-header-actions .rk-account:hover i, #rk-masthead .rk-main-header .rk-header-actions .rk-account:hover .rk-main-text {
  color: #da5306;
}
#rk-masthead .rk-main-header .rk-header-actions .rk-cart .rk-cart-contents {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
}
#rk-masthead .rk-main-header .rk-header-actions .rk-cart .rk-cart-contents .rk-cart-total {
  font-size: 16px;
  font-weight: 700;
  color: #da5306;
}
#rk-masthead .rk-dual-navigation {
  background-color: #ffffff;
  position: relative;
  z-index: 99;
}
#rk-masthead .rk-dual-navigation ul, #rk-masthead .rk-dual-navigation li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
#rk-masthead .rk-dual-navigation ul::before, #rk-masthead .rk-dual-navigation li::before {
  display: none !important;
}
#rk-masthead .rk-dual-navigation .rk-nav-inner {
  display: flex !important;
  align-items: center;
  width: 100%;
}
#rk-masthead .rk-dual-navigation {
  /**
   * ROW 1: PRIMARY NAVIGATION (Centered & Bold)
   * Centered alignment with increased font size and top padding.
   */
}
#rk-masthead .rk-dual-navigation .rk-nav-primary-row {
  border-top: none;
  border-bottom: 1px solid #f1f1f1;
  padding-top: 20px;
  min-height: 65px;
  display: flex;
  align-items: center;
}
#rk-masthead .rk-dual-navigation .rk-nav-primary-row .rk-nav-inner {
  justify-content: center !important;
}
#rk-masthead .rk-dual-navigation .rk-nav-primary-row .rk-primary-menu-list {
  display: flex;
  gap: 35px;
}
#rk-masthead .rk-dual-navigation .rk-nav-primary-row .rk-primary-menu-list li a {
  font-size: 16.8px;
  font-weight: 400;
  color: #222222;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#rk-masthead .rk-dual-navigation .rk-nav-primary-row .rk-primary-menu-list li a:hover {
  color: #da5306;
}
#rk-masthead .rk-dual-navigation {
  /**
   * ROW 2: SECONDARY NAVIGATION (Lower Bar with Mega Menu)
   * Hosts Authors, Subjects, Publishers with Icons and Tiers.
   */
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row {
  height: 48px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-nav-inner {
  justify-content: center !important;
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list {
  display: flex;
  gap: 35px;
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat {
  position: static;
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-main-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 14.5px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-main-cat-link .rk-main-chevron {
  font-size: 9px;
  opacity: 0.5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-main-cat-link:hover {
  color: #da5306;
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-main-cat-link:hover .rk-main-chevron {
  opacity: 1;
  transform: rotate(180deg);
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-mega-full-width-box {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-top: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease-out;
  z-index: 1005;
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat:hover .rk-mega-full-width-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-mega-flex-container {
  display: flex;
  min-height: 500px;
  max-width: 1500px;
  margin: 0 auto;
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-mega-sidebar-left {
  width: 320px;
  background: #f9fafc;
  border-right: 1px solid #eee;
  padding: 25px 0;
  position: relative;
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-mega-sidebar-left::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100vw;
  height: 100%;
  background: inherit;
  z-index: -1;
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-mega-sidebar-left .rk-sub-link {
  display: flex;
  align-items: center;
  padding: 12px 30px;
  color: #333;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-mega-sidebar-left .rk-sub-link .rk-sub-icon-wrapper {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-mega-sidebar-left .rk-sub-link .rk-sub-icon-wrapper img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-mega-sidebar-left .rk-sub-cat-item:hover .rk-sub-link {
  background: #fff;
  color: #da5306;
  padding-left: 35px;
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-mega-sidebar-left .rk-sub-cat-item:hover .rk-sub-link .rk-sub-icon-wrapper {
  background: #fff1eb;
  transform: scale(1.1);
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-mega-sidebar-left .rk-mega-content-right {
  position: absolute;
  top: 0;
  left: 320px;
  width: 1180px;
  height: 100%;
  background: #fff;
  padding: 45px 55px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
#rk-masthead .rk-dual-navigation .rk-nav-secondary-row .rk-horizontal-nav-list .rk-main-cat .rk-mega-sidebar-left .rk-sub-cat-item:hover > .rk-mega-content-right {
  opacity: 1;
  visibility: visible;
}
#rk-masthead .rk-dual-navigation .rk-sub-sub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
#rk-masthead .rk-dual-navigation .rk-sub-sub-grid .rk-ss-group .rk-ss-title {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
  text-decoration: none;
  border-bottom: 1px dotted #666464;
  padding-bottom: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#rk-masthead .rk-dual-navigation .rk-sub-sub-grid .rk-ss-group .rk-ss-title:hover {
  color: #da5306;
}
#rk-masthead .rk-dual-navigation .rk-sub-sub-grid .rk-ss-group .rk-sss-link {
  display: block;
  font-size: 13.5px;
  color: #666;
  text-decoration: none;
  padding: 4px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#rk-masthead .rk-dual-navigation .rk-sub-sub-grid .rk-ss-group .rk-sss-link:hover {
  color: #da5306;
  transform: translateX(6px);
}

.rk-site-header.rk-is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  animation: rkSlideDown 0.4s;
}
.rk-site-header.rk-is-sticky #rk-masthead .rk-top-bar, .rk-site-header.rk-is-sticky #rk-masthead .rk-dual-navigation {
  display: none !important;
}
.rk-site-header.rk-is-sticky #rk-masthead .rk-main-header {
  padding: 15px 0;
}
.rk-site-header.rk-is-sticky #rk-masthead .rk-main-header .rk-header-logo img {
  height: 42px;
}
.rk-site-header.rk-is-sticky #rk-masthead .rk-main-header .rk-search-field {
  height: 40px;
  background: #f5f6f8;
  border: none;
}

@media (max-width: 768px) {
  .rk-site-header .rk-top-bar,
  .rk-site-header .rk-main-header,
  .rk-site-header .rk-dual-navigation {
    display: none !important;
  }
  .rk-site-header .rk-mobile-header {
    display: block !important;
  }
}
@media (min-width: 992px) {
  .rk-mobile-header {
    display: none !important;
  }
}
@keyframes rkFadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes rkSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/**
 * Mobile Sidebar Styling for RoikhikWoo
 * Handles 4-layer drill-down sliding mechanism and grid layout.
 * 
 * @package RoikhikWoo
 */
/* 1. Typography - Performance Optimized Auto Font Switch Logic */
/* Latin/English Characters (U+0000-007F) - Using Lato */
@font-face {
  font-family: "RKMainFont";
  src: url("../frontend/fonts/Lato-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-007F;
}
/* Bengali Characters (U+0980-09FF) - Using SiyamRupali */
@font-face {
  font-family: "RKMainFont";
  src: url("../frontend/fonts/SiyamRupali.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0980-09FF;
}
/* 2. Variables (Can be mapped to _master.scss later) */
/* 3. Mobile Sidebar Drawer & Overlay Logic */
.rk-mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.rk-mobile-sidebar-drawer {
  position: fixed;
  top: 0;
  left: -320px; /* Initially hidden outside the screen */
  width: 320px;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.rk-mobile-sidebar-drawer .rk-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
}
.rk-mobile-sidebar-drawer .rk-sidebar-header .rk-sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
}
.rk-mobile-sidebar-drawer .rk-sidebar-header .rk-icon-btn {
  background: none;
  border: none;
  padding: 5px;
  font-size: 20px;
  cursor: pointer;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rk-mobile-sidebar-drawer .rk-sidebar-content {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* 4. Active State: When Menu is Open */
body.rk-mobile-menu-open {
  overflow: hidden; /* Prevent background scrolling */
}
body.rk-mobile-menu-open .rk-mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
}
body.rk-mobile-menu-open .rk-mobile-sidebar-drawer {
  left: 0; /* Slide in the drawer */
}

/* 5. Internal Menu Wrapper - Tabbed Architecture Edition */
.rk-mobile-menu-wrapper {
  width: 100%;
  max-width: 100%;
  background-color: #ffffff;
  font-family: "RKMainFont", sans-serif;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Tab Navigation Styling */
}
.rk-mobile-menu-wrapper .rk-menu-tabs-nav {
  display: flex;
  width: 100%;
  background-color: #f7f7f7;
  border-bottom: 1px solid #eeeeee;
}
.rk-mobile-menu-wrapper .rk-menu-tabs-nav .rk-tab-btn {
  flex: 1;
  padding: 12px 10px;
  border: none;
  background: none;
  font-family: "RKMainFont", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}
.rk-mobile-menu-wrapper .rk-menu-tabs-nav .rk-tab-btn i {
  font-size: 16px;
}
.rk-mobile-menu-wrapper .rk-menu-tabs-nav .rk-tab-btn.rk-active {
  color: #222;
  background-color: #ffffff;
  border-bottom: 2px solid #222;
}
.rk-mobile-menu-wrapper {
  /* Tab Content Area - Clean Production Version */
}
.rk-mobile-menu-wrapper .rk-tabs-main-content {
  flex: 1;
  display: block;
  position: relative;
  background-color: #ffffff;
}
.rk-mobile-menu-wrapper .rk-tabs-main-content .rk-tab-panel {
  display: none;
}
.rk-mobile-menu-wrapper .rk-tabs-main-content .rk-tab-panel.rk-active {
  display: block;
  animation: rkFadeIn 0.3s ease-in-out;
}
.rk-mobile-menu-wrapper {
  /* Elegant Fade-in Animation for Tabs */
}
@keyframes rkFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rk-mobile-menu-wrapper {
  /* Tab 2: Premium Navigation Menu Styling */
}
.rk-mobile-menu-wrapper .rk-mobile-main-nav {
  padding: 10px 0;
}
.rk-mobile-menu-wrapper .rk-mobile-main-nav .rk-mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rk-mobile-menu-wrapper .rk-mobile-main-nav .rk-mobile-nav-list li {
  margin: 0 15px;
  border-bottom: 1px solid #f0f0f0;
}
.rk-mobile-menu-wrapper .rk-mobile-main-nav .rk-mobile-nav-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5px;
  font-size: 14px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  /* Premium Arrow Indicator on Right */
}
.rk-mobile-menu-wrapper .rk-mobile-main-nav .rk-mobile-nav-list li a:after {
  content: "\f105"; /* FontAwesome Angle Right */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 14px;
  color: #ccc;
  transition: all 0.3s ease;
}
.rk-mobile-menu-wrapper .rk-mobile-main-nav .rk-mobile-nav-list li a:hover {
  color: #222;
  padding-left: 10px;
}
.rk-mobile-menu-wrapper .rk-mobile-main-nav .rk-mobile-nav-list li a:hover:after {
  color: #222;
  transform: translateX(5px);
}
.rk-mobile-menu-wrapper .rk-mobile-main-nav .rk-mobile-nav-list li:last-child {
  border-bottom: none;
}
.rk-mobile-menu-wrapper .rk-mobile-main-nav {
  /* Message for empty menu location */
}
.rk-mobile-menu-wrapper .rk-mobile-main-nav .rk-menu-not-assigned {
  padding: 40px 20px;
  text-align: center;
  color: #999;
  font-size: 13px;
  font-style: italic;
}
.rk-mobile-menu-wrapper {
  /* Global Fixed Header - Category Tab Title */
}
.rk-mobile-menu-wrapper .rk-menu-global-header {
  padding: 10px 15px;
  background-color: #fbfbfb;
  border-bottom: 1px solid #eeeeee;
}
.rk-mobile-menu-wrapper .rk-menu-global-header .rk-menu-title {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin: 0;
  display: block;
}
.rk-mobile-menu-wrapper .rk-menu-container {
  position: relative;
  overflow: hidden;
  flex: 1;
}
.rk-mobile-menu-wrapper {
  /* Sliding Engine */
}
.rk-mobile-menu-wrapper .rk-menu-slider {
  display: flex;
  width: 400%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(0%);
}
.rk-mobile-menu-wrapper {
  /* Individual Layer */
}
.rk-mobile-menu-wrapper .rk-menu-layer {
  width: 25%;
  flex-shrink: 0;
  padding: 15px;
  box-sizing: border-box;
}
.rk-mobile-menu-wrapper {
  /* Layer Header Layout - Optimized for Breadcrumbs & Action Buttons */
}
.rk-mobile-menu-wrapper .rk-menu-header {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}
.rk-mobile-menu-wrapper .rk-menu-header .rk-back-btn {
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  font-family: "RKMainFont", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  margin-bottom: 8px;
}
.rk-mobile-menu-wrapper .rk-menu-header .rk-back-btn .rk-back-icon {
  margin-right: 5px;
  font-size: 16px;
}
.rk-mobile-menu-wrapper .rk-menu-header {
  /* Dynamic Row: Breadcrumbs (Left) and View All (Right) */
}
.rk-mobile-menu-wrapper .rk-menu-header .rk-breadcrumb {
  width: 100%;
}
.rk-mobile-menu-wrapper .rk-menu-header .rk-breadcrumb .rk-header-dynamic-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
  gap: 10px;
}
.rk-mobile-menu-wrapper .rk-menu-header .rk-breadcrumb .rk-crumb-link {
  font-size: 11px;
  color: #999;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rk-mobile-menu-wrapper .rk-menu-header .rk-breadcrumb .rk-crumb-link:after {
  content: "/";
  margin: 0 4px;
  color: #ccc;
}
.rk-mobile-menu-wrapper .rk-menu-header .rk-breadcrumb .rk-crumb-link:hover {
  color: #222;
  text-decoration: underline;
}
.rk-mobile-menu-wrapper .rk-menu-header .rk-breadcrumb .rk-crumb-link:last-child {
  color: #222;
  font-weight: 700;
}
.rk-mobile-menu-wrapper .rk-menu-header .rk-breadcrumb .rk-crumb-link:last-child:after {
  display: none;
}
.rk-mobile-menu-wrapper .rk-menu-header {
  /* View All Button - Compact & Specific Position */
}
.rk-mobile-menu-wrapper .rk-menu-header .rk-view-all-header-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #222;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 5px 10px;
  border-radius: 15px;
  text-decoration: none;
  white-space: nowrap;
}
.rk-mobile-menu-wrapper .rk-menu-header .rk-view-all-header-btn i {
  font-size: 12px;
}
.rk-mobile-menu-wrapper .rk-menu-header .rk-view-all-header-btn:hover {
  background-color: #222;
  color: #ffffff;
}
.rk-mobile-menu-wrapper {
  /* 3-Column Grid Layout */
}
.rk-mobile-menu-wrapper .rk-menu-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 15px !important;
  width: 100% !important;
}
.rk-mobile-menu-wrapper .rk-menu-grid .rk-grid-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center;
  cursor: pointer;
  /* View All item is now handled in Header, keeping Grid clean */
}
.rk-mobile-menu-wrapper .rk-menu-grid .rk-grid-item .rk-item-image {
  width: 80px !important;
  height: 80px !important;
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px !important;
  border: 1px solid #eeeeee;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.rk-mobile-menu-wrapper .rk-menu-grid .rk-grid-item .rk-item-image img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
  display: block !important;
}
.rk-mobile-menu-wrapper .rk-menu-grid .rk-grid-item .rk-item-name {
  display: block;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 600;
  color: #222;
  word-break: break-word;
}
.rk-mobile-menu-wrapper .rk-no-data {
  grid-column: span 3;
  text-align: center;
  padding: 20px;
  color: #888;
  font-style: italic;
}

/**
 * Masterclass Hero Section - Ultimate Enterprise Edition
 * 
 * Layout Features:
 * - 45/55 Enterprise Grid
 * - Dual-Row Dynamic Category Carousel (30 Items)
 * - Magic "View More" Morphing Button
 * - Auto Font Switch & High Precision Responsive Logic
 * 
 * @package RoikhikWoo
 */
/* 1. Typography & Variables */
@font-face {
  font-family: "RKMainFont";
  src: url("../frontend/fonts/Lato-Regular.woff2") format("woff2");
  unicode-range: U+0000-007F;
}
@font-face {
  font-family: "RKMainFont";
  src: url("../frontend/fonts/SiyamRupali.woff2") format("woff2");
  unicode-range: U+0980-09FF;
}
/* 3. Global Enterprise Container */
.rk-container-1500 {
  max-width: 1500px !important;
  margin: 0 auto !important;
  padding: 0 15px !important; /* Balanced left/right padding */
  width: 100% !important;
  box-sizing: border-box !important;
  overflow-x: hidden; /* Prevents horizontal scroll from external margins */
}

.rk-hero-section {
  padding: 30px 0;
  font-family: "RKMainFont", sans-serif;
  background-color: #fbfbfb;
}
.rk-hero-section .rk-hero-grid-wrapper {
  display: grid;
  grid-template-columns: 45% 55%; /* Your Rule: 45% Slider, 55% Action Area */
  gap: 20px;
  align-items: stretch;
}
.rk-hero-section {
  /* 3. Slider Column (45%) - Elastic Height Fix */
}
.rk-hero-section .rk-hero-slider-col {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.rk-hero-section .rk-hero-slider-col .rk-main-slider {
  flex: 1;
  display: flex;
  height: 100%;
}
.rk-hero-section .rk-hero-slider-col .rk-main-slider .rk-slide-item {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.rk-hero-section .rk-hero-slider-col .rk-main-slider .rk-slide-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rk-hero-section .rk-hero-slider-col .rk-main-slider .rk-slide-item .rk-slide-content {
  position: absolute;
  bottom: 50px;
  left: 50px;
  z-index: 2;
}
.rk-hero-section .rk-hero-slider-col .rk-main-slider .rk-slide-item .rk-slide-content .rk-slide-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 25px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}
.rk-hero-section .rk-hero-slider-col .rk-main-slider .rk-slide-item .rk-slide-content .rk-btn-primary {
  background: #ffffff;
  color: #222;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rk-hero-section .rk-hero-slider-col .rk-main-slider .rk-slide-item .rk-slide-content .rk-btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.rk-hero-section {
  /* 4. Action Column (55%) - Content Driven Height */
}
.rk-hero-section .rk-hero-action-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex {
  display: flex;
  gap: 20px;
  align-items: stretch;
  /* Square Timer - Height Balanced with Carousel */
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card {
  width: 260px;
  height: 280px; /* Perfectly aligned with 2-row category grid */
  flex-shrink: 0;
  background: #111111;
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 25px 20px;
  box-sizing: border-box;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card .rk-timer-tag {
  color: #ffcc00;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card .rk-countdown-wrapper {
  display: flex;
  justify-content: center;
  gap: 6px; /* Reduced gap between boxes to allow more width per box */
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card .rk-countdown-wrapper .rk-timer-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 4px; /* Reduced padding for more internal space */
  border-radius: 8px;
  min-width: 50px;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card .rk-countdown-wrapper .rk-timer-box .rk-val {
  font-size: 18px; /* Slightly adjusted for better readability */
  font-weight: 800;
  display: block;
  line-height: 1;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card .rk-countdown-wrapper .rk-timer-box small {
  font-size: 8px;
  opacity: 0.7;
  display: block;
  margin-top: 3px;
  text-transform: uppercase;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card .rk-timer-msg {
  font-size: 13px;
  margin-top: 20px;
  font-weight: 500;
  color: #aaa;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex {
  /* Dual-Row Category Carousel - Gap Fixed */
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Small consistent gap between header and tracks */
  height: 280px; /* Aligned with Timer Card */
  padding: 10px 0;
  box-sizing: border-box;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-grid-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-grid-header i {
  color: #ff4500;
  animation: rkFirePulse 1.2s infinite alternate;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-grid-header .rk-cat-title {
  font-size: 18px;
  font-weight: 800;
  color: #222;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper {
  /* Dual-Row Container - Optimized Spacing */
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-dual-track-container {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important; /* Tightened row gap */
  overflow-x: auto;
  white-space: nowrap;
  padding: 5px 0;
  scrollbar-width: none;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-dual-track-container::-webkit-scrollbar {
  display: none;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-dual-track-container .rk-cat-carousel-row {
  display: flex !important;
  flex-direction: row !important; /* Horizontal items within the row */
  gap: 12px;
  width: -moz-max-content;
  width: max-content; /* Ensures items stay in one long horizontal line */
  flex-wrap: nowrap !important; /* Prevents items from jumping to a new line */
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper {
  /* Clean Category Card - Only Image and Name */
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-card {
  width: 90px; /* Compact width for clean look */
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  background: transparent; /* No background */
  border: none; /* No border */
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-card:hover {
  transform: translateY(-3px);
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-card:hover .rk-cat-img-box img {
  transform: scale(1.08);
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-card .rk-cat-img-box {
  width: 70px; /* Fixed circular/square icon size */
  height: 70px;
  border-radius: 50%; /* Makes category images circular for premium feel */
  overflow: hidden;
  margin-bottom: 8px;
  background-color: #f5f5f5; /* Subtle placeholder color */
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-card .rk-cat-img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-card .rk-cat-name {
  font-size: 11px;
  font-weight: 600;
  color: #333;
  text-align: center;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}
.rk-hero-section .rk-hero-action-col {
  /* 5. Magic View More Button (Bottom Row) */
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row {
  height: auto !important; /* Forces row to fit content height instead of stretching */
  background: #ffffff;
  border-radius: 7px;
  padding: 20px;
  border: 1px solid #eeeeee;
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header .rk-strip-title {
  font-size: 18px;
  font-weight: 800;
  color: #222;
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header {
  /* Morphing Circle to Button Animation */
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header .rk-magic-view-more {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 0; /* Initially no gap */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header .rk-magic-view-more .rk-magic-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  color: #222;
  transition: max-width 0.5s ease, opacity 0.3s ease, margin 0.3s ease;
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header .rk-magic-view-more .rk-magic-circle {
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header .rk-magic-view-more:hover {
  gap: 10px;
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header .rk-magic-view-more:hover .rk-magic-text {
  max-width: 100px;
  opacity: 1;
  margin-right: 5px;
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header .rk-magic-view-more:hover .rk-magic-circle {
  border-radius: 12px;
  background: #ff4d4d;
  transform: rotate(360deg);
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row {
  /* 3-Item Featured Showcase */
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items {
  display: flex;
  gap: 15px; /* Reduced gap to accommodate 3 items */
  justify-content: space-between;
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items .rk-strip-item {
  flex: 1 1 30%; /* Ensures each of the 3 items takes equal space */
  min-width: 0; /* Prevents overflow issues with long text */
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 12px;
  background: #fdfdfd;
  border: 1px solid rgba(0, 0, 0, 0.03);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items .rk-strip-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items .rk-strip-item .rk-item-thumb {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items .rk-strip-item .rk-item-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items .rk-strip-item .rk-item-meta {
  overflow: hidden; /* Contains the text */
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items .rk-strip-item .rk-item-meta .rk-p-name {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; /* Truncates long product names */
}
.rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items .rk-strip-item .rk-item-meta .rk-p-price {
  color: #ff4d4d;
  font-weight: 800;
  font-size: 14px;
}

/* 6. Ultimate Enterprise Responsive Architecture - High Specificity Version */
/* [Universal Stacking for Tablet & Mobile] */
@media (max-width: 1200px) {
  html body .rk-hero-section .rk-hero-grid-wrapper {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
  }
  html body .rk-hero-section .rk-hero-slider-col,
  html body .rk-hero-section .rk-hero-action-col {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    height: auto !important;
  }
}
/* [Specific Mobile Refinement - Below 768px] */
@media (max-width: 767px) {
  /* Reducing side padding by 50% to expand content area */
  html body .rk-container-1500 {
    padding-left: 7px !important;
    padding-right: 7px !important;
  }
  html body .rk-hero-section {
    padding: 8px 0 !important;
    /* Forced Slider Height & Title Scaling */
  }
  html body .rk-hero-section .rk-hero-slider-col {
    height: 200px !important;
    min-height: 200px !important;
    border-radius: 10px !important;
  }
  html body .rk-hero-section .rk-hero-slider-col .rk-slide-content {
    bottom: 15px !important;
    left: 15px !important;
    right: 15px !important;
  }
  html body .rk-hero-section .rk-hero-slider-col .rk-slide-content .rk-slide-title {
    font-size: 18px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5) !important;
  }
  html body .rk-hero-section .rk-hero-slider-col .rk-slide-content .rk-btn-primary {
    padding: 8px 16px !important;
    font-size: 11px !important;
  }
  html body .rk-hero-section {
    /* Action Column Layout Fix */
  }
  html body .rk-hero-section .rk-hero-action-col {
    gap: 15px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex {
    flex-direction: column !important;
    gap: 15px !important;
    height: auto !important;
    /* Square Timer to Slim Horizontal Strip Transformation */
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card {
    width: 100% !important;
    height: auto !important;
    min-height: 55px !important;
    aspect-ratio: unset !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 15px !important;
    background: #111111 !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card .rk-timer-tag {
    margin: 0 !important;
    font-size: 10px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card .rk-timer-msg {
    display: none !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card .rk-countdown-wrapper {
    flex-direction: row !important;
    gap: 5px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card .rk-countdown-wrapper .rk-timer-box {
    min-width: 35px !important;
    padding: 3px !important;
    background: rgba(255, 255, 255, 0.12) !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card .rk-countdown-wrapper .rk-timer-box .rk-val {
    font-size: 13px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-timer-square-card .rk-countdown-wrapper .rk-timer-box small {
    font-size: 7px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex {
    /* Mobile Carousel Area Refinement */
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper {
    height: auto !important;
    min-height: auto !important;
    gap: 12px !important;
    padding: 0 !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-grid-header {
    padding-left: 0 !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-grid-header .rk-cat-title {
    font-size: 15px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-dual-track-container {
    gap: 12px !important;
    padding: 5px 0 !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-card {
    width: 75px !important; /* Proper touch size for mobile rows */
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-card .rk-cat-img-box {
    width: 55px !important;
    height: 55px !important;
    margin-bottom: 5px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-top-flex .rk-cat-carousel-wrapper .rk-cat-card .rk-cat-name {
    font-size: 9px !important;
  }
  html body .rk-hero-section .rk-hero-action-col {
    /* Bottom Featured Strip Stacking */
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-bottom-row {
    padding: 15px !important;
    height: auto !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header {
    margin-bottom: 12px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header .rk-strip-title {
    font-size: 15px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header {
    /* Magic Button Always Compact on Mobile */
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header .rk-magic-view-more {
    gap: 5px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header .rk-magic-view-more .rk-magic-text {
    max-width: 50px !important;
    opacity: 1 !important;
    font-size: 10px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-header .rk-magic-view-more .rk-magic-circle {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items {
    flex-direction: column !important;
    gap: 10px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items .rk-strip-item {
    padding: 10px !important;
    background: #f8f8f8 !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items .rk-strip-item .rk-item-thumb {
    width: 55px !important;
    height: 55px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items .rk-strip-item .rk-p-name {
    font-size: 12px !important;
  }
  html body .rk-hero-section .rk-hero-action-col .rk-action-bottom-row .rk-strip-items .rk-strip-item .rk-p-price {
    font-size: 13px !important;
  }
}
/**
 * RoikhikWoo Master Styling Engine - ELITE EDITION
 * 
 * This file serves as the core layout and typography engine. It enforces
 * the custom font stack, sets up the elite container system, and ensures
 * perfect responsiveness across all devices.
 *
 * @package RoikhikWoo
 * @author Roikhik Architect
 */
/**
 * RoikhikWoo Elite Header Design - ATOMIC FIXED VERSION
 * 
 * Restores My Account premium UI, Top Bar linear layout, and 
 * implements the Horizontal Category Engine.
 *
 * @package RoikhikWoo
 * @author Roikhik Architect
 */
/**
 * RoikhikWoo Global Utility Classes
 * 
 * This file contains reusable helper classes to ensure a DRY (Don't Repeat Yourself) 
 * codebase. It handles spacing, alignment, backgrounds, and premium UI effects.
 * All classes are prefixed with rk- to maintain enterprise branding.
 *
 * @package RoikhikWoo
 * @author Roikhik Architect
 */
.rk-m-0 {
  margin: 0 !important;
}

.rk-p-0 {
  padding: 0 !important;
}

.rk-mt-10 {
  margin-top: 10px !important;
}

.rk-mb-10 {
  margin-bottom: 10px !important;
}

.rk-mt-20 {
  margin-top: 20px !important;
}

.rk-mb-20 {
  margin-bottom: 20px !important;
}

.rk-mt-30 {
  margin-top: 30px !important;
}

.rk-mb-30 {
  margin-bottom: 30px !important;
}

.rk-py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.rk-py-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.rk-d-flex {
  display: flex !important;
}

.rk-flex-column {
  flex-direction: column !important;
}

.rk-align-center {
  align-items: center !important;
}

.rk-justify-center {
  justify-content: center !important;
}

.rk-justify-between {
  justify-content: space-between !important;
}

.rk-flex-wrap {
  flex-wrap: wrap !important;
}

.rk-gap-10 {
  gap: 10px !important;
}

.rk-gap-20 {
  gap: 20px !important;
}

.rk-text-center {
  text-align: center !important;
}

.rk-text-right {
  text-align: right !important;
}

.rk-text-uppercase {
  text-transform: uppercase !important;
}

.rk-font-weight-bold {
  font-weight: 700 !important;
}

.rk-font-weight-medium {
  font-weight: 500 !important;
}

.rk-text-primary {
  color: #da5306 !important;
}

.rk-text-secondary {
  color: #1a1a1a !important;
}

.rk-text-muted {
  color: #666666 !important;
}

.rk-text-white {
  color: #ffffff !important;
}

.rk-bg-primary {
  background-color: #da5306 !important;
}

.rk-bg-surface {
  background-color: #ffffff !important;
}

.rk-bg-body {
  background-color: #f5f5f5 !important;
}

.rk-count-badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background-color: #da5306;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.rk-shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

.rk-rounded {
  border-radius: 8px !important;
}

.rk-rounded-full {
  border-radius: 999px !important;
}

.rk-d-none {
  display: none !important;
}

@media (max-width: 768px) {
  .rk-mobile-hide {
    display: none !important;
  }
  .rk-mobile-show {
    display: block !important;
  }
  .rk-mobile-flex {
    display: flex !important;
  }
}
@media (min-width: 769px) {
  .rk-desktop-hide {
    display: none !important;
  }
}
.rk-cursor-pointer {
  cursor: pointer !important;
}

.rk-no-select {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

.rk-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rk-hover-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.rk-hover-lift:hover {
  transform: translateY(-3px);
}