:root {
  /* Brand Color Palette - Official Biato Colors */
  --color-primary: #C017E0;
  /* Vibrant Purple - Primary Brand */
  --color-primary-light: #D63EE8;
  /* Lighter Purple for Hover */
  --color-primary-dark: #A00DBD;
  /* Darker Purple */

  --color-secondary: #FF7A00;
  /* Sunset Orange - Secondary Brand */
  --color-secondary-hover: #E66A00;
  /* Darker Orange for Hover */

  --color-accent: #25549F;
  /* Professional Blue - Accent */
  --color-accent-hover: #1D4280;
  /* Darker Blue for Hover */

  --color-text: #1A1A1A;
  /* Soft Black */
  --color-text-light: #FFFFFF;
  /* Pure White for dark backgrounds */

  --color-bg: #FFFFFF;
  --color-bg-secondary: #F8F9FA;
  /* Light Gray background */

  --color-border: #E0E0E0;
  /* Soft Gray border */

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 64px;

  /* Layout */
  --container-width: 1200px;
  --header-height: 80px;

  /* UI Strictness - Final Premium Polish */
  --border-radius: 0 !important;
  /* Strictly square for professional legal aesthetic */
  --shadow-sm: 0 4px 15px rgba(45, 27, 77, 0.05);
  --shadow-md: 0 15px 45px rgba(45, 27, 77, 0.12);
  --shadow-lg: 0 30px 80px rgba(45, 27, 77, 0.18);
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0 !important;
  /* Enforce global square geometry */
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

/* =============================================
   PREMIUM CART PAGE
   ============================================= */
.premium-cart-page {
  background: #ffffff;
  padding: 80px 0;
  color: #333;
  min-height: 100vh;
}

.cart-header-section {
  text-align: center;
  margin-bottom: 60px;
}

.cart-header-section h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #0a192f;
}

.cart-header-section p {
  color: #666;
  font-size: 1.1rem;
}

.cart-glass-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.premium-cart-table {
  width: 100%;
  border-collapse: collapse;
}

.premium-cart-table thead {
  background: #f1f5f9;
}

.premium-cart-table th {
  padding: 20px;
  text-align: left;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #0a192f;
}

.premium-cart-table td {
  padding: 25px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.cart-item-info {
  display: flex;
  align-items: center;
}

.cart-item-info img {
  width: 70px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cart-item-details h4 {
  margin: 0 0 5px;
  font-size: 1.1rem;
}

.cart-item-details h4 a {
  color: #0a192f;
  text-decoration: none;
  transition: color 0.3s;
}

.cart-item-details h4 a:hover {
  color: var(--color-accent);
}

.cart-item-details small {
  color: #64748b;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
}

.qty-control input {
  width: 60px;
  height: 40px;
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #0a192f;
  text-align: center;
  border-radius: 8px !important;
  font-weight: 700;
}

.remove-item-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.2rem;
}

.remove-item-btn:hover {
  color: #f87171;
  transform: scale(1.1);
}

.cart-summary-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 40px;
  border-radius: 20px;
  position: sticky;
  top: 100px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.summary-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  margin: 0 0 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
  color: #0a192f;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.summary-row.total {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #f1f5f9;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

.checkout-btn {
  display: block;
  width: 100%;
  background: var(--color-secondary);
  color: #fff;
  text-align: center;
  padding: 20px;
  border-radius: 0 !important;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  margin-top: 40px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.3);
}

.checkout-btn:hover {
  transform: translateY(-5px);
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 20px 40px rgba(192, 23, 224, 0.5);
}

.empty-cart-state {
  text-align: center;
  padding: 100px 20px;
  background: #f8f9fa;
  border: 1px dashed #cbd5e1;
  border-radius: 24px;
}

.empty-cart-state i {
  font-size: 6rem;
  color: var(--color-secondary);
  margin-bottom: 30px;
  opacity: 0.3;
}

.empty-cart-state h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.empty-cart-state p {
  opacity: 0.6;
  margin-bottom: 40px;
  font-size: 1.2rem;
}


a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utility Classes */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background-color: var(--color-primary-light);
}

.btn-primary {
  background-color: var(--color-action);
}

.btn-primary:hover {
  background-color: var(--color-action-hover);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-text-light);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 120px 0;
}

.bg-light {
  background-color: var(--color-bg-secondary);
}

.bg-dark {
  background-color: #000000 !important;
  background-image: none !important;
  color: var(--color-text-light);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Form Elements */
input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  margin-bottom: var(--spacing-md);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  border-left: 4px solid var(--color-accent);
  /* Branding touch */
}

/* =============================================
   PREMIUM COMPACT NAVIGATION
   ============================================= */

/* Premium Header with Glassmorphism */
.premium-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(192, 23, 224, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(192, 23, 224, 0.2);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  padding: 0 var(--spacing-md);
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.05);
}

.logo-img {
  height: 45px;
  width: auto;
}

/* Desktop Navigation */
.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--color-primary);
  background: rgba(192, 23, 224, 0.05);
}

.nav-link i {
  font-size: 0.75em;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

/* Premium Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(192, 23, 224, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 8px;
  z-index: 1001;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.dropdown-menu li {
  list-style: none;
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
  background: rgba(192, 23, 224, 0.08);
  color: var(--color-primary);
  transform: translateX(5px);
}

/* =============================================
   PREMIUM MEGA-MENU V2 (CENTERED & GRID)
   ============================================= */
.mega-dropdown {
  position: static !important;
  /* Allow absolute centering relative to header */
}

.mega-menu-v2 {
  display: none;
  position: absolute;
  top: 90%;
  /* Slight gap from header */
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: 1080px;
  /* Increased further for maximum clearance */
  max-width: 95vw;
  background: rgba(10, 25, 47, 0.99);
  /* Solid dark for full coverage */
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(192, 23, 224, 0.3);
  box-shadow: 0 40px 150px rgba(0, 0, 0, 0.6);
  padding: 50px;
  z-index: 1001;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
}

@media (max-width: 1200px) {
  .mega-menu-v2 {
    width: 95vw;
    padding: 35px;
  }
}

.dropdown:hover .mega-menu-v2 {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.mega-menu-inner {
  display: flex;
  gap: 60px;
  position: relative;
}

.mega-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  /* Reduced gap */
}

.mega-section-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.mega-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(192, 23, 224, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  font-size: 1.4rem;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.mega-section-info h3 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.4rem;
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.mega-section-info p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 8px 0 0;
  font-weight: 700;
}

.mega-grid-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  /* Reduced row gap */
}

.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-list li {
  margin-bottom: 6px;
  /* Reduced margin */
}

.mega-list li a {
  display: block;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: normal;
  /* Allow wrapping for long names */
  line-height: 1.4;
}

.mega-list li a:hover {
  color: #D63EE8;
  /* Primary light */
  transform: translateX(8px);
  padding-left: 5px;
}

.mega-all {
  font-weight: 800 !important;
  color: var(--color-secondary) !important;
  text-transform: uppercase;
  font-size: 0.8rem !important;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block !important;
  border-bottom: 2px solid var(--color-secondary);
  padding-bottom: 4px !important;
  transition: all 0.3s;
}

.mega-all:hover {
  color: #fff !important;
  border-color: #fff !important;
  transform: translateY(-3px) !important;
  letter-spacing: 3px;
}

.mega-v-divider {
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Action Icons */
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.action-icon {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  font-size: 1.1rem;
  border-radius: 50%;
  transition: all 0.3s ease;
  background: transparent;
}

.action-icon:hover {
  background: rgba(192, 23, 224, 0.1);
  color: var(--color-primary);
  transform: scale(1.1);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: linear-gradient(135deg, #FF7A00, #FF5722);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 122, 0, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Mobile Bottom Navigation */
.bottom-nav {
  display: none;
  /* Hidden on desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 2000;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0;
  height: 60px;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #888;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
  flex: 1;
}

.bottom-nav-item i {
  font-size: 1.2rem;
  margin-bottom: 4px;
  color: #555;
  transition: color 0.3s ease;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: var(--color-primary);
}

.bottom-nav-item.active i,
.bottom-nav-item:hover i {
  color: var(--color-primary);
}

.bottom-nav-item .cart-badge {
  position: absolute;
  top: 5px;
  right: calc(50% - 15px);
  /* Position relative to icon */
  background: var(--color-action);
  color: #fff;
  font-size: 0.6rem;
  padding: 1px 4px;
  border-radius: 50%;
  /* Rounded badge */
  min-width: 14px;
  text-align: center;
}

/* Mobile App Enhancements */
@media (max-width: 768px) {
  body {
    padding-bottom: 70px;
    /* Space for bottom nav */
  }

  /* Hide Footer on Mobile */
  footer {
    display: none !important;
  }

  .bottom-nav {
    display: flex;
  }

  /* Hide header actions that are now in bottom nav */
  .nav-actions {
    display: none;
  }

  /* Transform Desktop Nav into Mobile "More" Menu */
  .nav-links {
    display: none;
    position: fixed;
    bottom: 60px;
    /* Above bottom nav */
    left: 0;
    width: 100%;
    background-color: #fff;
    flex-direction: column;
    padding: 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--color-border);
    z-index: 1999;
    /* Below bottom nav (2000) but above content */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .nav-links.active {
    display: flex;
    max-height: 400px;
    /* Enough for links */
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links a {
    display: block;
    padding: 15px 20px;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 500;
  }

  .nav-links a:hover {
    background-color: var(--color-bg-secondary);
    color: var(--color-primary);
  }
}

/* Premium Hero Overlay */
.hero {
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 30, 54, 0.95) 0%, rgba(15, 30, 54, 0.7) 50%, rgba(212, 175, 55, 0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Premium Testimonial Tabs */
.testimonial-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.t-tab-btn {
  padding: 12px 25px;
  border: none;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  color: #999;
  border-bottom: 2px solid transparent;
  font-weight: 600;
}

.t-tab-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.t-tab-btn:hover {
  color: var(--color-primary);
}

.testimonial-wrapper {
  display: none;
  animation: slideUp 0.5s ease;
}

.testimonial-wrapper.active {
  display: grid;
  gap: 30px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Premium Colorful Card Design */
.testimonial-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: currentColor;
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  opacity: 0.15;
  position: absolute;
  top: 30px;
  right: 30px;
}

/* Color Cycles */
.testimonial-card:nth-child(5n+1) {
  color: #3498db;
}

/* Blue */
.testimonial-card:nth-child(5n+2) {
  color: #e67e22;
}

/* Orange */
.testimonial-card:nth-child(5n+3) {
  color: #f1c40f;
}

/* Yellow */
.testimonial-card:nth-child(5n+4) {
  color: #e91e63;
}

/* Pink */
.testimonial-card:nth-child(5n+5) {
  color: #9b59b6;
}

/* Purple */
.testimonial-card p {
  color: #555;
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.testimonial-card h5 {
  color: #333;
  font-weight: 700;
  margin-top: 5px;
}


/* Premium Testimonial Redesign */
.testimonial-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card .quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  opacity: 0.1;
  transition: all 0.3s;
}

.testimonial-card:hover .quote-icon {
  transform: scale(1.1);
  opacity: 0.2;
}

.testimonial-card p {
  position: relative;
  z-index: 2;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.testimonial-card h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
}

.testimonial-card span {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.8;
}


/* Premium Shop Polish */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-accent);
}

.product-image {
  height: 300px;
  width: 100%;
  overflow: hidden;
  background: #f9f9f9;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  min-height: 3rem;
  /* Ensure 2 lines alignment */
}

.product-card .btn {
  margin-top: auto;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

/* Colorful Badges */
.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.badge-new {
  background: linear-gradient(135deg, #3498db, #2980b9);
}

/* Blue */
.badge-hot {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
}

/* Red */
.badge-sale {
  background: linear-gradient(135deg, #f1c40f, #f39c12);
}

/* Yellow */
.badge-premium {
  background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

/* Purple */


/* Other Law Badges */
.badge-other {
  background: linear-gradient(135deg, #7f8c8d, #2c3e50);
}

/* Grey */


/* Future Books Section */
.section-future {
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

.badge-future {
  background: linear-gradient(135deg, #607d8b, #455a64);
}


/* Premium Breadcrumb */
.premium-breadcrumb {
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  padding: 60px 0;
  color: #fff;
  text-align: center;
  border-bottom: 3px solid #ffd700;
  position: relative;
  overflow: hidden;
}

.premium-breadcrumb::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/logo.png') no-repeat center center;
  opacity: 0.05;
  background-size: contain;
}

.breadcrumb-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #ffd700;
  letter-spacing: 1px;
}

.breadcrumb-path {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-path a {
  color: #fff;
  text-decoration: none;
}

.breadcrumb-path span {
  margin: 0 10px;
  color: #ffd700;
}

/* Modern Product Card */
.product-card {
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  position: relative;
  border-bottom: 4px solid #ffd700;
  /* Default Accent */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 320px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #0a192f;
  flex-grow: 1;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-view {
  flex: 1;
  background: transparent;
  border: 1px solid #0a192f;
  color: #0a192f;
  padding: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-view:hover {
  background: #0a192f;
  color: #fff;
}

.btn-add {
  flex: 1;
  background: #ffd700;
  border: 1px solid #ffd700;
  color: #0a192f;
  padding: 8px;
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-add:hover {
  background: #e6c200;
  border-color: #e6c200;
}


/* Button Layout Refinement */
.btn-view,
.btn-add {
  white-space: nowrap;
  padding: 8px 4px !important;
  font-size: 0.8rem !important;
}

/* Shop Card Alignment Fixes */
.product-info h4 {
  height: 3em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  margin-bottom: 0.5rem;
  flex-grow: 0;
}

.product-info .card-actions {
  margin-top: auto;
}

/* Premium Product Detail Page */
.product-detail-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .product-detail-card {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }
}

.detail-image {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.detail-info h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #0a192f;
  line-height: 1.2;
}

.detail-price {
  font-size: 1.8rem;
  color: #ffd700;
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  display: inline-block;
}

.detail-meta {
  margin-bottom: 25px;
}

.detail-meta-row {
  display: flex;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.detail-meta-label {
  font-weight: 600;
  width: 100px;
  color: #555;
}

.detail-meta-value {
  color: #0a192f;
}

.detail-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.qty-input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 70px;
  text-align: center;
  font-weight: bold;
}


/* Table for Specs */
.detail-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 25px;
}

.detail-specs-table td {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.95rem;
}

.detail-specs-table td:first-child {
  font-weight: 600;
  color: #555;
  width: 35%;
}

.detail-divider {
  border: 0;
  border-top: 1px solid #eee;
  margin: 20px 0;
  display: block;
  height: 1px;
}


/* V2 Boxed Layout */
.detail-specs-box {
  background: #fcfcfc;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px 20px;
  margin: 20px 0;
}

.detail-specs-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #e0e0e0;
  font-size: 0.9rem;
}

.detail-specs-row:last-child {
  border-bottom: none;
}

.detail-specs-label {
  color: #666;
  font-weight: 500;
}

.detail-specs-value {
  color: #0a192f;
  font-weight: 600;
  text-align: right;
}

.product-detail-card {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  overflow: hidden;
}

.detail-image {
  border-right: 1px solid #f0f0f0;
  background: #fff;
  padding: 0;
  min-height: 500px;
}

.detail-info {
  padding: 40px;
  background: #fffcf5;
  /* Cream tint */
}


/* Detail Tab Table */
.detail-tab-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.detail-tab-table td {
  padding: 12px 15px;
  border: 1px solid #eee;
  color: #555;
}

.detail-tab-table tr:nth-child(even) {
  background-color: #fcfcfc;
}

.detail-tab-table td:first-child {
  font-weight: 600;
  color: #0a192f;
  width: 250px;
  background: #f8f9fa;
}


/* Premium Shop Toolbar */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  margin-bottom: 30px;
}

.shop-toolbar-results {
  color: #666;
  font-size: 0.95rem;
  font-weight: 400;
}

.shop-toolbar select {
  border: 1px solid #ddd;
  padding: 10px 20px;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.3s;
}

.shop-toolbar select:hover {
  border-color: #999;
}

.shop-toolbar select:focus {
  outline: none;
  border-color: var(--color-primary);
}


/* Product Price Styling */
.product-price {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 10px 0 15px 0;
}


/* Colorful Premium Accents */
.category-box {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.category-box:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #ffd700;
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.3);
}

.product-badge {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}


/* Colorful Rebranding */
.hero-overlay {
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.95) 0%, rgba(99, 102, 241, 0.85) 100%) !important;
}

.section-padding:nth-of-type(odd) {
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.product-badge.badge-new {
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

.product-badge.badge-premium {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

.product-badge.badge-hot {
  background: linear-gradient(135deg, #ef4444 0%, #f59e0b 100%);
}

.product-badge.badge-sale {
  background: linear-gradient(135deg, #f59e0b 0%, #10b981 100%);
}

/* =============================================
   PREMIUM DROPDOWN MENU STYLES
   ============================================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 650px;
  max-height: 500px;
  overflow-y: auto;
  box-shadow: 0 15px 60px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding: 25px 0;
  border-top: 3px solid var(--color-primary);

  /* Multi-column layout for better organization */
  column-count: 2;
  column-gap: 30px;
}

.dropdown-menu li {
  list-style: none;
  break-inside: avoid;
  margin-bottom: 2px;
}

.dropdown-menu li a {
  display: block;
  padding: 14px 24px;
  color: var(--color-text);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background: linear-gradient(90deg, rgba(192, 23, 224, 0.08) 0%, transparent 100%);
  border-left-color: var(--color-primary);
  color: var(--color-primary);
  padding-left: 30px;
  transform: translateX(2px);
}

.dropdown:hover .dropdown-menu {
  display: block;
  animation: dropdownSlide 0.3s ease-out;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scrollbar styling for dropdown */
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 0;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

.btn-primary {
  background: linear-gradient(135deg, #0a192f 0%, #1e3a8a 100%);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.category-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.category-box:hover::after {
  opacity: 1;
}

h2 {
  background: linear-gradient(135deg, #0a192f 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* Premium Category Cards */
.premium-category-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25) !important;
}

.premium-category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.premium-category-card:hover::before {
  opacity: 1;
}

@media (max-width: 768px) {
  .premium-category-card {
    min-height: 180px !important;
    padding: 30px 20px !important;
  }

  .premium-category-card h3 {
    font-size: 1.3rem !important;
  }

  .premium-category-card div[style*='font-size: 3.5rem'] {
    font-size: 2.5rem !important;
  }
}


/* Mobile App-Like Optimizations */
@media (max-width: 768px) {

  /* Smooth scrolling */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  body {
    -webkit-tap-highlight-color: transparent;
  }

  /* Hide desktop nav, show mobile */
  .nav-links {
    display: none !important;
  }

  .mobile-menu-btn {
    display: block !important;
  }

  /* Category boxes - 1 column on mobile */
  .premium-category-card {
    margin-bottom: 20px;
  }

  /* Footer - stack columns */
  footer .grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Hero section height optimization */
  section[style*="min-height: 600px"],
  .premium-hero-slider,
  .premium-hero-slide[style*="min-height: 600px"] {
    min-height: 380px !important;
  }

  /* Optimize stats for mobile - smaller, more compact */
  .premium-hero-slide div[style*="gap: 40px"][style*="margin-top"] {
    gap: 20px !important;
    margin-top: 20px !important;
    padding-top: 16px !important;
  }

  .premium-hero-slide div[style*="gap: 40px"][style*="margin-top"]>div>div:first-child {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
  }

  .premium-hero-slide div[style*="gap: 40px"][style*="margin-top"]>div>div:last-child {
    font-size: 0.75rem !important;
  }

  /* Touch-friendly buttons */
  .btn,
  a,
  button {
    min-height: 44px;
    min-width: 44px;
  }

  /* Bottom nav always visible */
  .bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  }

  /* Add padding for bottom nav space */
  body {
    padding-bottom: 70px;
  }

  /* Product grid - 1 column mobile */
  .product-grid {
    grid-template-columns: 1fr !important;
  }

  /* Container padding */
  .container {
    padding: 0 20px;
  }

  /* Section padding */
  .section-padding {
    padding: 40px 0 !important;
  }

  /* Premium hero stats - stack */
  .premium-hero-slide .container>div>div {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .premium-hero-slide .container>div>div>div:last-child {
    display: none;
  }

  /* Hide right panel on mobile */
}

/* Mobile-first touch optimizations */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
}

a,
button {
  touch-action: manipulation;
}

img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

/* =============================================
   PREMIUM SHOP PAGE STYLES
   Clean, minimal bookstore design
   ============================================= */

/* Premium Shop Background */
.premium-shop-section {
  background: #FAF8F5 !important;
  background-image: none !important;
  min-height: 100vh;
}

/* Premium Shop Header */
.premium-shop-header {
  text-align: center;
  padding: 50px 0 30px;
}

.premium-shop-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.premium-shop-header p {
  color: #666;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Category Pills */
.category-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 40px;
  padding: 0 20px;
}

.category-pill {
  padding: 10px 20px;
  background: #fff;
  border: 1px solid #e0dcd5;
  color: #555;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.category-pill:hover,
.category-pill.active {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

/* Shop Origin Tabs */
.shop-origin-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 2px;
}

.origin-tab {
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 600;
  color: #717171;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.origin-tab:hover {
  color: var(--primary);
}

.origin-tab.active {
  color: var(--primary);
  border-bottom-color: #ffd700;
}

/* Premium Product Grid */
.premium-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  padding: 20px 0 60px;
}

@media (max-width: 1200px) {
  .premium-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .premium-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

@media (max-width: 768px) {
  .premium-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 16px !important;
  }
}

/* Premium Book Card */
.premium-book-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-book-card:hover {
  transform: translateY(-8px);
}

/* Book Image Container with 3D Shadow */
.premium-book-image {
  position: relative;
  width: 100%;
  max-width: 180px;
  aspect-ratio: 2/3;
  margin-bottom: 20px;
  perspective: 1000px;
}

.premium-book-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.08);
}

.premium-book-card:hover .premium-book-image img {
  transform: rotateY(-5deg) scale(1.02);
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.2),
    0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Book spine effect */
.premium-book-image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5%;
  width: 4px;
  height: 90%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.05));
  z-index: 3;
  border-radius: 2px 0 0 2px;
}

/* REMOVED BAD BLOCK
  .premium-hero-slide {
    position: relative;
    overflow: hidden;
  }

  .hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
  }

  .hero-text-content {
    flex: 1;
    max-width: 600px;
    z-index: 5;
  }

  .hero-image-animate {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
  }

  .hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
  }

  .hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
  }

  @media (max-width: 768px) {
    .hero-content-wrapper {
      flex-direction: column;
      text-align: center;
    }

    .hero-text-content {
      max-width: 100%;
      margin-bottom: 30px;
    }

    .hero-buttons {
      justify-content: center;
    }

    .hero-stats {
      justify-content: center;
    }
  }

*/

/* Book shadow on surface */
.premium-book-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 10%;
  right: 10%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.premium-book-card:hover .premium-book-image::after {
  opacity: 0.7;
}

/* Book Title */
.premium-book-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 6px;
  max-width: 200px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Book Category */
.premium-book-category {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
  text-transform: capitalize;
}

/* Price - Hidden by default, shown on hover */
.premium-book-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: #c9a227;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.premium-book-card:hover .premium-book-price {
  opacity: 1;
  transform: translateY(0);
}

/* Quick Action - Add to cart button on hover */
.premium-quick-add {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #1a1a1a;
  color: #fff;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.premium-book-image:hover .premium-quick-add {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.premium-quick-add:hover {
  background: #c9a227;
}

/* Compact Shop Toolbar */
.premium-shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e8e4dd;
  margin-bottom: 30px;
}

.premium-shop-toolbar .results-count {
  font-size: 0.9rem;
  color: #666;
}

.premium-shop-toolbar select {
  padding: 10px 35px 10px 15px;
  border: 1px solid #e0dcd5;
  background: #fff;
  font-size: 0.85rem;
  color: #333;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* Premium Sidebar */
.premium-sidebar {
  background: #fff;
  padding: 30px;
  border: 1px solid #e8e4dd;
  height: fit-content;
  position: sticky;
  top: 100px;
}

.premium-sidebar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #c9a227;
  display: inline-block;
}

.premium-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.premium-sidebar ul li {
  margin-bottom: 12px;
}

.premium-sidebar ul li a {
  color: #555;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.premium-sidebar ul li a:hover {
  color: #c9a227;
}

.premium-sidebar ul li a .count {
  font-size: 0.75rem;
  color: #999;
  background: #f5f3f0;
  padding: 2px 8px;
  border-radius: 10px;
}

/* Premium Shop Layout */
.premium-shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 1024px) {
  .premium-shop-layout {
    grid-template-columns: 1fr;
  }

  .premium-sidebar {
    display: none;
  }
}

/* Premium Pagination */
.premium-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
  padding-bottom: 40px;
}

.premium-pagination button,
.premium-pagination a {
  width: 40px;
  height: 40px;
  border: 1px solid #e0dcd5;
  background: #fff;
  color: #333;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.premium-pagination button:hover,
.premium-pagination a:hover,
.premium-pagination .active {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}

/* Hide old shop styles when premium is active */
.premium-shop-section .filter-sidebar,
.premium-shop-section .shop-toolbar,
.premium-shop-section .product-grid,
.premium-shop-section .product-card {
  display: none !important;
}


/* =============================================
   RE-ENGINEERED PREMIUM HERO SLIDER (V2)
   Smart, Compact, Mobile-Optimized
   ============================================= */
.premium-hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--color-primary);
}

.premium-hero-slider {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.premium-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
  display: flex;
  align-items: center;
  z-index: 1;
}

.premium-hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

/* Glass Card Content */
.hero-glass-card {
  max-width: 650px;
  padding: 40px;
  background: rgba(10, 25, 47, 0.65);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: translateX(-50px);
  opacity: 0;
  transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
  pointer-events: auto;
}

.premium-hero-slide.active .hero-glass-card {
  transform: translateX(0);
  opacity: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 122, 0, 0.1);
  border: 1px solid rgba(255, 122, 0, 0.3);
  color: #ff7a00;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -2px;
}

.hero-title .accent-text {
  color: #FFD700;
  background: linear-gradient(to right, #FFD700, #ffb800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-btn-shop {
  padding: 14px 28px;
  background: var(--color-accent);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  text-decoration: none;
}

.hero-btn-shop:hover {
  background: #fff;
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 14px 28px !important;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  color: #fff;
}

/* Modern Indicators */
.slider-indicators {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 20;
}

.indicator-track {
  display: flex;
  gap: 12px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.indicator {
  position: relative;
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  cursor: pointer;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  transition: width 0.4s ease, background 0.4s ease;
  min-width: 0;
  min-height: 0;
}

.indicator.active {
  width: 80px;
  background: rgba(255, 255, 255, 0.2);
}

.indicator span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #FFD700;
  transition: width 6s linear;
}

.indicator.active span {
  width: 100%;
}

/* Background Gradients & Animation */
.slide-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  transition: transform 10s ease;
}

.premium-hero-slide.active .slide-bg-overlay {
  transform: scale(1.1);
}

.slide-bg-1 {
  background-image: radial-gradient(circle at 70% 30%, rgba(26, 54, 93, 0.6) 0%, #0a192f 100%), url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1920&q=80');
}

.slide-bg-2 {
  background-image: radial-gradient(circle at 70% 30%, rgba(30, 78, 62, 0.6) 0%, #0a192f 100%), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?auto=format&fit=crop&w=1920&q=80');
}

.slide-bg-3 {
  background-image: radial-gradient(circle at 70% 30%, rgba(74, 43, 109, 0.6) 0%, #0a192f 100%), url('https://images.unsplash.com/photo-1453911618013-5ed304323b61?auto=format&fit=crop&w=1920&q=80');
}

/* Mobile Optimization */
@media (max-width: 991px) {
  .hero-glass-card {
    max-width: 500px;
    padding: 35px;
  }

  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .premium-hero-slider {
    height: 600px;
  }

  .hero-container {
    justify-content: center;
    padding: 0 20px;
  }

  .hero-glass-card {
    text-align: center;
    width: 100%;
    transform: translateY(30px);
    padding: 30px 20px;
    background: rgba(10, 25, 47, 0.85);
    /* Darker for readability */
  }

  .hero-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .hero-description {
    font-size: 0.95rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-btn-shop,
  .btn-glass {
    width: 100%;
    justify-content: center;
    padding: 12px 20px !important;
  }

  .slider-indicators {
    bottom: 0;
    padding: 30px;
  }

  .indicator-track {
    justify-content: center;
  }

  .indicator {
    width: 30px;
  }

  .indicator.active {
    width: 50px;
  }
}

/* =============================================
   PREMIUM COLORFUL FEATURES SECTION
   ============================================= */
.premium-features-section {
  padding: 100px 0;
  background: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
}

.premium-feature-card {
  border-radius: 20px;
  padding: 50px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1;
  background-size: 200% 200%;
  animation: bgPulse 10s ease infinite;
}

@keyframes bgPulse {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.premium-feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease;
}

.premium-feature-card:hover .feature-icon-wrapper {
  transform: rotate(10deg) scale(1.1);
}

.feature-icon-wrapper i {
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.premium-feature-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: -0.5px;
}

.premium-feature-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

/* Specific Card Gradients - Modern Dual Tones */
.feature-card-delivery {
  background: linear-gradient(45deg, #6A0DAD, #2D1B4D, #3F2B6B);
}

.feature-card-authentic {
  background: linear-gradient(45deg, #FF7A00, #FF9E2A, #FFB75E);
}

.feature-card-support {
  background: linear-gradient(45deg, #2D1B4D, #6A0DAD, #520B8C);
}

.premium-feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .premium-feature-card {
    padding: 30px 20px;
  }
}

/* =============================================
   PREMIUM PRODUCT SHOWCASE
   ============================================= */
.premium-section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.premium-section-header .subtitle {
  display: block;
  color: var(--color-accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.premium-section-header h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-divider {
  width: 100px;
  height: 6px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  margin: 25px auto 0;
  border-radius: 50px;
}

/* =============================================
   PREMIUM FEATURED PUBLICATIONS SECTION
   ============================================= */
.premium-featured-publications {
  background: linear-gradient(rgba(15, 10, 30, 0.9), rgba(15, 10, 30, 0.8)),
    url('../images/premium_featured_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  padding: 140px 0;
}

/* Subtle Noise Texture Overlay */
.premium-featured-publications::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3Insight%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

.premium-featured-publications::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.premium-featured-publications .premium-section-header h2 {
  color: #fff;
}

.premium-featured-publications .premium-section-header .subtitle {
  background: rgba(255, 122, 0, 0.1);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  padding: 6px 15px;
  border-radius: 50px;
  display: inline-block;
  border: 1px solid rgba(255, 122, 0, 0.2);
}

.premium-product-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  perspective: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.premium-featured-publications .premium-product-card {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(45, 27, 77, 0.15);
  border-color: rgba(255, 122, 0, 0.5);
}

.premium-product-image {
  height: 420px;
  background: #f8f9fb;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.premium-product-card:hover .premium-product-image {
  background: #f0f2f5;
}

.premium-product-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.12));
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-product-card:hover .premium-product-image img {
  transform: scale(1.1) rotateY(15deg);
  filter: drop-shadow(-15px 20px 30px rgba(0, 0, 0, 0.2));
}

.product-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge {
  padding: 5px 12px;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.badge-sale {
  background: #ff5252;
}

.product-actions {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  padding: 20px;
  background: rgba(45, 27, 77, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.premium-product-card:hover .product-actions {
  bottom: 0;
}

.action-btn {
  width: 45px;
  height: 45px;
  border-radius: 0;
  border: 1px solid rgba(255, 122, 0, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.action-btn:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 122, 0, 0.4);
}

.premium-product-info {
  padding: 20px;
  text-align: center;
}

.product-category {
  font-size: 0.85rem;
  color: var(--color-secondary);
  background: rgba(255, 122, 0, 0.08);
  padding: 4px 12px;
  border-radius: 0;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.product-title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.4;
  height: 2.66em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  color: var(--color-primary);
}

.product-title a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: var(--color-secondary);
}

.product-price-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
}

.price-original {
  color: #94a3b8;
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 500;
}

.price-current {
  color: var(--color-secondary);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.btn-view-all {
  display: inline-block;
  padding: 18px 50px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 40px;
  border-radius: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
  box-shadow: 0 10px 20px rgba(45, 27, 77, 0.2);
}

.btn-view-all:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 122, 0, 0.4);
}


@media (max-width: 768px) {
  .premium-product-image {
    height: 280px;
  }
}

/* =============================================
   PREMIUM TESTIMONIALS SECTION
   ============================================= */
.testimonial-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 2px solid rgba(192, 23, 224, 0.2);
  box-shadow: 0 10px 30px rgba(192, 23, 224, 0.12);
}

.t-tab-btn {
  padding: 14px 36px;
  border: none;
  background: transparent;
  color: rgba(26, 26, 26, 0.7);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
}

.t-tab-btn.active {
  background: linear-gradient(135deg, #C017E0 0%, #A00DBD 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(192, 23, 224, 0.25);
}

.testimonial-wrapper {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.testimonial-wrapper.active {
  display: grid;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card {
  background: #fff;
  padding: 45px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  position: relative;
  transition: all 0.5s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(45, 27, 77, 0.08);
  border-color: rgba(255, 122, 0, 0.2);
}

.quote-icon {
  font-size: 2.5rem;
  color: rgba(255, 122, 0, 0.15);
  position: absolute;
  top: 30px;
  right: 35px;
}

.testimonial-card p {
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: #1e293b;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.testimonial-card h5 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.testimonial-card span {
  font-size: 0.9rem;
  color: var(--color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Decoration for Section */
.bg-light {
  background-color: #f8fafc !important;
}

/* =============================================
   PREMIUM SHOP PAGE
   ============================================= */
.premium-shop-page {
  background: #fafafa;
  min-height: 100vh;
}

.premium-shop-header {
  background: linear-gradient(135deg, #0a192f 0%, #1e3a8a 100%);
  padding: 80px 0 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.premium-shop-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.shop-breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 15px;
  opacity: 0.8;
}

.shop-breadcrumb a {
  color: #ffd700;
  text-decoration: none;
}

.shop-breadcrumb span {
  margin: 0 8px;
}

.premium-shop-header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #fff;
}

.premium-shop-header p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.premium-shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding: 40px 0;
}

/* Sidebar */
.premium-shop-sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  height: fit-content;
  position: sticky;
  top: 100px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-section {
  margin-bottom: 30px;
}

.filter-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0a192f;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 12px 40px 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}

.search-box input:focus {
  outline: none;
  border-color: #ffd700;
}

.search-box button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 8px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  color: #666;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
  font-size: 0.9rem;
}

.category-list a:hover {
  background: #f8f8f8;
  color: #0a192f;
}

.category-list a.active {
  background: #0a192f;
  color: #fff;
  font-weight: 600;
}

.category-count {
  background: #f0f0f0;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  color: #888;
}

.category-list a.active .category-count {
  background: rgba(255, 255, 255, 0.2);
  color: #ffd700;
}

/* =============================================
   PREMIUM PRODUCT DETAIL PAGE
   ============================================= */
.premium-product-detail {
  background: linear-gradient(rgba(15, 10, 30, 0.95), rgba(15, 10, 30, 0.9)),
    url('../images/premium_featured_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  color: #fff;
  min-height: 100vh;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: flex-start;
}

.product-main-image {
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  animation: slideInLeft 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-main-image img {
  max-width: 100%;
  border-radius: 0;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-main-image:hover img {
  transform: scale(1.05) rotateZ(2deg);
}

.product-info-container {
  animation: slideInRight 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.premium-product-detail .product-title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
  color: var(--color-primary);
  height: auto;
  overflow: visible;
  display: block;
  word-break: break-word;
  overflow-wrap: break-word;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.product-category-badge {
  background: rgba(37, 84, 159, 0.12);
  color: var(--color-accent);
  padding: 6px 16px;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(37, 84, 159, 0.25);
}

.product-stock {
  font-size: 0.9rem;
  font-weight: 600;
}

.product-stock.in-stock {
  color: #4ade80;
}

.product-stock.out-of-stock {
  color: #f87171;
}

.product-price-section {
  background: rgba(255, 255, 255, 0.05);
  padding: 25px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 35px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-current-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-secondary);
}

.product-original-price {
  font-size: 1.5rem;
  text-decoration: line-through;
  opacity: 0.5;
  margin-left: 15px;
}

.product-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
}



.product-specs {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  margin-bottom: 40px;
}

.product-specs h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 5px;
}

.spec-value {
  font-weight: 600;
  font-size: 1rem;
}

.product-purchase-form {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.quantity-input input {
  width: 80px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 12px !important;
}

.add-to-cart-btn {
  flex: 1;
  height: 60px;
  background: var(--color-secondary);
  color: #fff;
  border: none;
  border-radius: 0 !important;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(255, 122, 0, 0.3);
}

.add-to-cart-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 122, 0, 0.5);
  background: var(--color-primary);
  color: #fff;
}

.product-trust-badges {
  display: flex;
  gap: 30px;
  opacity: 0.7;
  font-size: 0.9rem;
}

.trust-badge i {
  color: var(--color-accent);
  margin-right: 8px;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-main-image {
    padding: 40px;
  }

  .premium-product-detail .product-title {
    font-size: 2.2rem;
  }
}

/* Pagination */
.page-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  color: #0a192f;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.page-btn:hover {
  border-color: #0a192f;
  background: #0a192f;
  color: #fff;
}

.page-btn.active {
  background: #0a192f;
  color: #ffd700;
  border-color: #0a192f;
}

/* Mobile Filter Toggle */
.mobile-filter-toggle {
  display: none;
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 56px;
  height: 56px;
  background: #0a192f;
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(10, 25, 47, 0.3);
  cursor: pointer;
  z-index: 100;
  font-size: 1.2rem;
}

.filter-drawer {
  display: none;
}

.filter-backdrop {
  display: none;
}

/* Mobile Styles */
@media (max-width: 1024px) {
  .premium-shop-layout {
    grid-template-columns: 1fr;
  }

  .premium-shop-sidebar {
    display: none;
  }

  .mobile-filter-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .filter-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
  }

  .filter-drawer.active {
    left: 0;
  }

  .filter-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }

  .filter-backdrop.active {
    opacity: 1;
    visibility: visible;
  }

  .filter-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
  }

  .filter-drawer-header h2 {
    font-size: 1.3rem;
    color: #0a192f;
    margin: 0;
  }

  .filter-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .premium-shop-header {
    padding: 60px 0 40px;
  }

  .premium-shop-header h1 {
    font-size: 2rem;
  }

  .premium-shop-toolbar {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .shop-sort {
    justify-content: space-between;
  }

  .premium-shop-pagination {
    gap: 5px;
  }

  .page-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

/* =============================================
   PREMIUM PRODUCT DETAIL PAGE
   ============================================= */
.premium-product-detail {
  background: #fafafa;
  padding: 40px 0 80px;
}

.product-breadcrumb {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 30px;
}

.product-breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.product-breadcrumb a:hover {
  color: #0a192f;
}

.product-breadcrumb span {
  margin: 0 8px;
  color: #ccc;
}

.product-breadcrumb .current {
  color: #0a192f;
  font-weight: 500;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-bottom: 80px;
}

/* Product Image */
.product-image-container {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 100px;
}

.product-main-image {
  text-align: center;
  margin-bottom: 20px;
}

.product-main-image img {
  max-width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Product Info */
.product-info-container {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.product-title {
  font-size: 1.4rem;
  color: #0a192f;
  margin-bottom: 12px;
  line-height: 1.2;
  font-family: var(--font-heading);
  font-weight: 800;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.product-category-badge {
  background: #f0f0f0;
  color: #666;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.product-category-badge:hover {
  background: #0a192f;
  color: #fff;
}

.product-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.product-stock.in-stock {
  color: #28a745;
}

.product-stock.out-of-stock {
  color: #dc3545;
}

.product-price-section {
  padding: 25px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 25px;
}

.product-price-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.product-current-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a192f;
}

.product-original-price {
  font-size: 1.6rem;
  color: #999;
  text-decoration: line-through;
}

.product-sale-badge {
  background: #ff5252;
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-description {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 30px;
}

/* Product Specs */
.product-specs {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-left: 4px solid #ffd700;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.product-specs h4 {
  font-size: 1.1rem;
  color: #0a192f;
  margin: 0 0 20px 0;
  font-weight: 600;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.85rem;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.spec-value {
  font-size: 1rem;
  color: #0a192f;
  font-weight: 500;
}

/* Add to Cart Form */
.product-purchase-form {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.quantity-input {
  width: 100px;
}

.quantity-input input {
  width: 100%;
  padding: 14px;
  text-align: center;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: border-color 0.2s;
}

.quantity-input input:focus {
  outline: none;
  border-color: #ffd700;
}

.add-to-cart-btn {
  flex: 1;
  padding: 14px 30px;
  background: #0a192f;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.add-to-cart-btn:hover:not(:disabled) {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 25, 47, 0.2);
}

.add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.product-trust-badges {
  display: flex;
  gap: 25px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.trust-badge i {
  font-size: 1.1rem;
}

.trust-badge i.fa-lock {
  color: #28a745;
}

.trust-badge i.fa-truck {
  color: #1e3a8a;
}

.trust-badge i.fa-undo {
  color: #ffd700;
}

/* Related Products */
.related-products-section {
  margin-top: 80px;
}

.related-products-header {
  text-align: center;
  margin-bottom: 50px;
}

.related-products-header h3 {
  font-size: 2rem;
  color: #0a192f;
  margin-bottom: 10px;
}

.related-products-header p {
  color: #666;
  font-size: 1.05rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-image-container {
    position: static;
  }
}

@media (max-width: 768px) {
  .product-title {
    font-size: 1.2rem;
  }

  .product-current-price {
    font-size: 2rem;
  }

  .product-original-price {
    font-size: 1.3rem;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .product-purchase-form {
    flex-direction: column;
  }

  .quantity-input {
    width: 100%;
  }

  .product-trust-badges {
    flex-direction: column;
    gap: 15px;
  }
}

/* =====================================================
   MODERN SHOP REDESIGN - Compact & Premium
   ===================================================== */

/* Modern Shop Page Container */
.modern-shop-page {
  background: #fafafa;
  min-height: 100vh;
  padding-bottom: 60px;
}

/* Modern Shop Header */
.modern-shop-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a2f50 100%);
  padding: 30px 0;
  margin-bottom: 30px;
}

.modern-shop-header {
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.modern-shop-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/hero/law-library.jpg') center/cover no-repeat;
  opacity: 0.15;
  animation: kenBurns 30s linear infinite alternate;
}

.modern-shop-header .container {
  position: relative;
  z-index: 2;
}

.modern-shop-header .shop-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.modern-shop-header .shop-breadcrumb a {
  color: #ffd700;
  opacity: 0.8;
}

.modern-shop-header .shop-breadcrumb a:hover {
  opacity: 1;
}

.modern-shop-header .shop-breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}

.modern-shop-header h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0;
  letter-spacing: -2px;
  line-height: 1;
}

/* Modern Filter Bar - Glassmorphism */
.modern-filter-bar {
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: -40px;
  margin-bottom: 50px;
  border-radius: 16px !important;
  border: 1px solid rgba(10, 25, 47, 0.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 100px;
  z-index: 100;
}

/* Modern Search */
.modern-search {
  flex: 1;
  min-width: 200px;
  max-width: 350px;
  position: relative;
  display: flex;
  align-items: center;
}

.modern-search i {
  position: absolute;
  left: 15px;
  color: #999;
}

.modern-search input {
  width: 100%;
  height: 48px;
  padding: 0 15px 0 42px;
  border: 1px solid #e0e0e0;
  font-size: 0.95rem;
  transition: all 0.2s;
  border-radius: 8px !important;
}

.modern-search input:focus {
  outline: none;
  border-color: #ffd700;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Modern Dropdown */
.modern-dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 18px;
  background: #fff;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  transition: all 0.2s;
  white-space: nowrap;
  border-radius: 8px !important;
}

.dropdown-trigger:hover {
  border-color: #ffd700;
}

.dropdown-trigger .fa-chevron-down {
  font-size: 0.75rem;
  color: #999;
  transition: transform 0.2s;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  max-height: 400px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.dropdown-content.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  color: #444;
  font-size: 0.9rem;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.15s;
}

.dropdown-item:hover {
  background: #f9f9f9;
  color: var(--color-primary);
}

.dropdown-item.active {
  background: var(--color-primary);
  color: #fff;
}

.dropdown-item .item-count {
  background: #eee;
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: 600;
}

.dropdown-item.active .item-count {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Modern Sort */
.modern-sort select {
  height: 48px;
  padding: 0 35px 0 15px;
  border: 1px solid #e0e0e0;
  font-size: 0.9rem;
  cursor: pointer;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 12px center no-repeat;
  appearance: none;
  border-radius: 8px !important;
}

.modern-sort select:focus {
  outline: none;
  border-color: #ffd700;
}

/* Results Info */
.results-info {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #0a192f;
  letter-spacing: 1.5px;
  opacity: 0.7;
}

.results-info strong {
  color: #ffd700;
}

/* Compact Product Grid */
.compact-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* Compact Product Card */
.compact-product-card {
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #eee;
}

.compact-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.compact-product-image {
  position: relative;
  aspect-ratio: 2/3;
  background: #f8f8f8;
  overflow: hidden;
}

.compact-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.compact-product-card:hover .compact-product-image img {
  transform: scale(1.05);
}

.badge-sale {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e63946;
  color: #fff;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compact-product-info {
  padding: 15px;
}

.product-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #222;
  line-height: 1.3;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.4em;
}

.product-author {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-old {
  font-size: 0.85rem;
  color: #aaa;
  text-decoration: line-through;
}

.price-current {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* Quick Add Form */
.quick-add-form {
  padding: 0 15px 15px;
}

.btn-add-cart {
  width: 100%;
  padding: 10px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-cart:hover {
  background: #1a2f50;
}

/* Modern Pagination - Premium Minimalist */
.modern-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 80px;
  padding: 40px 0;
  border-top: 1px solid rgba(10, 25, 47, 0.05);
}

.page-btn {
  padding: 14px 28px;
  background: #fff;
  border: 1px solid #eee;
  color: #0a192f;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.page-btn:hover {
  border-color: #0a192f;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(10, 25, 47, 0.1);
}

.page-numbers {
  display: flex;
  gap: 10px;
}

.page-num {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #eee;
  color: #64748b;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.page-num:hover,
.page-num.active {
  background: #0a192f;
  border-color: #0a192f;
  color: #ffd700;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(10, 25, 47, 0.15);
}

/* Shop Empty State - Premium Polish */
.shop-empty-state {
  text-align: center;
  padding: 120px 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

.shop-empty-state h3 {
  font-size: 2rem;
  font-weight: 900;
  color: #0a192f;
  margin-bottom: 15px;
}

.shop-empty-state p {
  font-size: 1.15rem;
  color: #64748b;
  margin-bottom: 35px;
}

/* Responsive Grid */
@media (max-width: 1400px) {
  .compact-product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1100px) {
  .compact-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .modern-filter-bar {
    flex-direction: column;
    align-items: stretch;
    position: static;
    gap: 10px;
  }

  .modern-search {
    max-width: 100%;
  }

  .modern-dropdown {
    width: 100%;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-content {
    width: 100%;
    min-width: 100%;
  }

  .modern-sort {
    width: 100%;
  }

  .modern-sort select {
    width: 100%;
  }

  .results-info {
    text-align: center;
    margin-left: 0;
  }

  .compact-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .compact-product-info {
    padding: 10px;
  }

  .product-name {
    font-size: 0.8rem;
  }

  .quick-add-form {
    padding: 0 10px 10px;
  }

  .btn-add-cart {
    padding: 8px;
    font-size: 0.8rem;
  }

  .modern-shop-header {
    padding: 20px 0;
  }

  .modern-shop-header h1 {
    font-size: 1.5rem;
  }
}

/* =============================================
   PREMIUM FEATURED PUBLICATIONS SECTION
   ============================================= */

.premium-featured-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.featured-section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.header-content {
  margin-bottom: 30px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(192, 23, 224, 0.3);
  margin-bottom: 20px;
}

.section-badge i {
  font-size: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary);
  margin: 20px 0;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Header Decoration */
.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.decoration-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
}

/* Premium Publications Grid */
.premium-publications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Featured Publication Card */
.featured-publication-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-publication-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Card Gradient Background */
.card-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(135deg, rgba(192, 23, 224, 0.03), rgba(255, 122, 0, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.featured-publication-card:hover .card-gradient {
  opacity: 1;
}

/* Image Wrapper */
.publication-image-wrapper {
  position: relative;
  padding: 20px;
  background: #f8f9fa;
}

/* Publication Badges */
.publication-badge {
  position: absolute;
  top: 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.sale-badge {
  left: 15px;
  background: linear-gradient(135deg, #FF7A00, #FF5722);
  color: #fff;
}

.featured-badge {
  right: 15px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #fff;
  width: 32px;
  height: 32px;
  padding: 0;
  justify-content: center;
  border-radius: 50%;
}

/* Image Container */
.publication-image-link {
  display: block;
  text-decoration: none;
}

.image-container {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
}

.publication-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-publication-card:hover .publication-image {
  transform: scale(1.05);
}

/* Image Overlay */
.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(192, 23, 224, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featured-publication-card:hover .image-overlay {
  opacity: 1;
}

.view-details-text {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Quick Actions */
.quick-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.quick-action-form {
  flex: 1;
  margin: 0;
}

.quick-action-btn {
  flex: 1;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-hover));
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
}

.quick-view-btn {
  background: rgba(192, 23, 224, 0.1);
  color: var(--color-primary);
}

.quick-view-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Publication Info */
.publication-info {
  padding: 20px;
}

.publication-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.publication-category i {
  font-size: 0.85rem;
}

.publication-title {
  margin: 0 0 15px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  min-height: 2.8em;
}

.publication-title a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.publication-title a:hover {
  color: var(--color-primary);
}

/* Price Section */
.publication-price-section {
  border-top: 1px solid #f0f0f0;
  padding-top: 15px;
  margin-top: 15px;
}

.price-group {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.price-label {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-original {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}

.price-current {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-primary);
}

.sale-price {
  color: #FF7A00;
}

.single-price .price-current {
  font-size: 1.6rem;
}

.savings-badge {
  display: inline-block;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 8px;
}

/* Section CTA */
.section-cta {
  text-align: center;
}

.premium-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(192, 23, 224, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(192, 23, 224, 0.4);
}

.premium-cta-button i {
  transition: transform 0.3s ease;
}

.premium-cta-button:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .premium-publications-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .premium-publications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .premium-publications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .publication-info {
    padding: 15px;
  }

  .publication-title {
    font-size: 0.95rem;
  }

  .price-current {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .featured-section-header {
    margin-bottom: 40px;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .section-title {
    font-size: 1.75rem;
  }
}


/* =============================================
   PREMIUM NEW ARRIVALS SECTION
   ============================================= */

.premium-new-arrivals-section {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--color-secondary);
}

/* Section Header */
.new-arrivals-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.arrivals-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-secondary), #FF5722);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
  margin-bottom: 20px;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.arrivals-badge i {
  font-size: 1rem;
  animation: lightning 1.5s infinite;
}

@keyframes lightning {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

/* Orange Decoration */
.decoration-line.orange {
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

.decoration-dot.orange {
  background: var(--color-secondary);
}

/* New Arrivals Grid */
.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* New Arrival Card */
.new-arrival-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.new-arrival-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 122, 0, 0.15);
  border-color: var(--color-secondary);
}

/* Card Accent */
.card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary), #FF5722, var(--color-accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.new-arrival-card:hover .card-accent {
  opacity: 1;
}

/* Image Wrapper */
.arrival-image-wrapper {
  position: relative;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

/* Arrival Badges */
.arrival-badge {
  position: absolute;
  top: 15px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 25px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
}

.new-badge {
  left: 15px;
  background: linear-gradient(135deg, #00BCD4, #0097A7);
  color: #fff;
  animation: shine 2s infinite;
}

@keyframes shine {

  0%,
  100% {
    box-shadow: 0 3px 12px rgba(0, 188, 212, 0.4);
  }

  50% {
    box-shadow: 0 3px 20px rgba(0, 188, 212, 0.6);
  }
}

.arrival-badge.sale-badge {
  right: 15px;
  background: linear-gradient(135deg, #FF5722, #F44336);
  color: #fff;
}

.arrival-badge i {
  font-size: 0.85rem;
}

/* Image Container */
.arrival-image-link {
  display: block;
  text-decoration: none;
}

.arrival-image-container {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.arrival-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.new-arrival-card:hover .arrival-image {
  transform: scale(1.1) rotate(2deg);
}

/* Image Overlay */
.arrival-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.95), rgba(255, 87, 34, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.new-arrival-card:hover .arrival-image-overlay {
  opacity: 1;
}

.overlay-content {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overlay-content i {
  font-size: 2rem;
}

/* Quick Actions */
.arrival-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
}

.arrival-action-form {
  margin: 0;
}

.arrival-action-btn {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cart-btn {
  background: linear-gradient(135deg, var(--color-secondary), #FF5722);
  color: #fff;
  box-shadow: 0 4px 15px rgba(255, 122, 0, 0.3);
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 0, 0.5);
}

.view-btn {
  background: rgba(37, 84, 159, 0.1);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}

.view-btn:hover {
  background: var(--color-accent);
  color: #fff;
}

/* Arrival Info */
.arrival-info {
  padding: 20px;
}

.arrival-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.arrival-category,
.arrival-date {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.arrival-category {
  color: var(--color-accent);
}

.arrival-date {
  color: var(--color-secondary);
}

.arrival-category i,
.arrival-date i {
  font-size: 0.75rem;
}

.arrival-title {
  margin: 0 0 15px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  min-height: 2.8em;
}

.arrival-title a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.arrival-title a:hover {
  color: var(--color-secondary);
}

/* Price Section */
.arrival-price-section {
  border-top: 2px solid #f0f0f0;
  padding-top: 15px;
  margin-top: 15px;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.old-price {
  font-size: 0.95rem;
  color: #999;
  text-decoration: line-through;
}

.current-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-accent);
}

.hot-price {
  color: #FF5722;
  animation: price-pulse 1.5s infinite;
}

@keyframes price-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.discount-tag {
  display: inline-block;
  background: linear-gradient(135deg, #FF5722, #F44336);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(255, 87, 34, 0.3);
}

/* Arrivals CTA Button */
.arrivals-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--color-secondary), #FF5722);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255, 122, 0, 0.3);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.arrivals-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 122, 0, 0.5);
}

.arrivals-cta-button i:first-child {
  animation: rocket 1s infinite;
}

@keyframes rocket {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.arrivals-cta-button i:last-child {
  transition: transform 0.3s ease;
}

.arrivals-cta-button:hover i:last-child {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .new-arrivals-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .new-arrivals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .new-arrivals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .arrival-info {
    padding: 15px;
  }

  .arrival-title {
    font-size: 0.95rem;
  }

  .current-price {
    font-size: 1.3rem;
  }

  .arrival-action-btn {
    font-size: 0.75rem;
    padding: 0 8px;
  }

  .arrival-action-btn span {
    display: none;
  }

  .arrival-action-btn i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .arrivals-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }

  .arrival-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* =============================================
   PREMIUM UTILITY BAR
   ============================================= */
.top-utility-bar {
  background-color: #0a192f;
  color: #fff;
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left i {
  color: var(--color-secondary);
  margin-right: 8px;
}

.top-bar-right a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar-right a:hover {
  color: #fff;
}

.top-bar-right .login-link {
  color: var(--color-secondary);
  font-weight: 700;
}

.top-bar-right .login-link:hover {
  color: #fff;
}

.divider {
  color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .top-utility-bar {
    display: none;
  }
}

/* =============================================
   PREMIUM MAIN HEADER
   ============================================= */
.premium-header {
  background: #fff;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.premium-header .navbar-container {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  flex-shrink: 0;
}

.logo-img {
  height: 55px;
  width: auto;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links .nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #0a192f;
  position: relative;
  padding: 10px 0;
}

.nav-links .nav-link:hover {
  color: var(--color-primary);
  background: transparent;
}

.nav-links .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s ease;
}

.nav-links .nav-link:hover::after {
  width: 100%;
}

.nav-links .dropdown .nav-link i {
  font-size: 0.7em;
  margin-left: 5px;
  color: var(--color-secondary);
}

/* Mega Menu */
.mega-menu {
  width: 600px;
  padding: 30px;
  left: -100px;
}

.mega-menu-content {
  display: flex;
  gap: 40px;
}

.mega-column {
  flex: 1;
}

.mega-column h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--color-bg-secondary);
  padding-bottom: 10px;
}

.mega-column ul li {
  margin-bottom: 12px;
}

.mega-column ul li a {
  font-size: 0.95rem;
  color: #555;
  transition: all 0.2s;
}

.mega-column ul li a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

.mega-column .view-all {
  margin-top: 10px;
  display: inline-block;
  font-weight: 700;
  color: var(--color-primary);
}

/* Search Bar */
.search-wrapper {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.header-search-form {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  padding: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--color-border);
  width: 300px;
  z-index: 999;
}

.header-search-form.active {
  display: flex;
}

.header-search-input {
  border: 1px solid #ddd;
  padding: 10px 15px;
  width: 100%;
  margin: 0;
}

.header-search-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
}

/* Action Icons Refined */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.action-icon {
  color: #0a192f;
  font-size: 1.25rem;
  position: relative;
  transition: all 0.3s;
}

.action-icon:hover {
  color: var(--color-primary);
  background: transparent;
  transform: translateY(-2px);
}

.cart-badge-dot {
  position: absolute;
  top: -2px;
  right: -3px;
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  border-radius: 50%;
  border: 2px solid #fff;
  display: none;
}

.cart-badge-dot.active {
  display: block;
}

.cart-count-tooltip {
  display: none;
}