/* ==========================================================================
   SHANKAR HARDWARE & PAINTS (SHP INDIA) - HOME THEME STYLESHEET
   Author: Bobby
   Version: 1.0 (June 2026)
   ========================================================================== */

/* 1. Design System & CSS Variables */
:root {
  --color-teal: #0d9488;
  --color-teal-light: #14b8a6;
  --color-teal-dark: #0f766e;
  --color-teal-darker: #115e59;
  --color-teal-black: #042f2e;
  --color-amber: #d97706;
  --color-amber-dark: #b45309;
  --color-bg-light: #f9fafb;
  --color-border: #e5e7eb;
  --color-text: #1f2937;
  --color-text-muted: #4b5563;
  --color-white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
}

/* 2. Zoho Default Theme Overrides & Hiding Default Layout Headers */
[data-headercontainer="zptheme-data-headercontainer"],
[data-theme-topbar="zptheme-topbar"],
.theme-header-topbar,
.theme-vertical-navigation-container,
.zpheader-style-01, .zpheader-style-02, .zpheader-style-03, .zpheader-style-04, 
.zpheader-style-05, .zpheader-style-06, .zpheader-style-07, .zpheader-style-08,
.zpheader-style-09, .zpheader-style-10, .zpheader-style-11,
.theme-footer-area,
.theme-mobile-header-top,
.theme-mobile-header-bottom,
.theme-mobile-header-slidewrapper,
.theme-mobile-header-nav-wrapper {
  display: none !important;
}

/* Fix main content top padding since default header is gone */
#main-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* 3. Helper Elements & Typography */
html, body {
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}

body {
  font-family: 'Poppins', 'Source Sans Pro', sans-serif !important;
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.zpcontainer, .shp-footer-container, .shp-hero-container, .shp-usp-container, .shp-section-container, .shp-brands-container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

/* Generic Custom Button styles */
.shp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-normal);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
}

.shp-btn-primary {
  background-color: var(--color-amber);
  color: var(--color-white);
}

.shp-btn-primary:hover {
  background-color: var(--color-amber-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.shp-btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.shp-btn-secondary:hover {
  background-color: var(--color-white);
  color: var(--color-teal-darker);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Section Header Typography */
.shp-section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.shp-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-teal-black);
  margin-top: 0;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.shp-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--color-teal);
  border-radius: 2px;
}

.shp-section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* 4. Custom Header Styling */
.shp-custom-header {
  position: relative;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

/* Top bar style */
.shp-topbar {
  background-color: var(--color-teal-black);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shp-topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.shp-topbar-left, .shp-topbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.shp-divider {
  opacity: 0.3;
}

.shp-topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.shp-topbar-link:hover {
  color: var(--color-teal-light);
}

.shp-icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

/* Main header style */
.shp-main-header {
  background-color: var(--color-teal-darker);
  color: var(--color-white);
  padding: 0;
}

.shp-header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.shp-header-bottom-row {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-teal-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

/* Logo brand styles */
.shp-branding {
  flex-shrink: 0;
}

.shp-logo-img {
  max-height: 50px;
  display: block;
}

.shp-logo-text-link {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.shp-logo-bold {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.shp-logo-light {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-teal-light);
}

/* Search Box Container Styling */
.shp-search-container {
  flex-grow: 1;
  max-width: 450px;
}

.shp-search-container form {
  position: relative;
  display: flex;
  align-items: center;
}

.shp-search-container input[type="text"] {
  width: 100%;
  padding: 0.65rem 3rem 0.65rem 1rem;
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  font-size: 0.9rem;
  transition: var(--transition-normal);
}

.shp-search-container input[type="text"]::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.shp-search-container input[type="text"]:focus {
  outline: none;
  background-color: var(--color-white);
  color: var(--color-text);
  border-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.4);
}

.shp-search-container input[type="text"]:focus ~ .theme-search-go-icon svg,
.shp-search-container input[type="text"]:focus ~ [data-zs-search-icon] svg {
  fill: var(--color-text);
}

/* Handle Zoho search suggestion overrides */
.theme-search-field-container form, .theme-search form {
  display: flex;
  width: 100%;
  position: relative;
}

.theme-search-go-icon, [data-zs-search-icon] {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  display: flex;
  align-items: center;
}

.theme-search-go-icon svg, [data-zs-search-icon] svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
  transition: var(--transition-fast);
}

/* Navigation items style */
.shp-header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.shp-header-right-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.shp-nav-menu {
  display: block;
}

.theme-menu.shp-menu-inner > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.25rem;
}

.theme-menu.shp-menu-inner > ul > li {
  position: relative;
}

.theme-menu.shp-menu-inner > ul > li > a {
  display: inline-block;
  padding: 0.5rem 0.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.theme-menu.shp-menu-inner > ul > li > a:hover,
.theme-menu.shp-menu-inner > ul > li.theme-menu-selected > a {
  color: var(--color-white);
}

.theme-menu.shp-menu-inner > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-amber);
  transition: var(--transition-normal);
}

.theme-menu.shp-menu-inner > ul > li:hover > a::after,
.theme-menu.shp-menu-inner > ul > li.theme-menu-selected > a::after {
  width: 100%;
}

/* Zoho Sub-menu (dropdown) styling */
.theme-sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--color-white);
  color: var(--color-text);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-sm);
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition-normal);
}

.theme-menu.shp-menu-inner ul li:hover .theme-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theme-sub-menu li a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

.theme-sub-menu li a:hover {
  background-color: rgba(13, 148, 136, 0.08);
  color: var(--color-teal-dark);
}

/* Cart Icon Badge */
.shp-cart-icon-container {
  position: relative;
  cursor: pointer;
}

.theme-mini-cart {
  display: inline-flex;
  align-items: center;
}

.theme-minicart-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition-normal);
  outline: none;
}

.theme-minicart-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.theme-minicart-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
}

.theme-mini-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--color-amber);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 700;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-teal-darker);
}

/* Hamburger menu button */
.shp-mobile-burger {
  display: none;
  cursor: pointer;
}

.theme-burger-icon {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-normal);
}

.theme-burger-icon::before, .theme-burger-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-normal);
}

.theme-burger-icon::before {
  top: -7px;
}

.theme-burger-icon::after {
  bottom: -7px;
}

/* Mobile drawer container (Zoho dynamically uses this) */
.shp-mobile-menu-drawer {
  display: none;
}

/* 5. Homepage Sections Styling */

/* Hero Banner */
.shp-hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-teal-dark) 0%, var(--color-teal-black) 100%);
  padding: 6.5rem 0;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.shp-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(20, 184, 166, 0.15) 0%, transparent 90%);
  pointer-events: none;
}

.shp-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.shp-hero-tagline {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-teal-light);
  margin-bottom: 1.25rem;
  background-color: rgba(20, 184, 166, 0.1);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(20, 184, 166, 0.2);
}

.shp-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.shp-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.shp-hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

/* USP Strip Section */
.shp-usp-strip {
  background-color: var(--color-white);
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.shp-usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.shp-usp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.shp-usp-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(13, 148, 136, 0.08);
  color: var(--color-teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.shp-usp-icon {
  width: 24px;
  height: 24px;
}

.shp-usp-text {
  display: flex;
  flex-direction: column;
}

.shp-usp-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-teal-black);
  margin: 0 0 0.15rem 0;
}

.shp-usp-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Category Grid Section */
.shp-categories-section {
  background-color: var(--color-bg-light);
  padding: 5rem 0;
}

.shp-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.shp-category-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.shp-category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-teal-light);
}

.shp-category-icon-wrapper {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: rgba(13, 148, 136, 0.05);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition-normal);
}

.shp-category-card:hover .shp-category-icon-wrapper {
  background-color: var(--color-teal);
  color: var(--color-white);
}

.shp-category-icon {
  width: 30px;
  height: 30px;
}

.shp-category-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.3;
}

/* Featured Products Grid */
.shp-featured-products-section {
  background-color: var(--color-white);
  padding: 5rem 0;
}

.shp-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.shp-product-card {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-normal);
}

.shp-product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(13, 148, 136, 0.2);
}

.shp-product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: var(--color-teal-darker);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  z-index: 10;
}

.shp-product-card:nth-child(4) .shp-product-badge {
  background-color: var(--color-amber);
}

.shp-product-image-wrapper {
  background-color: var(--color-bg-light);
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.shp-placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  gap: 0.5rem;
}

.shp-placeholder-img svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.25;
  color: var(--color-teal);
}

.shp-product-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.shp-product-brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-teal-light);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.shp-product-title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text);
  margin-top: 0;
  margin-bottom: 0.75rem;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shp-product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.shp-product-rating .stars {
  color: #fbbf24;
  font-size: 0.85rem;
}

.shp-product-rating .rating-count {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.shp-product-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  margin-top: auto;
}

.shp-product-price-wrapper .selling-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-teal-black);
}

.shp-product-price-wrapper .label-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--color-text-muted);
}

.shp-product-price-wrapper .discount-percent {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
}

.shp-product-btn {
  width: 100%;
  padding: 0.6rem 1rem !important;
  font-size: 0.85rem !important;
  border-radius: var(--border-radius-sm) !important;
  box-sizing: border-box;
  background-color: var(--color-teal-darker);
  color: var(--color-white);
  border: 1px solid var(--color-teal-darker);
}

.shp-product-btn:hover {
  background-color: var(--color-amber);
  border-color: var(--color-amber);
  color: var(--color-white);
}

/* Brands Strip Section */
.shp-brands-strip {
  background-color: var(--color-bg-light);
  padding: 3.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.shp-brands-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.shp-brands-header {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: 0;
  margin-bottom: 2rem;
}

.shp-brands-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 2rem;
}

.shp-brand-logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text-muted);
  opacity: 0.65;
  transition: var(--transition-normal);
  filter: grayscale(100%);
  user-select: none;
}

.shp-brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  color: var(--color-teal-black);
}

/* Showrooms Outlets Section */
.shp-showrooms-section {
  background-color: var(--color-bg-light);
  padding: 5.5rem 0;
}

.shp-showrooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.shp-showroom-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.shp-showroom-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(13, 148, 136, 0.2);
}

.shp-showroom-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(13, 148, 136, 0.1);
  color: var(--color-teal-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

.shp-showroom-card:first-child .shp-showroom-badge {
  background-color: rgba(217, 119, 6, 0.1);
  color: var(--color-amber-dark);
}

.shp-showroom-details {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.shp-showroom-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-teal-black);
  margin-top: 0;
  margin-bottom: 1rem;
}

.shp-showroom-address {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1.5rem;
  min-height: 45px;
}

.shp-showroom-meta {
  margin-bottom: 2rem;
  margin-top: auto;
  border-top: 1px solid var(--color-border);
  padding-top: 1.25rem;
}

.shp-showroom-meta .meta-item {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.shp-showroom-meta .meta-item strong {
  color: var(--color-teal-darker);
}

.shp-directions-btn {
  background-color: var(--color-teal-dark);
  color: var(--color-white);
  font-size: 0.9rem !important;
  text-align: center;
  padding: 0.75rem 1rem !important;
  border-radius: var(--border-radius-md) !important;
  width: 100%;
  box-sizing: border-box;
}

.shp-directions-btn:hover {
  background-color: var(--color-amber);
}

/* 6. Custom Footer Styling */
.shp-footer {
  background-color: var(--color-teal-black);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  padding: 5rem 0 2rem 0;
  border-top: 4px solid var(--color-teal-light);
}

.shp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.shp-footer-heading {
  color: var(--color-white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.shp-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-amber);
}

.shp-footer-text {
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.shp-footer-gstin {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.shp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shp-footer-links li {
  margin-bottom: 0.75rem;
}

.shp-footer-links li a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-fast);
}

.shp-footer-links li a:hover {
  color: var(--color-amber);
  transform: translateX(4px);
}

.shp-footer-showroom {
  margin-bottom: 1.5rem;
}

.shp-footer-showroom:last-child {
  margin-bottom: 0;
}

.shp-showroom-title {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.25rem 0;
}

.shp-showroom-address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 0.15rem 0;
  min-height: auto;
}

.shp-showroom-contact {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 0.35rem 0;
}

.shp-footer-map-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-teal-light);
  display: inline-block;
}

.shp-footer-map-link:hover {
  color: var(--color-amber);
}

.shp-hours-block p {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
}

.shp-sunday-closed {
  color: #f87171;
  font-weight: 600;
}

.shp-social-heading {
  margin-top: 2rem;
}

.shp-footer-social {
  display: flex;
  gap: 0.75rem;
}

.shp-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  transition: var(--transition-normal);
}

.shp-social-btn:hover {
  background-color: var(--color-amber);
  transform: translateY(-3px);
  color: var(--color-white);
}

.shp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.shp-footer-bottom p {
  margin: 0;
}

/* 7. Responsive Styles & Media Queries */
@media (max-width: 1024px) {
  .shp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .shp-showrooms-grid {
    grid-template-columns: 1.5fr;
    justify-content: center;
    gap: 2rem;
  }
  
  .shp-usp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .shp-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .shp-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* Header Mobile Toggle Styles */
  .shp-header-bottom-row {
    display: none !important;
  }

  .shp-header-top-row {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  .shp-mobile-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 0.5rem;
  }
  
  .shp-nav-menu {
    display: none !important;
  }
  
  .shp-search-container {
    display: none; /* Can be hidden or toggled on mobile header */
  }

  .shp-hero-title {
    font-size: 2.25rem;
  }
  
  .shp-hero-subtitle {
    font-size: 1.05rem;
  }

  .shp-hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .shp-hero-actions .shp-btn {
    width: 100%;
    max-width: 300px;
  }

  .shp-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .shp-category-card {
    padding: 1.5rem 1rem;
  }
  
  .shp-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .shp-showrooms-grid {
    grid-template-columns: 1fr;
  }
  
  .shp-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .shp-topbar {
    display: none; /* Hide topbar on mobile to save space */
  }
  
  /* Mobile drawer layout styling */
  .shp-mobile-menu-drawer.theme-menu-area {
    display: block;
    background-color: var(--color-teal-black);
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
    border-bottom: 0 solid rgba(255, 255, 255, 0.1);
  }
  
  /* Handle mobile menu display when open */
  .shp-custom-header.theme-menu-open .shp-mobile-menu-drawer {
    max-height: 400px;
    border-bottom-width: 1px;
    overflow-y: auto;
  }

  .shp-mobile-menu-drawer ul {
    list-style: none;
    padding: 1rem 1.5rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }
  
  .shp-mobile-menu-drawer ul li a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 0;
    font-size: 1rem;
  }
  
  .shp-mobile-menu-drawer ul li a:hover {
    color: var(--color-amber);
  }
}

@media (max-width: 480px) {
  .shp-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .shp-products-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .shp-usp-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .shp-section-title {
    font-size: 1.75rem;
  }
  
  .shp-logo-bold {
    font-size: 1.25rem;
  }
  
  .shp-logo-light {
    font-size: 0.65rem;
  }
}

/* Interactive Locations Map Section */
.shp-map-section {
  width: 100%;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  line-height: 0;
}

.shp-map-container iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
}

@media (max-width: 768px) {
  .shp-map-container iframe {
    height: 350px;
  }
}

/* 7. Clean Navigation Links styling */
.shp-clean-nav-links {
  display: flex;
  list-style: none !important;
  margin: 0 auto !important;
  padding: 0 !important;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}

.shp-clean-nav-links li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.shp-clean-nav-links li a {
  color: var(--color-white) !important;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.75px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
  display: inline-block;
}

.shp-clean-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-amber);
  transition: var(--transition-fast);
}

.shp-clean-nav-links li a:hover {
  color: var(--color-amber) !important;
}

.shp-clean-nav-links li a:hover::after {
  width: 100%;
}

/* On mobile, make sure the drawer links display nicely in vertical order */
.shp-mobile-menu-drawer .shp-clean-nav-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  margin: 0 !important;
}

.shp-mobile-menu-drawer .shp-clean-nav-links li a {
  color: var(--color-teal-black) !important;
  font-size: 1.1rem;
}

.shp-mobile-menu-drawer .shp-clean-nav-links li a::after {
  display: none;
}
