/* ========================================
   HOMEPAGE SPECIFIC STYLES
   ======================================== */

/* ========================================
   HERO SLIDER SECTION
   ======================================== */

/* Hero Slider Section Wrapper */
#hero-slider {
  width: 100%;
  padding: 0;
  margin: 0;
  display: block;
}

/* Outer Container */
.custom-slider-container {
  width: 100%;
  max-width: 1200px;
}

/* Swiper Container */
.custom-swiper {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin: auto;
}

/* Swiper Wrapper - Important for full width slides */
.custom-swiper .swiper-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

/* Slide - Full width and height */
.custom-swiper .swiper-slide {
  width: 100% !important;
  height: 100% !important;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Image - Fill entire slide */
.custom-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Pagination */
.custom-pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Pagination Dots */
.pagination-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffffffb6;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pagination-dot.active {
  background: #120027;
}

/* Desktop - Large screens */
@media (min-width: 768px) {
  .custom-slider-container {
    max-width: 100%;
  }
  
  .custom-swiper {
    height: 400px;
    border-radius: 12px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .custom-slider-container {
    width: 100%;
  }
  
  .custom-swiper {
    width: 100%;
    height: 160px;
  }
}

/* ========================================
   CATEGORIES SECTION
   ======================================== */

#categories {
  width: 100%;
  padding: 40px 0;
}

/* ========================================
   CATEGORIES SLIDER
   ======================================== */

#categories-slider {
  width: 100%;
  padding: 40px 0;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

#services {
  width: 100%;
  padding: 60px 0;
  background: #f8f9fa;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

#gallery {
  width: 100%;
  padding: 60px 0;
}

#gallery .gallery-img {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

#gallery .gallery-img:hover {
  transform: scale(1.05);
}

/* ========================================
   PRICING SECTION
   ======================================== */

#pricing {
  width: 100%;
  padding: 60px 0;
}

/* ========================================
   QUALITY SHOP SECTION
   ======================================== */

#quality-shop {
  width: 100%;
  padding: 40px 0;
}

/* ========================================
   QUALITY SHOP SLIDER (t7-slider)
   ======================================== */

.t7-slider-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.t7-slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.t7-slide {
  flex: 0 0 33.33%;
  padding: 10px;
}

.t7-slide img {
  width: 100%;
  aspect-ratio: 1/1;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Mobile - larger images */
@media (max-width: 768px) {
  .t7-slide {
    flex: 0 0 100%;
  }
  .t7-slide img {
    max-height: 350px;
  }
}

/* Desktop - smaller images */
@media (min-width: 769px) {
  .t7-slide img {
    max-height: 300px;
  }
}

/* ========================================
   READYMADE STORE SLIDER
   ======================================== */

.name-text1 {
  text-align: center;
}

.readymade-slider-wrapper {
  width: 100%;
  overflow: hidden;
}

.readymade-slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.readymade-slide {
  flex: 0 0 33.33%;
  padding: 5px;
}

.readymade-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.readymade-slide:hover img {
  transform: scale(1.1);
}

.readymade-category-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  outline: none;
}

.readymade-category-btn:hover {
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .readymade-slide {
    flex: 0 0 100%;
  }
  
  .readymade-slide img {
    transition: none !important;
  }
  
  .readymade-slide:hover img {
    transform: none !important;
  }
}

/* ========================================
   FEATURED PRODUCTS SECTION
   ======================================== */

#featured-products {
  width: 100%;
  padding: 60px 0;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

#why-choose-us {
  width: 100%;
  padding: 60px 0;
  background: #f8f9fa;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

#testimonials {
  width: 100%;
  padding: 60px 0;
}

/* ========================================
   CTA SECTION
   ======================================== */

#cta {
  width: 100%;
  padding: 60px 0;
}

/* ========================================
   T7 FLIP CARDS (About Section)
   ======================================== */

#about,
.t7-flip-wrapper,
.t7-flip-wrapper * {
  box-sizing: border-box;
}

/* Section Background */
.t7-flip-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Mobile View */
@media (max-width: 768px) {
  .t7-flip-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 20px;
  }
}

/* Card */
.t7-flip-card {
  width: 100%;
  height: 280px;
  perspective: 1000px;
}

/* Inner Flip */
.t7-flip-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transition: transform 0.6s ease-in-out;
  transform-style: preserve-3d;
}

/* Flip Active */
.t7-flip-card.active .t7-flip-inner {
  transform: rotateY(180deg);
}

/* Front & Back Common */
.t7-front,
.t7-back {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
  background: linear-gradient(rgb(30, 184, 255), rgb(195, 231, 255), rgb(49, 159, 255));
  box-shadow: 0 15px 35px rgba(255, 214, 214, 0.12);
  padding: 40px 25px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
}

/* Back Side Rotate */
.t7-back {
  transform: rotateY(180deg);
}

/* Heading */
.t7-front h3,
.t7-back h3 {
  font-size: 30px;
  margin-bottom: 10px;
  margin-top: 20px;
  color: rgb(24, 19, 19);
}

/* Paragraph */
.t7-front p {
  font-size: 15px;
  color: #000507;
}

/* Button */
.t7-btn {
  margin-top: 18px;
  padding: 10px 22px;
  background: #d4af37;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  transition: 0.3s ease;
}

.t7-btn:hover {
  background: #b8962f;
}

.t7-flip-card.active .t7-back {
  background-color: aqua;
}

.t7-icon {
  font-size: 60px;
  margin-bottom: 20px;
  color: #ffc814;
  transition: 0.3s ease;
}

/* ========================================
   SERVICES SECTION
   ======================================== */

/* Our Services Section CSS */
.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.4s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(254, 254, 255, 0.2);
  border-color: rgba(3, 49, 255, 0.3);
}

.service-card i {
  font-size: 3rem;
  color: #0d6efd;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}

.service-card:hover i {
  color: #0d6efd;
  transform: scale(1.1);
}

.service-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-card:hover h4 {
  color: #667eea;
}

.service-card p {
  color: #718096;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: #4a5568;
}

/* Services Section Responsive */
@media (max-width: 768px) {
  .service-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .service-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .service-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .service-card {
    padding: 25px 15px;
  }
  
  .service-card i {
    font-size: 2rem;
  }
  
  .service-card h4 {
    font-size: 1.2rem;
  }
}

/* ========================================
   MARQUEE STYLES
   ======================================== */

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding-left: 50px;
  padding-right: 50px;
  color: #1b1b1bff;
  font-size: 1.5rem;
  padding-top: 50px;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 50px;
  background: #f8f9fa;
}

.marquee-wrapper marquee {
  font-size: 1.5rem;
  color: #1b1b1b;
  font-weight: 600;
}

/* ============================================
   SHOP PAGE STYLES
   ============================================ */

/* Modern E-commerce Product Grid  */
.pb-5 {
    background-color: #ffffff;
    padding-left: 0;
    padding-right: 0;
}

.pb-5 > .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
}

@media (min-width: 992px) {
    .pb-5 > .container {
        padding-left: 5px;
        padding-right: 5px;
        max-width: 90%;
    }
}
.shop-container {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (min-width: 992px) {
    .shop-container {
        padding-left: 0;
        padding-right: 0;
    }

    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.modern-product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    height: auto;
    pointer-events: auto;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    pointer-events: auto;
}
.product-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 38px;
}

.product-price-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.product-old-price {
    font-size: 12px;
    color: #fd0707ff;
    text-decoration: line-through;
    margin: 0;
}

.product-discount {
    font-size: 11px;
    font-weight: 600;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.product-rating-modern {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.star-container-modern {
    display: flex;
    align-items: center;
    gap: 1px;
}

.star-container-modern .fas,
.star-container-modern .far {
    font-size: 10px;
    color: #FFD700 !important; /* Golden color */
}

.no-ratings-text {
    font-size: 10px;
    color: #999;
}

.no-ratings-text i {
    color: #FFD700 !important; /* Golden color for no ratings star */
}

.product-actions {
    padding: 0 12px 12px;
    display: flex;
    gap: 8px;
}

.btn-view-details {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.btn-add-cart {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-add-cart:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
}

/* Hide old Bootstrap product card styles */
.product-card {
    display: none !important;
}

/* Ensure proper spacing */


.sort-by-section label {
    margin: 0;
    font-weight: 500;
}

.add-to-cart-no-hover {
    margin: 0 !important;
    white-space: nowrap;
    min-width: fit-content;
    padding: 0.375rem 0.5rem !important;
}

.add-to-cart-no-hover:hover {
    background-color: #007bff !important;
    border-color: #007bff !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Mobile responsive image container - 1:1 aspect ratio */
@media (max-width: 768px) {
    .product-image-container {
        height: 0;
        padding-bottom: 100%;
        position: relative;
    }
    
    .product-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* Image overlay for hover effects */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.7));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-image-container:hover .image-overlay {
    opacity: 1;
}

/* Product Badge (New, Sale, etc.) */
.product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ff4757;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

/* Wishlist Button on Product Card */
.wishlist-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    z-index: 10;
}

.wishlist-btn:hover {
    transform: scale(1.1);
    background: #ffe0e0;
}

.wishlist-btn i {
    color: #666;
    font-size: 14px;
    transition: color 0.2s ease;
}

.wishlist-btn:hover i,
.wishlist-btn.active i {
    color: #ff4757;
}

/* Product Info Section */
.product-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-brand {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.product-category {
    font-size: 11px;
    color: #888;
    margin-bottom: 8px;
}

/* Price Styling */
.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.product-original-price {
    font-size: 13px;
    color: #888;
    text-decoration: line-through;
}

.product-discount {
    font-size: 12px;
    color: #2ed573;
    font-weight: 600;
}

/* Rating Stars */
.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.rating-stars {
    color: #ffa502;
    font-size: 12px;
}

.rating-count {
    font-size: 12px;
    color: #666;
}

/* Variant Tags */
.variant-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
}

.variant-tag {
    font-size: 11px;
    color: #666;
    background: #f1f2f6;
    padding: 3px 8px;
    border-radius: 4px;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 10px;
    background: #333;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover {
    background: #555;
    transform: translateY(-1px);
}

.add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Filter Section Styles */
.filter-section {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: block;
}

.filter-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #333;
}

/* Price Range Inputs */
.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.price-separator {
    color: #666;
    font-size: 14px;
}

/* Search Input */
.search-box {
    position: relative;
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.search-input:focus {
    outline: none;
    border-color: #333;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.search-btn:hover {
    background: #555;
}

/* Sort Dropdown */
.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.sort-label {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

/* No Results State */
.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-icon {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.no-results-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* ============================================
   ALERT NOTIFICATION STYLES
   ============================================ */

.alert-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease;
}

.alert-success {
    background: #2ed573;
    color: white;
}

.alert-danger {
    background: #ff4757;
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ============================================
   SHOP PAGE SEARCH & FILTER STYLES
   ============================================ */

/* Enhanced Search and Filter Styles */
.search-filter-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    margin-bottom: 20px;
    width: 100%;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    max-width: 50%;
}

.filter-dropdown-group {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    max-width: 50%;
    justify-content: flex-end;
}

.filter-select {
    min-width: 200px;
    padding: 8px 15px;
    border-radius: 25px;
    border: 2px solid #e0e0e0;
    background: white;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.search-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-label {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    white-space: nowrap;
}

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

.search-input {
    min-width: 250px;
    padding-right: 45px;
    border-radius: 25px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.filter-dropdown-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Mobile Search Toggle */
.mobile-search-toggle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.mobile-search-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Mobile Search Panel */
.mobile-search-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-search-panel.active {
    opacity: 1;
    visibility: visible;
}

.mobile-search-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-search-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.mobile-search-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-search-body {
    padding: 20px;
    background: white;
    height: calc(100% - 70px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mobile-search-input {
    font-size: 16px;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    margin-bottom: 15px;
}

.mobile-search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Mobile Search Margin */
.mobile-search-margin {
    margin-top: 20px;
}

/* ============================================
   SHOP PAGE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
    .search-filter-container {
        width: 100%;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 10px;
        margin-top: 10px;
        margin-bottom: 15px;
        padding: 0 5px;
    }

    .search-input-group {
        width: 48%;
        flex: none;
        max-width: 48%;
        margin: 0;
    }

    .filter-dropdown-group {
        width: 48%;
        flex: none;
        max-width: 48%;
        justify-content: flex-end;
        margin: 0;
    }

    .filter-select {
        min-width: auto;
        width: 100%;
        font-size: 13px;
        padding: 8px 12px;
    }

    .search-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
    }

    .search-input-container {
        flex: 1;
        display: flex;
        align-items: center;
    }

    .search-input {
        width: 100%;
        min-width: auto;
        padding-right: 45px;
        border-radius: 25px;
        border: 2px solid #e0e0e0;
        transition: all 0.3s ease;
        font-size: 14px;
        padding: 8px 15px;
    }

    .search-input:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
    }

    .search-button {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        border: none;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .search-button:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    }

    .search-label {
        display: none !important;
    }

    .filter-dropdown-group {
        min-width: 150px;
        margin: 0px;
    }

    .filter-select {
        min-width: 150px;
        font-size: 13px;
    }

    .filter-label {
        display: none !important;
    }

    /* Hide mobile search panel since we're using desktop-style search */
    .mobile-search-toggle {
        display: none !important;
    }

    .mobile-search-panel {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .search-filter-container {
        gap: 8px;
        margin-top: 0px;
    }
}


/* ============================================
   HEADER STYLES
   ============================================ */


.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px !important;
    border-radius: 4px;
    margin: 0 4px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0059ff !important;
    background-color: rgba(170, 212, 255, 0.26);
}

/* Active menu item underline */
.navbar-nav .nav-link.active {
    position: relative;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #ff1313d2;
    border-radius: 2px;
}

.navbar {
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-toggler {
    border-color: rgba(44, 62, 80, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 62, 80, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navigation Fix */
.navbar-collapse {
    background-color: white !important;
    z-index: 1000;
}

.navbar-nav {
    background-color: white !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: white !important;
        padding: 10px 0;
        border-top: 1px solid #e9ecef;
        z-index: 1000;
        position: relative;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    
    .navbar-collapse.show {
        display: block !important;
    }
    
    .navbar-nav {
        background-color: white !important;
        padding: 10px 0;
        z-index: 1001;
        position: relative;
    }
    
    .navbar-nav .nav-link {
        background-color: white !important;
        color: #333 !important;
        padding: 10px 15px !important;
        margin: 2px 0;
        border-radius: 5px;
        position: relative;
        z-index: 1002;
        display: block;
        width: 100%;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: #0059ff !important;
        background-color: rgba(170, 212, 255, 0.26);
    }
    
    /* Fix menu toggle button */
    .navbar-toggler {
        z-index: 1003;
        position: relative;
    }
    
    /* Ensure menu appears above content */
    .navbar {
        position: relative;
        z-index: 999;
    }
    
    /* Menu open state */
    .navbar.menu-open {
        background-color: white !important;
    }
    
    .navbar.menu-open .navbar-collapse {
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }
}
        .modern-brand {
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .modern-brand:hover {
            transform: translateY(-1px);
        }

        .logo-container {
            display: flex;
            align-items: baseline;
            gap: 8px;
            position: relative;
        }

        /*.logo-containe::after {
            content: '';
            position: absolute;
            bottom: 7px;
            left: 0;
            right: 0;
            height: 2px;
            background: repeating-linear-gradient(
                90deg,
                #e74c3c 0px,
                #e74c3c 3px,
                transparent 3px,
                transparent 6px
            );
        }*/

        .brand-logo {
            height: 60px;
            width: auto;
            transition: all 0.3s ease;
            object-fit: contain;
            vertical-align: middle;
        }

        .brand-text-container {
            display: flex;
            align-items: baseline;
            gap: 0;
            position: relative;
        }

        .brand-text-main {
            font-size: 2.5rem;
            font-weight: normal;
            font-family: 'ALBRICH';
            color: #0d6efd;
            letter-spacing: px;
            position: relative;
        }

        .brand-number {
            font-size: 3rem;
            font-weight: normal;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #0d6efdff;
            letter-spacing: 0.5px;
            position: relative;
        }

        .modern-brand:hover .brand-logo {
            transform: scale(1.05);
        }

        .modern-brand:hover .brand-number {
            color: #0d6efd;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .logo-hat {
                font-size: 1.5rem;
            }
            
            .logo-bowtie {
                font-size: 1.0rem;
            }
            
            .brand-text-main {
                font-size: 1.8rem;
            }
            
            .brand-text-main::first-letter {
                font-size: 2.2rem;
            }
            
            .brand-number {
                font-size: 2.0rem;
            }
        }

        @media (max-width: 576px) {
            .logo-container {
                gap: 6px;
            }
            
            .logo-hat {
                font-size: 1.3rem;
            }
            
            .logo-bowtie {
                font-size: 0.9rem;
            }
            
            .brand-text-main {
                font-size: 1.6rem;
            }
            
            .brand-text-main::first-letter {
                font-size: 2.0rem;
            }
            
            .brand-number {
                font-size: 1.8rem;
            }
        }
        .navbar-toggler {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid #5b5b5cff;
            border-radius: 10px;
            padding: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(255, 255, 255, 1);
            position: relative;
            overflow: hidden;
            width: 50px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .navbar-toggler:hover {
            background: linear-gradient(135deg, #fcfcfcff 0%, #ffffff 100%);
            box-shadow: 0 4px 16px rgba(255, 255, 255, 1);
            transform: translateY(-1px);
        }

        .navbar-toggler:focus {
            outline: none;
            border-color: #5b5b5cff;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 1);
        }

        .navbar-toggler:active {
            transform: translateY(0);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            transition: all 0.3s ease;
            width: 24px;
            height: 24px;
        }

        .navbar-toggler .fa-times {
            color: #000000ff;
            font-size: 20px;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-origin: center;
        }

        .navbar-toggler:hover .fa-times {
            color: #1b1b1bff;
            transform: rotate(180deg) scale(1.1);
        }

        /* Remove any default Bootstrap borders on mobile menu */
        .navbar-collapse {
            border: none;
            box-shadow: none;
        }

        .navbar-collapse.show {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-radius: 0 0 12px 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .navbar-toggler::before {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0d6efd;
            z-index: 1;
            transition: top 0.3s ease-out;
        }

        .navbar-toggler.clicked::before {
            top: 100%;
        }

        .navbar-toggler-icon,
        .navbar-toggler .fa-times {
            position: relative;
            z-index: 2;
        }
        /* Unique Top Bar Design */
        .unique-top-bar {
            background-color: #f0f0f0;
            color: #333;
            background: #0d6efd;
            color: #e6e6e6;
            padding: 10px 0;
            
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #e74c3c;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            width: 100%;
        }

        .unique-top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                90deg,
                transparent,
                transparent 50px,
                rgba(231, 76, 60, 0.03) 50px,
                rgba(231, 76, 60, 0.03) 100px
            );
        }

        .unique-top-bar-content {
            position: relative;
            z-index: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .unique-contact-info {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 13px;
            font-weight: 500;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            gap: 5px;
            color: white;
        }

        .contact-detail:not(:first-child) {
            border-left: 1px solid rgba(255, 255, 255, 0.3);
            padding-left: 15px;
        }

        .contact-divider {
            color: #ffffff;
            font-weight: bold;
        }

        .unique-user-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .unique-user-welcome {
            font-size: 13px;
            color: #fff;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
            margin-right: 15px;
        }

        .unique-links {
            display: flex;
            align-items: center;
            gap: 12px;
            border-left: 1px solid rgba(255, 255, 255, 0.3);
            padding-left: 15px;
        }

        .unique-link {
            color: #ffffff;
            text-decoration: none;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 8px;
            border-radius: 4px;
            transition: all 0.2s ease;
            border: 1px solid transparent;
            cursor: pointer;
            pointer-events: auto;
            position: relative;
            z-index: 10;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            white-space: nowrap;
        }

        .unique-link:not(:first-child) {
            border-left: 1px solid rgba(255, 255, 255, 0.3);
            padding-left: 15px;
        }

        .unique-link:hover {
            color: #ffffff;
            background: transparent;
            border-color: transparent;
        }

        .unique-link.logout:hover {
            background: transparent;
            border-color: transparent;
        }

        .unique-link .fa-shopping-cart {
            font-size: 10px;
        }

        .unique-link #cart-count {
            position: relative !important;
            top: auto !important;
            transform: none !important;
            margin-left: 3px;
        }

        .dropdown-toggle {
            cursor: pointer !important;
            pointer-events: auto !important;
            position: relative;
            z-index: 1020 !important;
            user-select: none;
        }

        .dropdown-toggle:focus {
            outline: 2px solid #ffffff !important;
            outline-offset: 2px;
        }

        /* Simple fix for My Account dropdown */
        .dropdown-menu {
            z-index: 9999 !important;
        }

        .nav-link.dropdown-toggle {
            cursor: pointer !important;
            pointer-events: auto !important;
            outline: none !important;
            box-shadow: none !important;
            border: none !important;
        }

        .nav-link.dropdown-toggle:focus,
        .nav-link.dropdown-toggle:active,
        .nav-link.dropdown-toggle:hover {
            outline: none !important;
            box-shadow: none !important;
            border: none !important;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .unique-top-bar {
                padding: 8px 0;
            }

            .unique-top-bar-content {
                flex-direction: column;
                gap: 8px;
            }

            .unique-contact-info {
                justify-content: center;
                font-size: 12px;
            }

            .unique-user-actions {
                justify-content: center;
            }

            .unique-user-welcome {
                font-size: 12px;
            }

            .unique-links {
                gap: 6px;
            }

            /* Mobile menu close icon styling */
            .navbar-toggler .fa-times {
                font-size: 1.5rem;
                color: #333;
                transition: all 0.3s ease;
            }

            .navbar-toggler:hover .fa-times {
                color: #000;
                transform: rotate(90deg);
                font-size: 1.5rem;
            }

            /* Center the menu content in mobile */
            .navbar-nav {
                text-align: center;
            }

            /* Thinner toggle icon outline */
            .navbar-toggler-icon {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            }
        }

        /* Navbar active link color */
        .navbar-nav .nav-link.active {
            color: #28a745 !important;
        }

        /* Modal Styles for Stitching Page */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: white;
            min-height: 100vh;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            position: relative;
            overflow-x: hidden;
        }

        .modal-backdrop {
            background: rgba(0, 0, 0, 0.5);
        }

        .modal-content {
            border: none;
            border-radius: 30px;
            box-shadow:
                0 25px 50px rgba(0,0,0,0.5),
                0 0 0 1px rgba(212, 175, 55, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.95) 0%,
                rgba(248, 249, 250, 0.9) 50%,
                rgba(255, 255, 255, 0.95) 100%);
            animation: modalEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
        }

        .modal-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                90deg,
                rgba(231, 76, 60, 0.03) 0px,
                rgba(231, 76, 60, 0.03) 50px,
                transparent 50px,
                transparent 100px
            );
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes modalEntrance {
            0% {
                opacity: 0;
                transform: scale(0.7) translateY(-50px) rotateX(-10deg);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0) rotateX(0deg);
            }
        }

        .modal-header {
            border-bottom: 1px solid rgba(0,0,0,0.1);
            padding: 3rem 2.5rem;
            background: linear-gradient(135deg,
                #d4af37 0%,
                #f39c12 25%,
                #e67e22 50%,
                #f39c12 75%,
                #d4af37 100%);
            color: white;
            border-radius: 30px 30px 0 0;
            position: relative;
            overflow: hidden;
        }

        .modal-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: lightSweep 4s ease-in-out infinite;
        }

        @keyframes lightSweep {
            0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .modal-title {
            font-weight: 800;
            font-size: 2.2rem;
            text-align: center;
            width: 100%;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
            position: relative;
            z-index: 2;
        }

        .modal-body {
            padding: 3.5rem 2.5rem;
            text-align: center;
            position: relative;
        }

        .modal-body p {
            font-size: 1.3rem;
            color: #495057;
            margin-bottom: 3rem;
            font-weight: 500;
            line-height: 1.6;
        }

        .btn-choice {
            background: linear-gradient(135deg,
                #d4af37 0%,
                #f39c12 25%,
                #e67e22 50%,
                #f39c12 75%,
                #d4af37 100%);
            border: none;
            border-radius: 50px;
            padding: 16px 40px;
            font-weight: 700;
            font-size: 1.2rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow:
                0 10px 20px rgba(212, 175, 55, 0.3),
                0 0 0 1px rgba(212, 175, 55, 0.1);
            position: relative;
            overflow: hidden;
            text-decoration: none;
            display: inline-block;
            margin: 0 15px;
        }

        .btn-choice::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .btn-choice:hover::before {
            left: 100%;
        }

        .btn-choice:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow:
                0 20px 40px rgba(212, 175, 55, 0.4),
                0 0 0 1px rgba(212, 175, 55, 0.2);
            color: white;
            text-decoration: none;
        }

        .btn-choice:active {
            transform: translateY(-2px) scale(1.02);
        }

        .btn-choice i {
            margin-right: 10px;
            font-size: 1.3rem;
        }

        .page-content {
            display: none;
        }

        @media (max-width: 768px) {
            .modal {
                z-index: 1100;
            }
            .modal-backdrop {
                z-index: 1090;
            }
        }

        .modal.show .modal-content {
            animation: modalEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }
        .gallery-img {
            transition: transform 0.3s ease;
        }
        .gallery-img:hover {
            transform: scale(1.05);
        }
        .view-all-btn {
            background: #007bff;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 0.375rem;
            text-decoration: none;
            display: inline-block;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .view-all-btn:hover {
            background: #0056b3;
            color: white;
            text-decoration: none;
        }

        
/* ============================================
   END HEADER STYLES
   ============================================ */

/* ============================================
   FOOTER STYLES
   ============================================ */

/* Enhanced Footer Styles */
.enhanced-footer {
    position: relative;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: white;
    margin-top: 80px;
    overflow: hidden;
}

.enhanced-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    opacity: 0.5;
}

/* Footer Main Section */
.footer-main {
    position: relative;
    padding: 80px 0 40px;
    z-index: 2;
}

.footer-widget {
    margin-bottom: 30px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 36px;
    color: #fff;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(231, 76, 60, 0.3));
}

.footer-logo h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, #ecf0f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 15px;
}

/* Social Media */
.social-media h6 {
    color: #ecf0f1;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
}

.social-link.facebook { background: linear-gradient(135deg, #1877f2 0%, #42a5f5 100%); }
.social-link.instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link.whatsapp { background: linear-gradient(135deg, #25d366 0%, #4caf50 100%); }
.social-link.twitter { background: linear-gradient(135deg, #1da1f2 0%, #42a5f5 100%); }
.social-link.youtube { background: linear-gradient(135deg, #ff0000 0%, #e52d27 100%); }

/* Widget Titles */
.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ecf0f1;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #e7b13c 0%, #f39c12 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-radius: 6px;
    padding-left: 8px;
}

.footer-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.footer-links a i {
    margin-right: 8px;
    width: 16px;
    opacity: 0.7;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: #e74c3c;
    font-size: 16px;
    margin-top: 2px;
    min-width: 16px;
}

.contact-item span {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.4;
}

/* Newsletter */
.newsletter-text {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

.newsletter-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input-group input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #f39c12 100%);
    border: none;
    padding: 12px 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 12px 12px 0;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e67e22 100%);
    transform: scale(1.05);
}

.newsletter-message {
    min-height: 24px;
    margin-top: 8px;
}

/* Subscriber Count */
.subscriber-count {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 13px;
    color: #bdc3c7;
}

.subscriber-count i {
    color: #f39c12;
}

.subscriber-count strong {
    color: #ecf0f1;
}

/* Payment Methods */
.payment-methods h6 {
    color: #ecf0f1;
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 24px;
    color: #bdc3c7;
    transition: all 0.3s ease;
    padding: 4px;
    border-radius: 4px;
}

.payment-icons i:hover {
    color: #fff;
    transform: scale(1.1);
}

.payment-icons .fa-cc-visa { color: #1a1f71; }
.payment-icons .fa-cc-mastercard { color: #eb001b; }
.payment-icons .fa-cc-amex { color: #006fcf; }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.copyright {
    font-size: 14px;
    color: #95a5a6;
}

.copyright strong {
    color: #ecf0f1;
}

.heart {
    color: #e74c3c;
    font-style: italic;
}

.heart i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #95a5a6 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    transition: color 0.3s ease !important;
    cursor: pointer !important;
    pointer-events: auto !important;
}

.footer-bottom-links a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

.separator {
    color: #7f8c8d;
}

/* WhatsApp & Call Widgets */
.whatsapp-widget, .call-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.call-widget {
    bottom: 180px;
}

.whatsapp-widget a, .call-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-widget a::before, .call-widget a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease;
}

.whatsapp-widget a:hover::before, .call-widget a:hover::before {
    left: 100%;
}

.whatsapp-widget a:hover, .call-widget a:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.whatsapp-widget a {
    background: linear-gradient(135deg, #25d366 0%, #4caf50 100%);
}

.call-widget a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.whatsapp-widget a:hover {
    background: linear-gradient(135deg, #1da851 0%, #388e3c 100%);
}

.call-widget a:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46a3 100%);
}

/* Pulse animation for widgets */
.whatsapp-widget a::after, .call-widget a::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    animation: widgetPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes widgetPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

/* Scroll Animations */
.footer-reveal {
    animation: footerSlideUp 0.8s ease-out;
}

@keyframes footerSlideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-widget, .call-widget {
        bottom: 80px;
        right: 15px;
    }

    .call-widget {
        bottom: 155px;
    }

    .whatsapp-widget a, .call-widget a {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 30px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }

    .copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 50px 0 25px;
    }

    .widget-title {
        font-size: 16px;
    }

    .footer-links a {
        font-size: 13px;
        padding: 6px 0;
    }

    .contact-item span {
        font-size: 13px;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-btn {
        border-radius: 0 0 12px 12px;
    }

    .payment-icons {
        justify-content: center;
    }
}

/* ============================================
   END FOOTER STYLES
   ============================================ */

/* ============================================
   PRODUCT DETAILS PAGE STYLES
   ============================================ */

/* Custom 10px gap consistency */
.product-section {
    margin-bottom: 10px;
}

.product-info > div {
    margin-bottom: 10px;
}

.form-section > div {
    margin-bottom: 10px;
}

.card {
    margin-bottom: 10px;
}

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

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

/* Product Image Gallery Styles */
.product-image-gallery {
    position: relative;
}

/* Related Products Touch Styles */
.product-image-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.related-product-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-product-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Mobile touch feedback */
@media (max-width: 768px) {
    .product-image-container:active {
        transform: scale(0.98);
    }
    
    .related-product-image:active {
        transform: scale(0.95);
    }
}

.main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 400px;
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.main-product-image:hover {
    transform: scale(1.02);
}

/* Mobile Product Slider Styles */
.mobile-product-slider {
    display: none;
    position: relative;
    background: white;
    overflow: hidden;
}

.mobile-slider-container {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: transparent;
}

.mobile-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.mobile-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mobile-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Mobile Slider Dots */
.mobile-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: white;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.slider-dot:hover {
    background: #e91e63;
    transform: scale(1.3);
}

.slider-dot.active {
    background: #e91e63;
    width: 24px;
    border-radius: 12px;
}

/* Mobile Slider Navigation */
.mobile-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
}

.slider-nav-prev {
    left: 15px;
}

.slider-nav-next {
    right: 15px;
}

/* Slider Counter */
.slider-counter {
    position: absolute;
    bottom: 80px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    letter-spacing: 1px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .desktop-gallery {
        display: none;
    }
    
    .mobile-product-slider {
        display: block;
    }
    
    /* Disable hover effects on mobile */
    .btn:hover, .btn-primary:hover {
        transform: none !important;
        box-shadow: none !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    }
    
    .btn:active, .btn-primary:active {
        transform: scale(0.98) !important;
        background: linear-gradient(135deg, #5a6fd6 0%, #6a4190 100%) !important;
    }
    
    .btn:focus, .btn-primary:focus {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        outline: none !important;
        box-shadow: none !important;
    }
}

@media (max-width: 575px) {
    .mobile-slider-container {
        height: 280px;
        border-radius: 12px;
    }
    
    .mobile-slider-nav {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .slider-nav-prev {
        left: 8px;
    }
    
    .slider-nav-next {
        right: 8px;
    }
    
    .slider-counter {
        bottom: 60px;
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .variant-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .variant-row > .col-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    /* Smaller variant cards on mobile */
    .variant-card .card-img-top {
        height: 80px !important;
    }
    
    .variant-card .card-body {
        padding: 8px !important;
    }
    
    .variant-card .btn {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .variant-card .card-title {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .variant-card .card-text {
        font-size: 11px;
    }
    
    .variant-card .mb-2 {
        margin-bottom: 4px !important;
    }
}

@media (max-width: 375px) {
    .mobile-slider-container {
        height: 250px;
    }
    
    .mobile-slider-nav {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    
    /* Extra small variant cards */
    .variant-card .card-img-top {
        height: 60px !important;
    }
    
    .variant-card .card-body {
        padding: 4px !important;
    }
    
    .variant-card .btn {
        padding: 2px 4px;
        font-size: 10px;
    }
    
    .variant-card .card-title {
        font-size: 10px;
    }
    
    .variant-card .card-text {
        font-size: 9px;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .slider-dot:hover {
        transform: scale(1);
    }
    
    .slider-dot:active {
        transform: scale(0.9);
    }
}

.thumbnail-gallery {
    flex-wrap: wrap;
}

.thumbnail-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thumbnail-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.thumbnail-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    display: block;
}

.thumbnail-image.active {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.thumbnail-image:hover {
    border-color: #007bff;
    opacity: 0.8;
}

/* Desktop Vertical Thumbnails - Left Side */
.thumbnail-gallery-vertical {
    width: 100px;
    flex-shrink: 0;
    margin-right: 20px;
}

.thumbnail-image-vertical {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.thumbnail-image-vertical.active {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.thumbnail-image-vertical:hover {
    border-color: #007bff;
    opacity: 0.8;
    transform: scale(1.05);
}

/* Enhanced hover for regular thumbnails */
.thumbnail-image:hover {
    border-color: #007bff;
    opacity: 0.8;
    transform: scale(1.05);
}

/* Desktop Gallery Layout */
.desktop-gallery-wrapper {
    align-items: flex-start;
}

.desktop-gallery .main-image-container {
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-gallery .main-product-image {
    max-height: 500px;
    width: auto;
    max-width: 100%;
}

/* Color Swatches Styles */
.color-swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-swatch-wrapper {
    position: relative;
}

.color-swatch-label {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #ddd;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.color-swatch-label:hover {
    transform: scale(1.1);
    border-color: #007bff;
}

.color-swatch-input:checked + .color-swatch-label {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.color-checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.color-swatch-input:checked + .color-swatch-label .color-checkmark {
    opacity: 1;
}

.color-name-tooltip {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.color-swatch-label:hover .color-name-tooltip {
    opacity: 1;
}

/* Color Gallery Styles */
.color-gallery-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-thumbnail-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.color-thumbnail-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.color-thumbnail-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    display: block;
}

.color-thumbnail-image:hover {
    border-color: #007bff;
    opacity: 0.8;
}

/* ============================================
   DESKTOP LAYOUT STYLES (>=992px)
   ============================================ */
@media (min-width: 992px) {
    /* Main container styling */
    .product-details-section {
        padding: px 0;
        background: linear-gradient(135deg, #1272d3ff 0%, #e9ecef 100%);
    }
    
    .product-details-section .container {
        background: white;
        max-width: 1400px;
    }
    
    /* Force side-by-side layout */
    .product-details-section .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 1px;
        margin: 0;
        background: transparent;
        align-items: flex-start;
    }
    
    /* Left Column - Images - Sticky */
    .product-details-section .col-lg-6:first-child {
        flex: 0 0 calc(50% - 20px) !important;
        max-width: calc(50% - 20px) !important;
        padding: 0 !important;
        background: linear-gradient(135deg, #f1f3f4 0%, #ffffff 100%);
        border-radius: 15px;
        padding: 20px !important;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        position: sticky;
        top: 20px;
        align-self: flex-start;
    }
    
    /* Right Column - Product Info - Normal scroll */
    .product-details-section .col-lg-6:last-child {
        flex: 0 0 calc(50% - 20px) !important;
        max-width: calc(50% - 20px) !important;
        padding: 30px !important;
        background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
        border-radius: 15px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.05);
        align-self: flex-start;
    }
    
    /* Hide Mobile Elements */
    .mobile-product-slider,
    .d-lg-none {
        display: none !important;
    }
    
    /* Show Desktop Gallery */
    .desktop-gallery {
        display: block !important;
    }
    
    /* Product Title Enhancement */
    .product-details-section h1 {
        font-size: 25px;
        font-weight: 700;
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
    }
    
    /* Price Enhancement */
    .product-details-section .text-primary {
        font-size: 36px;
        font-weight: 700;
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
        -webkit-text-fill-color: transparent;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .thumbnail-gallery {
        gap: 2px;
    }

    .thumbnail-image {
        width: 100px;
        height: 100px;
    }

    .thumbnail-container {
        flex: 1;
        max-width: 100px;
    }

    .color-swatch-label {
        width: 35px;
        height: 35px;
    }

    .color-thumbnail-image {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .thumbnail-image {
        width: 80px;
        height: 80px;
    }

    .thumbnail-container {
        max-width: 80px;
    }

    .thumbnail-gallery {
        justify-content: space-around;
    }

    .color-swatch-label {
        width: 30px;
        height: 30px;
    }

    .color-thumbnail-image {
        width: 60px;
        height: 60px;
    }
}

/* Related Products - Modern Card Styles */
.modern-product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modern-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.modern-product-card .product-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    height: auto;
    pointer-events: auto;
}

.modern-product-card .product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.modern-product-card:hover .product-image {
    transform: scale(1.05);
}

/* Wishlist Heart Icon Positioning */
.modern-product-card .product-image-container .fa-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #0d6efd;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-product-card .product-image-container .fa-heart.text-danger {
    color: #dc3545;
}

.modern-product-card .product-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.modern-product-card .product-title {
    font-size: 14px;
    font-weight: 500;
    color: #222;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 38px;
}

.modern-product-card .product-price-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.modern-product-card .product-price {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.modern-product-card .product-old-price {
    font-size: 12px;
    color: #fd0707;
    text-decoration: line-through;
    margin: 0;
}

.modern-product-card .product-discount {
    font-size: 11px;
    font-weight: 600;
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
}

.modern-product-card .product-rating-modern {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.modern-product-card .star-container-modern {
    display: flex;
    align-items: center;
    gap: 1px;
}

.modern-product-card .star-container-modern .fas,
.modern-product-card .star-container-modern .far {
    font-size: 10px;
    color: #FFD700 !important;
}

.modern-product-card .no-ratings-text {
    font-size: 10px;
    color: #999;
}

.modern-product-card .no-ratings-text i {
    color: #FFD700 !important;
}

.modern-product-card .product-actions {
    padding: 0 12px 12px;
    display: flex;
    gap: 8px;
}

.modern-product-card .btn-view-details {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modern-product-card .btn-view-details:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.modern-product-card .btn-add-cart {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modern-product-card .btn-add-cart:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
}

/* ============================================
   STITCHING PAGE STYLES
   ============================================ */

/* Slim Stitching Page Header */
.stitching-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: 3px solid #ffd700;
}

.stitching-page-header .header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.stitching-page-header .header-icon i {
    color: white !important;
}

.stitching-page-header .header-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.stitching-page-header .header-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.stitching-page-header .btn-primary {
    background: #ffd700;
    border: none;
    color: #1a1a2e;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.stitching-page-header .btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive for Stitching Header */
@media (max-width: 768px) {
    .stitching-page-header {
        text-align: center;
        padding: 1rem 0;
    }
    
    .stitching-page-header .d-flex {
        flex-direction: column;
        align-items: center !important;
    }
    
    .stitching-page-header .header-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }
    
    .stitching-page-header .header-icon i {
        font-size: 1.3rem;
    }
    
    .stitching-page-header .header-title {
        font-size: 1.4rem;
    }
    
    .stitching-page-header .header-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .stitching-page-header .btn-primary {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .stitching-page-header .header-title {
        font-size: 1.2rem;
    }
    
    .stitching-page-header .header-tagline {
        font-size: 0.7rem;
    }
}

/* Stitching Process Info Section */
.stitching-process-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 3px solid #ffd700;
}

.stitching-process-info .process-info-box {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.stitching-process-info .process-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
}

.stitching-process-info .process-info-box i {
    color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stitching-process-info .process-info-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
}

/* Size Guide Banner Section */
.size-guide-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-bottom: 3px solid #ffd700;
}

.size-guide-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.size-guide-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

.size-guide-icon i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsive for Size Guide Banner */
@media (max-width: 768px) {
    .size-guide-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem !important;
    }
    
    .size-guide-icon {
        margin-right: 0 !important;
        margin-bottom: 1rem;
    }
    
    .size-guide-card .btn {
        margin-top: 1rem;
        width: 100%;
    }
}

/* Mobile Responsive for Process Info */
@media (max-width: 768px) {
    .stitching-process-info .process-info-box {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .stitching-process-info .process-info-box p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Slim Gallery Page Header */
.gallery-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: 3px solid #ffd700;
}

.gallery-page-header .header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.gallery-page-header .header-icon i {
    color: white !important;
}

.gallery-page-header .header-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.gallery-page-header .header-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.gallery-page-header .btn-primary {
    background: #ffd700;
    border: none;
    color: #1a1a2e;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.gallery-page-header .btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive for Gallery Header */
@media (max-width: 768px) {
    .gallery-page-header {
        text-align: center;
        padding: 1rem 0;
    }
    
    .gallery-page-header .d-flex {
        flex-direction: column;
        align-items: center !important;
    }
    
    .gallery-page-header .header-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }
    
    .gallery-page-header .header-icon i {
        font-size: 1.3rem;
    }
    
    .gallery-page-header .header-title {
        font-size: 1.4rem;
    }
    
    .gallery-page-header .header-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .gallery-page-header .btn-primary {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .gallery-page-header .header-title {
        font-size: 1.2rem;
    }
    
    .gallery-page-header .header-tagline {
        font-size: 0.7rem;
    }
}

/* Slim Contact Page Header */
.contact-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: 3px solid #ffd700;
}

.contact-page-header .header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.contact-page-header .header-icon i {
    color: white !important;
}

.contact-page-header .header-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.contact-page-header .header-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.contact-page-header .btn-primary {
    background: #ffd700;
    border: none;
    color: #1a1a2e;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.contact-page-header .btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive for Contact Header */
@media (max-width: 768px) {
    .contact-page-header {
        text-align: center;
        padding: 1rem 0;
    }
    
    .contact-page-header .d-flex {
        flex-direction: column;
        align-items: center !important;
    }
    
    .contact-page-header .header-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }
    
    .contact-page-header .header-icon i {
        font-size: 1.3rem;
    }
    
    .contact-page-header .header-title {
        font-size: 1.4rem;
    }
    
    .contact-page-header .header-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .contact-page-header .btn-primary {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .contact-page-header .header-title {
        font-size: 1.2rem;
    }
    
    .contact-page-header .header-tagline {
        font-size: 0.7rem;
    }
}

/* Slim About Page Header */
.about-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: 3px solid #ffd700;
}

.about-page-header .header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.about-page-header .header-icon i {
    color: white !important;
}

.about-page-header .header-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.about-page-header .header-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.about-page-header .btn-primary {
    background: #ffd700;
    border: none;
    color: #1a1a2e;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.about-page-header .btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive for About Header */
@media (max-width: 768px) {
    .about-page-header {
        text-align: center;
        padding: 1rem 0;
    }
    
    .about-page-header .d-flex {
        flex-direction: column;
        align-items: center !important;
    }
    
    .about-page-header .header-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }
    
    .about-page-header .header-icon i {
        font-size: 1.3rem;
    }
    
    .about-page-header .header-title {
        font-size: 1.4rem;
    }
    
    .about-page-header .header-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .about-page-header .btn-primary {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .about-page-header .header-title {
        font-size: 1.2rem;
    }
    
    .about-page-header .header-tagline {
        font-size: 0.7rem;
    }
}

/* Slim Pricing Page Header */
.pricing-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: 3px solid #ffd700;
}

.pricing-page-header .header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.pricing-page-header .header-icon i {
    color: white !important;
}

.pricing-page-header .header-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.pricing-page-header .header-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
}

.pricing-page-header .btn-primary {
    background: #ffd700;
    border: none;
    color: #1a1a2e;
    font-weight: 600;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.pricing-page-header .btn-primary:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Mobile Responsive for Pricing Header */
@media (max-width: 768px) {
    .pricing-page-header {
        text-align: center;
        padding: 1rem 0;
    }
    
    .pricing-page-header .d-flex {
        flex-direction: column;
        align-items: center !important;
    }
    
    .pricing-page-header .header-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }
    
    .pricing-page-header .header-icon i {
        font-size: 1.3rem;
    }
    
    .pricing-page-header .header-title {
        font-size: 1.4rem;
    }
    
    .pricing-page-header .header-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .pricing-page-header .btn-primary {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .pricing-page-header .header-title {
        font-size: 1.2rem;
    }
    
    .pricing-page-header .header-tagline {
        font-size: 0.7rem;
    }
}

/* Service Cards */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
    width: 80px;
    margin: 0 auto;
}

.price-tag {
    font-weight: 600;
    font-size: 0.9em;
}

/* Process Steps */
.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    margin-bottom: 1rem;
}

/* Form Styling */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
}

.measurements-grid .form-control {
    border-radius: 10px;
    padding: 0.75rem;
}

.measurements-grid .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Card hover effects */
.hover-lift:hover {
    transform: translateY(-5px);
}

/* Luxury Button Effects */
.luxury-btn {
    transition: all 0.4s ease;
    border-radius: 15px;
}

.luxury-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 25px rgba(255,215,0,0.6);
}

/* Crown Pulse Animation */
.crown-pulse {
    animation: crownPulse 3s infinite ease-in-out;
}

@keyframes crownPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(255,215,0,0.5)); }
    50% { transform: scale(1.1); filter: drop-shadow(0 0 20px rgba(255,215,0,0.8)); }
}

/* Modal Entrance Animation */
@keyframes modalEntrance {
    0% {
        transform: scale(0.9) translateY(-30px);
        opacity: 0;
        filter: blur(5px);
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}

/* Responsive adjustments for Stitching Page */
@media (max-width: 768px) {
    .measurements-grid .col-md-3 {
        margin-bottom: 1rem;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
}

/* ============================================
   END STITCHING PAGE STYLES
   ============================================ */

/* ============================================================================
   PRICING PAGE STYLES
   ============================================================================ */

/* Pricing Page Swiper Slider */
.pricing-page .custom-swiper {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    margin: auto;
}

.pricing-page .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pricing-page .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-page .custom-pagination {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

/* Desktop Slider Height */
@media (min-width: 768px) {
    .pricing-page .custom-swiper {
        height: 400px;
    }
}

/* Mobile Slider Height */
@media (max-width: 767px) {
    .pricing-page .custom-swiper {
        width: 95%;
        height: 160px;
    }
}

/* Pricing Table Container */
.pricing-page .price-container {
    width: 90%;
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

/* Gender Toggle Buttons */
.pricing-page .toggle-buttons button {
    padding: 10px 20px;
    border: 1px solid #000;
    margin: 5px;
    cursor: pointer;
    border-radius: 20px;
    background: #ddd;
    transition: all 0.3s ease;
}

.pricing-page .toggle-buttons button.active {
    background: #0d6efd;
    color: #fff;
}

/* Pricing Table Wrapper */
.pricing-page .table-wrapper {
    position: relative;
    overflow: hidden;
    height: auto;
    margin-top: 20px;
}

/* Price Table */
.pricing-page .price-table {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.pricing-page .price-table.female {
    transform: translateX(-100%);
}

.pricing-page .price-table.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.pricing-page table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.pricing-page th,
.pricing-page td {
    padding: 10px;
    border: 1px solid #ddd;
}

.pricing-page th {
    background: #0d6efd;
    color: #fff;
}

.pricing-page table i {
    margin-right: 8px;
    color: #444443;
}

/* About Section */
.pricing-page .about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 60px;
    padding: 20px;
    flex-wrap: wrap;
}

.pricing-page .about-image {
    flex: 1;
    text-align: center;
    overflow: hidden;
    border-radius: 12px;
}

.pricing-page .about-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.pricing-page .about-image:hover img {
    transform: scale(1.08);
}

.pricing-page .about-content {
    flex: 1;
}

.pricing-page .about-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.pricing-page .about-content h1 span.highlight {
    color: #0d6efd;
    font-size: 100px;
}

.pricing-page .about-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

/* Additional Services Cards */
.pricing-page .pricing-card {
    transition: all 0.3s ease;
    border: none;
}

.pricing-page .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.pricing-page .price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #0d6efd);
}

.pricing-page .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.pricing-page .amount {
    font-size: 3rem;
    font-weight: 800;
}

.pricing-page .popular {
    position: relative;
    overflow: hidden;
}

.pricing-page .popular .badge {
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--secondary-color, #6c757d);
    transform: rotate(45deg);
    padding: 5px 10px;
}

.pricing-page .bg-pink {
    background: linear-gradient(135deg, #ff6b9d, #e91e63);
}

.pricing-page .bg-purple {
    background: linear-gradient(135deg, #6f42c1, #9b59b6);
}

.pricing-page .bg-gradient {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.pricing-page .card-header h5 {
    margin-bottom: 0;
}

.pricing-page .list-unstyled li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-page .list-unstyled li:last-child {
    border-bottom: none;
}

/* Responsive Adjustments for Pricing Page */
@media (max-width: 768px) {
    .pricing-page .about-section {
        flex-direction: column;
        text-align: center;
    }

    .pricing-page .about-content h1 {
        font-size: 24px;
    }

    .pricing-page .about-content h1 span.highlight {
        font-size: 60px;
    }

    .pricing-page .about-content p {
        font-size: 15px;
    }

    .pricing-page .price-tag {
        font-size: 2rem;
    }

    .pricing-page .amount {
        font-size: 2.5rem;
    }

    .pricing-page .card-header h5 {
        font-size: 1.1rem;
    }
}

/* ============================================================================
   END PRICING PAGE STYLES
   ============================================================================ */

/* ============================================================================
   ABOUT PAGE STYLES
   ============================================================================ */

/* Team Member Images */
.about-page .team-member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 15px auto 20px;
    border: 3px solid #0e6efd;
    transition: all 0.3s ease;
}

.about-page .team-member-image:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(14, 110, 253, 0.3);
}

/* Mobile Responsive - Smaller Team Images */
@media (max-width: 768px) {
    .about-page .team-member-image {
        width: 100px;
        height: 100px;
    }
}

/* Achievement Boxes */
.about-page .achievement-box {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fff;
}

.about-page .achievement-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-color, #0d6efd);
}

/* Marquee Footer */
.about-page .marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 50px 50px 20px;
    color: #1b1b1b;
    font-size: 1.5rem;
    background: #f8f9fa;
}

.about-page .marquee-wrapper marquee {
    font-weight: 500;
}

/* Mobile Responsive for Marquee */
@media (max-width: 768px) {
    .about-page .marquee-wrapper {
        font-size: 1.2rem;
        padding: 30px 20px 15px;
    }
}

/* ============================================================================
   END ABOUT PAGE STYLES
   ============================================================================ */

/* ============================================================================
   GALLERY PAGE STYLES
   ============================================================================ */

/* Gallery Section Container */
.gallery-page .gallery-section {
    padding: 80px 0;
}

/* Gallery Item Card */
.gallery-page .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-page .gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.gallery-page .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-page .gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery Overlay (appears on hover) */
.gallery-page .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    text-align: center;
    padding: 20px;
}

.gallery-page .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-page .gallery-overlay h5 {
    margin-bottom: 10px;
    font-weight: bold;
}

.gallery-page .gallery-overlay p {
    margin-bottom: 15px;
    font-size: 14px;
}

/* Gallery Action Button */
.gallery-page .btn-gallery {
    background: #d4af37;
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-page .btn-gallery:hover {
    background: #b8941f;
    color: white;
    transform: scale(1.05);
}

/* Section Title Styling */
.gallery-page .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.gallery-page .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.gallery-page .section-title p {
    font-size: 1.1rem;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-page .gallery-section {
        padding: 50px 0;
    }

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

    .gallery-page .gallery-item img {
        width: 100%;
    }
}

/* ============================================================================
   NEWSLETTER SUBSCRIPTIONS PAGE STYLES
   ============================================================================ */

.newsletter-subscriptions-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: none;
}

.newsletter-subscriptions-page .admin-header h1,
.newsletter-subscriptions-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.newsletter-subscriptions-page .admin-header .btn-outline-light {
    color: white !important;
    border-color: white !important;
}

.newsletter-subscriptions-page .admin-header .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

.newsletter-subscriptions-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

.newsletter-subscriptions-page body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.newsletter-subscriptions-page .main-content .container-fluid {
    padding: 0 30px;
}

.newsletter-subscriptions-page .animated-divider {
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.newsletter-subscriptions-page .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* ============================================================================
   END NEWSLETTER SUBSCRIPTIONS PAGE STYLES
   ============================================================================ */

/* ============================================================================
   ORDER VIEW PAGE STYLES
   ============================================================================ */

.order-view-page body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.order-view-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

.order-view-page .admin-content {
    flex: 1;
    padding-top: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.order-view-page .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.order-view-page .order-status {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.order-view-page .status-pending { background-color: #fff3cd; color: #856404; }
.order-view-page .status-processing { background-color: #cce5ff; color: #004085; }
.order-view-page .status-shipped { background-color: #d4edda; color: #155724; }
.order-view-page .status-delivered { background-color: #d1f2eb; color: #0c5460; }
.order-view-page .status-cancelled { background-color: #f8d7da; color: #721c24; }

.order-view-page .product-info {
    flex: 1;
}

.order-view-page .product-attributes {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #e9ecef;
}

.order-view-page .selected-attributes {
    line-height: 1.8;
}

/* Timeline Styles */
.order-view-page .timeline {
    position: relative;
    padding-left: 30px;
}

.order-view-page .timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e9ecef;
}

.order-view-page .timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.order-view-page .timeline-item:last-child {
    margin-bottom: 0;
}

.order-view-page .timeline-marker {
    position: absolute;
    left: -23px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #e9ecef;
    border: 2px solid #fff;
    z-index: 1;
}

.order-view-page .timeline-item.completed .timeline-marker {
    background-color: #28a745;
}

.order-view-page .timeline-content h6 {
    margin-bottom: 5px;
}

.order-view-page .timeline-content p {
    margin-bottom: 5px;
}

/* ============================================================================
   END ORDER VIEW PAGE STYLES
   ============================================================================ */

/* Map Container */
.contact-page .map-container {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.contact-page .map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Seller CTA Section Gradient Background */
.contact-page .seller-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-page .seller-cta-section .btn-seller {
    color: #667eea;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.contact-page .seller-cta-section .btn-seller:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Contact Info Cards */
.contact-page .contact-info-card {
    transition: all 0.3s ease;
}

.contact-page .contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Form Validation Styles */
.contact-page .was-validated .form-control:invalid,
.contact-page .was-validated .form-select:invalid {
    border-color: #dc3545;
}

.contact-page .was-validated .form-control:valid,
.contact-page .was-validated .form-select:valid {
    border-color: #198754;
}

/* ============================================================================
   END CONTACT PAGE STYLES
   ============================================================================ */

/* ============================================================================
   CART PAGE STYLES
   ============================================================================ */

/* Modern Cart Design */
.cart-page .modern-cart {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Cart Item Card */
.cart-page .cart-item-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.cart-page .cart-item-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* Product Image */
.cart-page .product-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-page .product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
}

.cart-page .product-img-container:hover img {
    transform: scale(1.05);
}

.cart-page .product-img-container .no-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #6c757d;
    font-size: 2rem;
}

/* Product Info */
.cart-page .product-info {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.cart-page .product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-page .unit-price {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 8px;
}

.cart-page .price-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.cart-page .current-price {
    font-size: 1rem;
    font-weight: 700;
    color: #0d6efd;
}

.cart-page .old-price {
    font-size: 0.85rem;
    color: #adb5bd;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.cart-page .discount-badge {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 20px;
}

/* Quantity Control */
.cart-page .qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-page .qty-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #e9ecef;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    z-index: 10;
    -webkit-tap-highlight-color: transparent;
}

.cart-page .qty-btn:active {
    transform: scale(0.95);
}

.cart-page .qty-btn:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    color: #fff;
}

.cart-page .qty-input {
    width: 50px;
    height: 36px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a2e;
}

/* Price & Actions */
.cart-page .price-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
}

.cart-page .item-total {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 8px;
}

.cart-page .remove-btn {
    background: #fff;
    border: 1.5px solid #dc3545;
    color: #dc3545;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-page .remove-btn:hover {
    background: #dc3545;
    color: #fff;
}

/* Order Summary Card */
.cart-page .summary-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 20px;
}

.cart-page .summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.cart-page .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #6c757d;
}

.cart-page .summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    padding-top: 12px;
    border-top: 2px solid #f0f0f0;
    margin-top: 12px;
}

/* Promo Code */
.cart-page .promo-input-group {
    display: flex;
    gap: 8px;
    margin: 16px 0;
}

.cart-page .promo-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.cart-page .promo-input:focus {
    outline: none;
    border-color: #0d6efd;
}

.cart-page .btn-apply {
    padding: 12px 20px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-page .btn-apply:hover {
    background: #0b5ed7;
}

/* Checkout Button */
.cart-page .btn-checkout {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
    text-decoration: none;
}

.cart-page .btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 110, 253, 0.4);
}

/* Cart Actions */
.cart-page .cart-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.cart-page .btn-continue,
.cart-page .btn-update {
    flex: 1;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.cart-page .btn-continue {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #495057;
}

.cart-page .btn-continue:hover {
    background: #e9ecef;
}

.cart-page .btn-update {
    background: #0d6efd;
    border: none;
    color: #fff;
}

.cart-page .btn-update:hover {
    background: #0b5ed7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-page .cart-item-card {
        padding: 12px;
    }

    .cart-page .product-name {
        font-size: 0.9rem;
    }

    .cart-page .unit-price {
        font-size: 0.8rem;
    }

    .cart-page .qty-btn {
        width: 32px;
        height: 32px;
    }

    .cart-page .qty-input {
        width: 44px;
        height: 32px;
    }

    .cart-page .item-total {
        font-size: 1.1rem;
    }

    .cart-page .remove-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .cart-page .cart-actions {
        flex-direction: column;
    }

    .cart-page .summary-card {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .cart-page .cart-item-card {
        padding: 10px;
    }

    .cart-page .product-img-container {
        border-radius: 8px;
    }

    .cart-page .product-name {
        font-size: 0.85rem;
        line-clamp: 1;
        -webkit-line-clamp: 1;
    }

    .cart-page .price-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 8px;
    }

    .cart-page .item-total {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .cart-page .remove-btn span {
        display: none;
    }

    .cart-page .remove-btn {
        padding: 8px;
    }
}

/* ============================================================================
   END CART PAGE STYLES
   ============================================================================ */

/* ============================================================================
   CHECKOUT PAGE STYLES
   ============================================================================ */

/* Checkout Button Hover */
.checkout-page .btn-primary:hover {
    background-color: #1caa00ff;
    border-color: #004085;
}

/* Order Summary Styles */
.checkout-page .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #6c757d;
}

.checkout-page .summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    padding-top: 12px;
    border-top: 2px solid #f0f0f0;
    margin-top: 12px;
}

.checkout-page .old-price {
    text-decoration: line-through;
    color: #6c757d;
}

/* Mobile Section Reordering */
@media (max-width: 991px) {
    .checkout-page .checkout-container {
        display: flex;
        flex-direction: column;
    }

    /* Fix horizontal scroll on mobile */
    .checkout-page .checkout-container .row {
        margin-left: 0;
        margin-right: 0;
    }

    .checkout-page .checkout-container .col-lg-8,
    .checkout-page .checkout-container .col-lg-4 {
        padding-left: 0;
        padding-right: 0;
    }

    .checkout-page .checkout-shipping {
        order: 1;
    }

    .checkout-page .checkout-summary-mobile {
        order: 2;
    }

    .checkout-page .checkout-payment {
        order: 3;
    }

    .checkout-page .checkout-notes {
        order: 4;
    }

    .checkout-page .checkout-buttons {
        order: 5;
    }
}

/* ============================================================================
   END CHECKOUT PAGE STYLES
   ============================================================================ */

/* ============================================
   FABRIC STITCHING CONFIRMATION PAGE STYLES
   ============================================ */

/* Scoped container for fabric stitching confirmation page */
.fabric-stitching-confirmation .timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
}

.fabric-stitching-confirmation .timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    height: 100%;
    width: 2px;
    background: #e9ecef;
}

.fabric-stitching-confirmation .timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.fabric-stitching-confirmation .timeline-marker {
    position: absolute;
    left: 20px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    z-index: 1;
}

.fabric-stitching-confirmation .timeline-content {
    margin-left: 70px;
}

.fabric-stitching-confirmation .timeline-title {
    margin: 0 0 5px 0;
    font-size: 1.2em;
    font-weight: 600;
    color: #495057;
}

.fabric-stitching-confirmation .timeline-date {
    margin: 0 0 10px 0;
    font-size: 0.9em;
    color: #6c757d;
}

.fabric-stitching-confirmation .timeline-description {
    margin: 0;
    color: #6c757d;
}

/* Card Styles */
.fabric-stitching-confirmation .card {
    border-radius: 15px !important;
    overflow: hidden;
}

.fabric-stitching-confirmation .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* Hero Section Gradient */
.fabric-stitching-confirmation .hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .fabric-stitching-confirmation .hero-gradient {
        padding: 2rem 0 !important;
    }

    .fabric-stitching-confirmation .hero-gradient h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .fabric-stitching-confirmation .hero-gradient .lead {
        font-size: 1rem;
        text-align: center;
    }

    .fabric-stitching-confirmation .hero-gradient .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.75rem !important;
    }

    .fabric-stitching-confirmation .hero-gradient .btn-lg {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 20px;
    }

    .fabric-stitching-confirmation .hero-gradient .fa-shopping-cart {
        font-size: 3rem !important;
    }

    /* Timeline Mobile */
    .fabric-stitching-confirmation .timeline-content {
        margin-left: 50px;
    }

    .fabric-stitching-confirmation .timeline::before {
        left: 20px;
    }

    .fabric-stitching-confirmation .timeline-marker {
        left: 10px;
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   FABRICS PAGE STYLES
   ============================================ */

/* Scoped container for fabrics page */
.fabrics-page .fabric-row .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fabrics-page .fabric-row .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Custom styles for View Details button */
.fabrics-page .view-details-btn {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    padding: 8px 16px;
    margin: 2px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 10px;
}

.fabrics-page .view-details-btn:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Custom styles for Stitch This Fabric button */
.fabrics-page .stitch-fabric-btn {
    background-color: #28a745;
    color: white;
    border-color: #535353ff;
    padding: 8px 16px;
    transition: all 0.3s ease;
    font-weight: 400s1;
}

.fabrics-page .stitch-fabric-btn:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* View Modal Styles */
.fabrics-page #viewModal .modal-dialog {
    max-width: 900px;
}

.fabrics-page #viewModal .modal-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.6s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.fabrics-page #viewModal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 20px 20px 0 0;
    padding: 30px;
}

.fabrics-page #viewModal .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.fabrics-page #viewModal .modal-body {
    padding: 40px;
    text-align: center;
}

@media (min-width: 992px) {
    .fabrics-page #viewModal .modal-body {
        padding: 30px;
    }
}

.fabrics-page #viewModal #mainImage {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    max-height: 350px;
}

.fabrics-page #viewModal #thumbnails img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.fabrics-page #viewModal #thumbnails img:hover {
    transform: scale(1.1);
}

.fabrics-page #viewModal #fabricName {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.fabrics-page #viewModal #fabricDescription {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.fabrics-page #viewModal #fabricPrice {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #667eea;
}

.fabrics-page #viewModal .modal-footer {
    border: none;
    padding: 20px 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 0 0 20px 20px;
}

.fabrics-page #viewModal .btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.fabrics-page #viewModal .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
}

/* Modal Backdrop */
.fabrics-page .modal-backdrop {
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

/* ============================================================================
   ORDER DETAILS PAGE STYLES
   ============================================================================ */

.order-details-page .timeline {
    position: relative;
    padding-left: 30px;
}

.order-details-page .timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #dee2e6;
}

.order-details-page .timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.order-details-page .timeline-item:last-child {
    margin-bottom: 0;
}

.order-details-page .timeline-item .icon {
    position: absolute;
    left: -30px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #6c757d;
    z-index: 2;
}

.order-details-page .timeline-item.active .icon {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.order-details-page .timeline-item.current .icon {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.order-details-page .timeline-item .content {
    padding-left: 15px;
}

.order-details-page .timeline-item .date {
    font-size: 0.85rem;
    color: #6c757d;
}

.order-details-page .order-status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.order-details-page .order-status-pending {
    background: #fff3cd;
    color: #856404;
}

.order-details-page .order-status-processing {
    background: #cce5ff;
    color: #004085;
}

.order-details-page .order-status-shipped {
    background: #d1ecf1;
    color: #0c5460;
}

.order-details-page .order-status-delivered {
    background: #d4edda;
    color: #155724;
}

.order-details-page .order-status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-details-page .info-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-details-page .info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.order-details-page .product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.order-details-page .order-summary-row {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.order-details-page .order-summary-row:last-child {
    border-bottom: none;
}


 /*============================================================================
   ORDER DETAILS PAGE STYLES end
   ==========================================================================*/


/* ==========================================================================
   SELL WITH US PAGE STYLES
   Styles for the seller landing page (sell-with-us.php)
   Includes: Hero section, benefits, how-it-works, trust badges, CTA section
   ==========================================================================*/

/* ==========================================================================
   SELL WITH US - CSS VARIABLES & HERO SECTION
   ==========================================================================*/
 :root {
        --seller-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        --seller-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        --seller-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        --seller-gold: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
        --seller-dark: #1a1a2e;
    }

    main.flex-grow-1 {
        background: transparent !important;
    }

    .seller-hero {
        background: var(--seller-primary);
        min-height: calc(100vh - 70px);
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
        margin: 0 -15px;
    }

    .seller-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></svg>');
        background-size: 200px;
        animation: float 20s linear infinite;
    }

    @keyframes float {
        0% { transform: translateY(0) rotate(0deg); }
        100% { transform: translateY(-100px) rotate(360deg); }
    }

    .hero-content {
        position: relative;
        z-index: 2;
        color: white;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        font-family: 'Poppins', sans-serif;
    }

    .hero-title span {
        background: var(--seller-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        font-weight: 300;
        opacity: 0.95;
        margin-bottom: 2rem;
        max-width: 600px;
        font-family: 'Poppins', sans-serif;
    }

    .hero-stats {
        display: flex;
        gap: 3rem;
        margin: 2.5rem 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 120px;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        background: var(--seller-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-label {
        font-size: 0.85rem;
        opacity: 0.9;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Mobile Responsive Styles */
    @media (max-width: 768px) {
        .seller-hero {
            min-height: auto;
            padding: 2rem 0;
            margin: 0 -15px;
        }

        .hero-content {
            padding: 2rem 1rem;
            text-align: center;
        }

        .hero-title {
            font-size: 2.5rem;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        .hero-subtitle {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            max-width: 100%;
        }

        .hero-stats {
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .stat-item {
            min-width: 100px;
        }

        .stat-number {
            font-size: 2rem;
        }

        .stat-label {
            font-size: 0.75rem;
        }

        .btn-seller {
            padding: 0.875rem 2rem;
            font-size: 0.9rem;
        }

        .btn-seller-outline {
            margin-left: 0;
            margin-top: 1rem;
            display: block;
            width: 100%;
        }

        .hero-image {
            max-width: 350px;
            margin-top: 2rem;
        }

        .floating-card {
            position: relative;
            margin: 1rem auto;
            max-width: 280px;
            animation: none;
        }

        .floating-card:nth-child(2),
        .floating-card:nth-child(3) {
            animation-delay: 0;
        }
    }

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

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

        .hero-stats {
            gap: 1rem;
        }

        .stat-item {
            min-width: 80px;
        }

        .stat-number {
            font-size: 1.5rem;
        }

        .stat-label {
            font-size: 0.7rem;
        }

        .btn-seller {
            padding: 0.75rem 1.5rem;
            font-size: 0.85rem;
        }

        .hero-image {
            max-width: 280px;
        }
    }

    .btn-seller {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }

    .btn-seller-primary {
        background: var(--seller-gold);
        color: white;
        box-shadow: 0 10px 30px rgba(245, 175, 25, 0.3);
    }

    .btn-seller-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(245, 175, 25, 0.4);
        color: white;
    }

    .btn-seller-outline {
        background: transparent;
        color: white;
        border: 2px solid rgba(255,255,255,0.5);
        margin-left: 1rem;
    }

    .btn-seller-outline:hover {
        background: white;
        color: #667eea;
        border-color: white;
        transform: translateY(-3px);
    }

    .hero-image-container {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .hero-image {
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.3);
        animation: heroFloat 6s ease-in-out infinite;
    }

    @keyframes heroFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }

    .floating-card {
        position: absolute;
        background: white;
        padding: 1rem 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        animation: cardFloat 4s ease-in-out infinite;
    }

    .floating-card:nth-child(2) { animation-delay: 0.5s; }
    .floating-card:nth-child(3) { animation-delay: 1s; }

    @keyframes cardFloat {
        0%, 100% { transform: translateY(0) rotate(0deg); }
        50% { transform: translateY(-10px) rotate(2deg); }
    }

    .floating-card-icon {
        width: 40px;
        height: 40px;
        background: var(--seller-accent);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.2rem;
    }

    .floating-card-text {
        font-weight: 600;
        color: var(--seller-dark);
        font-size: 0.9rem;
    }

    .benefits-section {
        padding: 5rem 0;
        background: white;
    }

    .section-title {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--seller-dark);
        margin-bottom: 1rem;
        font-family: 'Poppins', sans-serif;
    }

    .section-title p {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

    .benefit-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 20px;
        padding: 2.5rem;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid rgba(0,0,0,0.05);
        height: 100%;
    }

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .benefit-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 2rem;
        color: white;
    }

    .benefit-icon-1 { background: var(--seller-primary); }
    .benefit-icon-2 { background: var(--seller-secondary); }
    .benefit-icon-3 { background: var(--seller-accent); }
    .benefit-icon-4 { background: var(--seller-gold); }

    .benefit-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--seller-dark);
        margin-bottom: 1rem;
        font-family: 'Poppins', sans-serif;
    }

    .benefit-card p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .how-it-works {
        padding: 5rem 0;
        background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    }

    .benefit-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        height: 100%;
    }

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        background: var(--seller-accent);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        font-size: 1.5rem;
        color: white;
    }

    .benefit-card h4 {
        font-weight: 600;
        color: var(--seller-dark);
        margin-bottom: 0.75rem;
        font-family: 'Poppins', sans-serif;
    }

    .benefit-card p {
        color: #666;
        font-size: 0.9rem;
    }

    .step-card {
        background: white;
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        height: 100%;
    }

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }

    .step-number {
        width: 50px;
        height: 50px;
        background: var(--seller-primary);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.3rem;
        margin: 0 auto 1.5rem;
    }

    .step-card h4 {
        font-weight: 600;
        color: var(--seller-dark);
        margin-bottom: 0.75rem;
        font-family: 'Poppins', sans-serif;
    }

    .step-card p {
        color: #666;
        font-size: 0.9rem;
    }

    .step-arrow {
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: #667eea;
        z-index: 10;
    }

    /* Mobile Responsive for Benefits and Steps */
    @media (max-width: 768px) {
        .benefit-card {
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            font-size: 1.3rem;
        }

        .benefit-card h4 {
            font-size: 1.1rem;
        }

        .benefit-card p {
            font-size: 0.85rem;
        }

        .step-card {
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .step-number {
            width: 40px;
            height: 40px;
            font-size: 1.1rem;
        }

        .step-card h4 {
            font-size: 1rem;
        }

        .step-card p {
            font-size: 0.8rem;
        }

        .step-arrow {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .benefit-card {
            padding: 1rem;
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            font-size: 1.1rem;
        }

        .benefit-card h4 {
            font-size: 1rem;
        }

        .benefit-card p {
            font-size: 0.8rem;
        }

        .step-card {
            padding: 1rem;
        }

        .step-number {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }
    }

    .cta-section {
        background: var(--seller-primary);
        padding: 4rem 0;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        right: -50%;
        bottom: -50%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

    @keyframes rotate {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .cta-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: white;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        font-family: 'Poppins', sans-serif;
    }

    .cta-content p {
        font-size: 1.2rem;
        opacity: 0.9;
        margin-bottom: 2rem;
    }

    .btn-cta {
        padding: 1rem 3rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        background: white;
        color: #667eea;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255,255,255,0.3);
        color: #667eea;
    }

    /* Mobile Responsive for CTA Section */
    @media (max-width: 768px) {
        .cta-section {
            padding: 3rem 0;
        }

        .cta-content h2 {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }

        .cta-content p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .btn-cta {
            padding: 0.875rem 2rem;
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .cta-section {
            padding: 2rem 0;
        }

        .cta-content h2 {
            font-size: 1.5rem;
        }

        .cta-content p {
            font-size: 0.9rem;
        }

        .btn-cta {
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
        }
    }
        .trust-badges {
        padding: 2.5rem 0;
        background: white;
        border-top: 1px solid #e9ecef;
    }

    .trust-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        color: #666;
        margin-bottom: 1rem;
    }

    .trust-badge i {
        font-size: 1.5rem;
        color: #28a745;
    }

    .trust-badge span {
        font-weight: 500;
        font-size: 0.9rem;
    }

    /* Mobile Responsive for Trust Badges */
    @media (max-width: 768px) {
        .trust-badges {
            padding: 2rem 0;
        }

        .trust-badge {
            margin-bottom: 1.5rem;
        }

        .trust-badge i {
            font-size: 1.3rem;
        }

        .trust-badge span {
            font-size: 0.85rem;
        }
    }

    @media (max-width: 480px) {
        .trust-badges {
            padding: 1.5rem 0;
        }

        .trust-badge {
            margin-bottom: 1rem;
            flex-direction: column;
            text-align: center;
            gap: 0.5rem;
        }

        .trust-badge i {
            font-size: 1.2rem;
        }

        .trust-badge span {
            font-size: 0.8rem;
        }
    }

    @media (max-width: 991.98px) {
        .hero-title {
            font-size: 2.5rem;
        }
        .hero-stats {
            gap: 2rem;
        }
        .step-arrow {
            display: none;
        }
    }

    @media (max-width: 767.98px) {
        .hero-title {
            font-size: 2rem;
        }
        .hero-stats {
            flex-direction: column;
            gap: 1rem;
        }
        .btn-seller {
            display: block;
            width: 100%;
            margin: 0.5rem 0 !important;
        }
        .btn-cta {
            display: block;
            width: 100%;
            margin: 0.5rem 0 !important;
        }
        .floating-card {
            display: none;
        }
    }

/* ==========================================================================
   END SELL WITH US PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   STITCHING CONFIRMATION PAGE STYLES
   Styles for the stitching order confirmation page timeline
   ==========================================================================*/

/* Timeline Component - Order Progress Tracker */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e9ecef;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -23px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #e9ecef;
    border: 2px solid #fff;
    z-index: 1;
}

.timeline-item.completed .timeline-marker {
    background-color: #28a745;
}

.timeline-content h6 {
    margin-bottom: 5px;
}

.timeline-content p {
    margin-bottom: 5px;
}

/* ==========================================================================
   END STITCHING CONFIRMATION PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   THANK YOU PAGE STYLES
   Styles for order confirmation thank you page
   ==========================================================================*/

/* Thank You Page - Gradient Background */
body.thank-you-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

/* Glassmorphism Card Style */
body.thank-you-page .card {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Large Success Icon */
body.thank-you-page .display-4 {
    font-weight: 300;
}

body.thank-you-page .text-success-icon {
    font-size: 4rem;
}

/* Large Button Styles */
body.thank-you-page .btn-lg {
    padding: 0.75rem 2rem;
    border-radius: 10px;
}

/* ==========================================================================
   END THANK YOU PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   ADMIN PRODUCTS PAGE STYLES
   Styles for admin product management interface
   ==========================================================================*/

/* Admin Layout Structure - Shared across all admin pages */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-layout .main-content {
    margin-left: 272px;
    flex: 1;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Admin Header */
.admin-products-page .admin-header {
    background: blue;
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
}

/* Statistics Cards */
.admin-products-page .stats-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.admin-products-page .stats-card:hover {
    transform: translateY(-5px);
}

.admin-products-page .stats-card .number {
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
}

.admin-products-page .stats-card .label {
    color: #666;
    margin-top: 10px;
}

/* Products Table Container */
.admin-products-page .products-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Table Header */
.admin-products-page .table-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    border-bottom: none;
}

.admin-products-page .table-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.admin-products-page .table-header p {
    opacity: 0.9;
    font-size: 0.8rem;
    margin-bottom: 0;
}

.admin-products-page .header-stats .badge {
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 15px;
    font-weight: 500;
}

/* Table Styles */
.admin-products-page .table th {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    font-weight: 600;
    color: #495057;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.3px;
    padding: 10px 8px;
}

.admin-products-page .table td {
    padding: 12px 8px;
    vertical-align: middle;
    border-bottom: 1px solid #f8f9fa;
}

.admin-products-page .table tbody tr:hover {
    background: #f8f9fa;
}

/* Product Info */
.admin-products-page .product-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.admin-products-page .product-category {
    font-size: 0.75rem;
    color: #6c757d;
    font-style: italic;
}

.admin-products-page .product-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #28a745;
    margin-bottom: 2px;
}

.admin-products-page .old-price {
    font-size: 0.8rem;
    color: #6c757d;
    text-decoration: line-through;
}

.admin-products-page .discount-badge {
    background: #dc3545;
    color: white;
    font-size: 0.7rem;
    padding: 1px 4px;
    border-radius: 8px;
    font-weight: 500;
    margin-left: 3px;
}

/* Stock Status */
.admin-products-page .stock-status {
    font-weight: 500;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
}

.admin-products-page .stock-normal {
    background: #d4edda;
    color: #155724;
}

.admin-products-page .stock-low {
    background: #fff3cd;
    color: #856404;
}

.admin-products-page .stock-out {
    background: #f8d7da;
    color: #721c24;
}

/* Status Badges */
.admin-products-page .status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.admin-products-page .status-pending {
    background: #fff3cd;
    color: #856404;
}

.admin-products-page .status-approved {
    background: #d4edda;
    color: #155724;
}

.admin-products-page .status-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Action Buttons - Compact Modern Styling */
.admin-products-page .btn-action {
    border-radius: 6px;
    padding: 6px 10px;
    font-weight: 500;
    font-size: 11px;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    line-height: 1;
}

.admin-products-page .btn-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.admin-products-page .btn-action:active {
    transform: translateY(0);
}

/* View Button - Info Style */
.admin-products-page .btn-action.btn-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
}

.admin-products-page .btn-action.btn-info:hover {
    background: linear-gradient(135deg, #138496 0%, #117a8b 100%);
}

/* Approve Button - Success Style */
.admin-products-page .btn-action.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    color: white;
}

.admin-products-page .btn-action.btn-success:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
}

/* Reject Button - Danger Style */
.admin-products-page .btn-action.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.admin-products-page .btn-action.btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

/* Icon sizing - smaller for compact buttons */
.admin-products-page .btn-action i {
    font-size: 12px;
}

/* Actions column spacing */
.admin-products-page td:last-child {
    white-space: nowrap;
}

.admin-products-page td:last-child .btn-action {
    margin-right: 4px;
}

.admin-products-page td:last-child .btn-action:last-child {
    margin-right: 0;
}

/* Product Image - Admin Products Table */
.admin-products-page .product-image {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
    transition: transform 0.3s ease !important;
    position: static !important;
    max-width: none !important;
}

.admin-products-page .product-image:hover {
    transform: scale(1.05) !important;
}

/* Seller Info */
.admin-products-page .seller-info {
    font-size: 12px;
    color: #666;
}

.admin-products-page .seller-name {
    font-weight: 600;
    color: #333;
}

/* Empty State */
.admin-products-page .empty-state {
    padding: 40px 20px;
}

/* Filter Tabs */
.admin-products-page .filter-tabs {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.admin-products-page .filter-tabs .nav-link {
    color: #666;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 0 5px;
}

.admin-products-page .filter-tabs .nav-link.active {
    background: #667eea;
    color: white;
}

/* Rejection Modal */
.admin-products-page .rejection-modal .modal-content {
    border-radius: 10px;
}

/* Responsive - Admin Layout */
@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        box-shadow: 4px 0 30px rgba(0,0,0,0.3);
    }
    
    .admin-layout .main-content,
    .admin-content {
        margin-left: 0;
    }
    
    .admin-sidebar.show {
        transform: translateX(0);
    }
}

/* ==========================================================================
   END ADMIN PRODUCTS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   ADMIN SIDEBAR STYLES
   Styles for admin panel sidebar navigation
   Includes: Animations, layout, navigation links, responsive styles
   ==========================================================================*/

/* Keyframe Animations */
@keyframes sidebarFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sidebarSlideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

/* Admin Sidebar - Standalone Styles */
.admin-sidebar {
    width: 260px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    min-height: 100vh;
    position: fixed;
    left: 10px;
    bottom: 5px;
    border-radius: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

/* Admin Content Area */
.admin-content {
    margin-left: 272px;
    flex: 1;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    transition: margin-left 0.3s ease;
}

/* Admin Header */
.admin-header {
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: sidebarFadeIn 1s ease;
}

/* Sidebar Brand/Logo */
.sidebar-brand {
    color: white !important;
    padding: 10px 15px 20px 0 !important;
    text-align: center;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
    position: relative;
}

.sidebar-brand::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, #f093fb);
    transition: width 0.4s ease;
}

.sidebar-brand:hover::after {
    width: 80%;
}

/* Sidebar Navigation */
.sidebar-nav {
    padding: 25px 0;
    overflow-y: auto;
    max-height: calc(100vh - 120px);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

.sidebar-nav::-webkit-scrollbar {
    width: 6px;
}

.sidebar-nav::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.sidebar-nav::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Sidebar Navigation Links */
.sidebar-nav .nav-link {
    color: rgba(255,255,255,0.9) !important;
    padding: 15px 25px 15px 0 !important;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.sidebar-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(180deg, #fff, #f093fb);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    z-index: 1;
}

.sidebar-nav .nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.sidebar-nav .nav-link:hover::before {
    transform: scaleY(1);
}

.sidebar-nav .nav-link:hover::after {
    width: 200px;
    height: 200px;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%) !important;
    color: white !important;
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.sidebar-nav .nav-link i {
    width: 24px;
    font-size: 20px;
    margin-left: 8px;
    margin-right: 12px;
    transition: transform 0.3s ease;
    z-index: 2;
    position: relative;
}

.sidebar-nav .nav-link:hover i {
    transform: scale(1.1) rotate(5deg);
}

.sidebar-nav .nav-link.active i {
    color: #f093fb;
    text-shadow: 0 0 10px rgba(240, 147, 251, 0.5);
}

/* Logout Button Special Styling */
.sidebar-nav .nav-link.logout-link {
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    border-radius: 10px;
    margin: 20px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    animation: sidebarFadeIn 1.5s ease;
}

.sidebar-nav .nav-link.logout-link:hover {
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.sidebar-nav .nav-link.logout-link::before {
    display: none;
}

.sidebar-nav .nav-link.logout-link::after {
    background: rgba(255,255,255,0.2);
}

/* Sidebar Divider */
.sidebar-divider {
    border-color: rgba(255,255,255,0.3);
    margin: 10px 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        width: 280px;
        box-shadow: 4px 0 30px rgba(0,0,0,0.3);
    }
    
    .admin-content {
        margin-left: 0;
    }

    .admin-sidebar.show {
        transform: translateX(0);
    }
}

@media (max-width: 576px) {
    .admin-sidebar {
        width: 260px;
    }

    .admin-content {
        margin-left: 0;
    }

    .sidebar-brand {
        font-size: 1.5rem !important;
        padding: 15px;
    }

    .sidebar-nav .nav-link {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ==========================================================================
   END ADMIN SIDEBAR STYLES
   ==========================================================================*/

/* ==========================================================================
   ALL REVIEWS PAGE STYLES
   Fresh CSS for reviews management interface
   ==========================================================================*/

/* Reviews Page Container */
.reviews-page {
    background: #f5f7fa;
    min-height: 100vh;
}

.reviews-page .admin-content {
    margin-left: 272px;
    background: #f8f9fa;
    min-height: 100vh;
}

/* Reviews Container - Grid Layout */
.reviews-page .reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.reviews-page .reviews-container .col-12 {
    width: 100%;
}

/* Reviews Header */
.reviews-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.reviews-page .admin-header h1,
.reviews-page .admin-header p {
    color: white !important;
}

/* Filter Tabs */
.reviews-page .review-filter-tabs {
    margin-bottom: 1.5rem;
}

.reviews-page .review-filter-tabs .btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
    margin-right: 8px;
}

/* Review Cards - Compact Professional */
.reviews-page .review-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.25s ease;
    border-left: 4px solid transparent;
    height: 100%;
}

.reviews-page .review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.reviews-page .review-card.pending {
    border-left-color: #ffc107;
}

.reviews-page .review-card.approved {
    border-left-color: #28a745;
}

.reviews-page .review-card.rejected {
    border-left-color: #dc3545;
}

.reviews-page .review-card .card-body {
    padding: 16px;
}

/* Product Image Container - Compact */
.reviews-page .product-image-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    flex-shrink: 0;
    margin: 0 auto;
}

.reviews-page .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reviews-page .product-image-wrapper:hover .product-img {
    transform: scale(1.05);
}

/* User Avatar - Compact */
.reviews-page .user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.25);
    flex-shrink: 0;
}

/* Star Ratings */
.reviews-page .stars {
    color: #ffc107;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Rating Badge */
.reviews-page .rating-badge {
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Review Text Box - Compact */
.reviews-page .review-text-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 10px 12px;
    border-left: 3px solid #667eea;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.reviews-page .review-text-box p {
    margin: 0;
    color: #495057;
}

/* Status Badge */
.reviews-page .review-status-badge {
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Action Buttons - Compact */
.reviews-page .review-action-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.reviews-page .review-action-buttons .btn {
    border-radius: 6px;
    padding: 6px 12px;
    font-weight: 500;
    font-size: 12px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
}

.reviews-page .review-action-buttons .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.reviews-page .review-action-buttons .btn i {
    font-size: 11px;
}

/* Product Info - Compact */
.reviews-page .product-info h6 {
    font-size: 12px;
    color: #6c757d;
    margin-top: 6px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Review Meta - Compact */
.reviews-page .review-meta {
    font-size: 12px;
    color: #adb5bd;
}

.reviews-page .review-meta i {
    margin-right: 4px;
}

/* Review Header - Compact */
.reviews-page .review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.reviews-page .review-header .user-info {
    flex: 1;
}

.reviews-page .review-header .user-name {
    font-weight: 600;
    font-size: 14px;
    color: #212529;
    margin: 0;
}

.reviews-page .review-header .review-date {
    font-size: 11px;
    color: #adb5bd;
    margin: 0;
}

/* Empty State */
.reviews-page .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

/* ==========================================================================
   END ALL REVIEWS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   BUY FABRIC PAGE STYLES
   Styles for admin fabric management interface
   ==========================================================================*/

/* Fabric Page Container */
.fabric-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fabric-page .main-content {
    margin-left: 275px;
    flex: 1;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Fabric Page Header */
.fabric-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 20px 0;
}

.fabric-page .admin-header h1,
.fabric-page .admin-header p {
    color: white !important;
}

/* Cards */
.fabric-page .card {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
    background: white;
}

.fabric-page .card:hover {
    transform: translateY(-2px);
}

.fabric-page .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.fabric-page .card-body {
    padding: 2rem;
}

/* Buttons */
.fabric-page .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fabric-page .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Alerts */
.fabric-page .alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Table */
.fabric-page .table {
    border-radius: 10px;
    overflow: hidden;
}

.fabric-page .table img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

/* Badges */
.fabric-page .badge {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Text Colors */
.fabric-page .text-primary {
    color: #667eea !important;
}

.fabric-page .text-success {
    color: #28a745 !important;
}

.fabric-page .text-warning {
    color: #ffc107 !important;
}

.fabric-page .text-info {
    color: #17a2b8 !important;
}

/* Form Controls */
.fabric-page .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.fabric-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Divider */
.fabric-page .divider {
    border: 1px solid #333333ff;
    transition: border-color 0.3s ease;
    margin: 2rem 0;
}

.fabric-page .divider:hover {
    border-color: #667eea;
}

/* Animated Divider */
.fabric-page .animated-divider {
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Modal - High z-index to ensure clickability */
.fabric-page .modal {
    z-index: 9999 !important;
}

.fabric-page .modal-backdrop {
    z-index: 9998 !important;
}

.fabric-page .modal-dialog {
    z-index: 10000 !important;
    position: relative;
}

.fabric-page .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10001 !important;
}

.fabric-page .modal-footer {
    position: relative;
    z-index: 10002 !important;
}

.fabric-page .modal-footer .btn {
    position: relative;
    z-index: 10003 !important;
    pointer-events: auto !important;
}

/* ==========================================================================
   END BUY FABRIC PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   CATEGORIES PAGE STYLES
   Styles for admin category management interface
   ==========================================================================*/

/* Categories Page Container */
.categories-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.categories-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

.categories-page .main-content {
    margin-left: 275px;
    flex: 1;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Categories Header */
.categories-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 20px 0;
}

.categories-page .admin-header h1,
.categories-page .admin-header p {
    color: white !important;
}

/* Category Image Preview */
.categories-page .category-image-preview {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

/* Color Cards */
.categories-page .color-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.categories-page .color-card:hover {
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.categories-page .color-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.categories-page .color-card-header {
    background: #f8f9fa;
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
}

.categories-page .color-swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-right: 10px;
}

.categories-page .color-name {
    font-weight: 600;
    color: #495057;
}

.categories-page .color-actions {
    margin-left: auto;
}

.categories-page .color-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 8px;
}

/* Cards */
.categories-page .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Table */
.categories-page .table {
    margin-bottom: 0;
}

.categories-page .table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
}

/* Buttons */
.categories-page .btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
}

/* Modal */
.categories-page .modal {
    z-index: 9999 !important;
}

.categories-page .modal-backdrop {
    z-index: 9998 !important;
}

.categories-page .modal-content {
    border: none;
    border-radius: 15px;
    position: relative;
    z-index: 10000 !important;
}

.categories-page .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.categories-page .modal-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border-radius: 15px 15px 0 0;
}

.categories-page .modal-footer {
    position: relative;
    z-index: 10001 !important;
}

.categories-page .modal-footer .btn {
    position: relative;
    z-index: 10002 !important;
    pointer-events: auto !important;
}

/* Animated Divider */
.categories-page .animated-divider {
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
}

/* White Cancel Button */
.categories-page .btn-light.border {
    background-color: #ffffff !important;
    border-color: #dee2e6 !important;
    color: #495057 !important;
    font-weight: 500;
}

.categories-page .btn-light.border:hover {
    background-color: #f8f9fa !important;
    border-color: #adb5bd !important;
    color: #495057 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.categories-page .btn-light.border:focus {
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .categories-page .color-card {
        margin-bottom: 15px;
    }
    
    .categories-page .main-content {
        margin-left: 0;
    }
}

/* ==========================================================================
   END CATEGORIES PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   CONTACT MESSAGES PAGE STYLES
   Styles for admin contact messages management interface
   ==========================================================================*/

/* Contact Messages Page Container */
.contact-messages-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.contact-messages-page .main-content {
    margin-left: 275px;
    flex: 1;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

/* Contact Messages Header */
.contact-messages-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 20px 0;
}

.contact-messages-page .admin-header h1,
.contact-messages-page .admin-header p {
    color: white !important;
}

/* Message Preview */
.contact-messages-page .message-preview {
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Cards */
.contact-messages-page .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Modal Header */
.contact-messages-page .modal-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border-radius: 15px 15px 0 0;
}

/* Animated Divider */
.contact-messages-page .animated-divider {
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-messages-page .main-content {
        margin-left: 0;
    }
}

/* Message View Modal Styles */
.contact-messages-page .message-view-container {
    padding: 10px;
}

.contact-messages-page .info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 12px 15px;
    border-left: 4px solid #667eea;
}

.contact-messages-page .info-card small {
    display: block;
    margin-bottom: 4px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-messages-page .info-card p {
    color: #2c3e50;
    font-size: 0.95rem;
}

.contact-messages-page .info-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.contact-messages-page .info-card a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.contact-messages-page .message-content-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.contact-messages-page .message-text {
    background: white;
    border-radius: 8px;
    padding: 15px;
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    min-height: 80px;
    border: 1px solid #dee2e6;
}

.contact-messages-page .modal-body {
    padding: 25px;
}

/* Reply Section Styles */
.contact-messages-page .reply-history {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

.contact-messages-page .reply-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.contact-messages-page .reply-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-messages-page .reply-content {
    min-width: 0;
}

.contact-messages-page .reply-text {
    background: #f8f9fa;
    padding: 12px 15px;
    border-radius: 8px;
    color: #495057;
    line-height: 1.6;
}

.contact-messages-page .reply-form-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #dee2e6;
}

.contact-messages-page .reply-form-section textarea {
    border-radius: 8px;
    border: 1px solid #ced4da;
    resize: vertical;
}

.contact-messages-page .reply-form-section textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* ==========================================================================
   END CONTACT MESSAGES PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   ADMIN DASHBOARD PAGE STYLES
   Styles for admin dashboard overview page
   ==========================================================================*/

/* Dashboard Page Container */
.dashboard-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.dashboard-page .main-content {
    margin-left: 275px;
    flex: 1;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    max-width: calc(100% - 275px);
    overflow-x: hidden;
}

/* Dashboard Layout */
.dashboard-page .admin-layout {
    display: flex;
    min-height: 100vh;
}


/* Dashboard Header */
.dashboard-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.dashboard-page .admin-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    animation: slideIn 2s ease-out forwards;
}

.dashboard-page .admin-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

.dashboard-page .admin-header h1,
.dashboard-page .admin-header h2,
.dashboard-page .admin-header h3,
.dashboard-page .admin-header h4,
.dashboard-page .admin-header h5,
.dashboard-page .admin-header h6 {
    color: white !important;
}

.dashboard-page .admin-header .btn-outline-light {
    color: white !important;
    border-color: white !important;
}

.dashboard-page .admin-header .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

.dashboard-page .admin-header .text-muted {
    color: rgba(255,255,255,0.9) !important;
}

/* Dashboard Stats Cards */
.dashboard-page .admin-stats {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dashboard-page .admin-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(102,126,234,0.05) 0%, rgba(118,75,162,0.05) 50%, rgba(240,147,251,0.05) 100%);
    transition: left 0.6s ease;
}

.dashboard-page .admin-stats:hover::before {
    left: 0;
}

.dashboard-page .admin-stats:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.dashboard-page .admin-stats i {
    font-size: 3rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.dashboard-page .admin-stats:hover i {
    transform: scale(1.1) rotate(5deg);
}

.dashboard-page .admin-stats a {
    text-decoration: none;
    color: inherit;
}

/* Dashboard Cards */
.dashboard-page .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.dashboard-page .card:hover {
    transform: translateY(-5px);
}

.dashboard-page .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px 15px 0 0 !important;
    padding: 15px 20px;
}

.dashboard-page .card-header h5 {
    color: white !important;
    margin: 0;
}

/* Chart Containers */
.dashboard-page canvas {
    max-height: 300px;
}

/* Table Styles */
.dashboard-page .table {
    font-size: 0.9rem;
}

.dashboard-page .table th {
    background: #f8f9fa;
    font-weight: 600;
    border-top: none;
}

.dashboard-page .badge {
    font-size: 0.75rem;
    padding: 5px 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-page .main-content {
        margin-left: 0;
    }
    
    .dashboard-page .admin-stats {
        padding: 20px;
    }
    
    .dashboard-page canvas {
        max-height: 200px;
    }
}

/* ==========================================================================
   END ADMIN DASHBOARD PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   FABRIC STITCHING ORDERS PAGE STYLES
   Styles for fabric stitching orders management interface
   ==========================================================================*/

/* Fabric Stitching Orders Page Container */
.fabric-stitching-orders-page .admin-header{
    background: linear-gradient(135deg, #8e2de2 0%, #4a00e0 50%, #8e2de2 100%);
}

.fabric-stitching-orders-page .admin-header h1,
.fabric-stitching-orders-page .admin-header p {
    color: white !important;
}

.fabric-stitching-orders-page .admin-header i {
    color: white !important;
}
.fabric-stitching-orders-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fabric-stitching-orders-page .main-content {
    margin-left: 275px;
    flex: 1;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    max-width: calc(100% - 275px);
    overflow-x: hidden;
    color: white;
}

/* Fabric Orders Layout */
.fabric-stitching-orders-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Cards */
.fabric-stitching-orders-page .card {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.fabric-stitching-orders-page .card:hover {
    transform: translateY(-2px);
}

.fabric-stitching-orders-page .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.fabric-stitching-orders-page .card-body {
    padding: 2rem;
}

/* Buttons */
.fabric-stitching-orders-page .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fabric-stitching-orders-page .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Alerts */
.fabric-stitching-orders-page .alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Table */
.fabric-stitching-orders-page .table {
    border-radius: 10px;
    overflow: hidden;
}

/* Badges */
.fabric-stitching-orders-page .badge {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Headings */
.fabric-stitching-orders-page h1,
.fabric-stitching-orders-page h2,
.fabric-stitching-orders-page h3,
.fabric-stitching-orders-page h4,
.fabric-stitching-orders-page h5,
.fabric-stitching-orders-page h6 {
    font-weight: 700;
    color: #2c3e50;
}

/* Text Colors */
.fabric-stitching-orders-page .text-primary {
    color: #667eea !important;
}

.fabric-stitching-orders-page .text-success {
    color: #28a745 !important;
}

.fabric-stitching-orders-page .text-warning {
    color: #ffc107 !important;
}

.fabric-stitching-orders-page .text-info {
    color: #17a2b8 !important;
}

/* Modal */
.fabric-stitching-orders-page .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Form Controls */
.fabric-stitching-orders-page .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.fabric-stitching-orders-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Dividers */
.fabric-stitching-orders-page .divider {
    border: 1px solid #ddd;
    transition: border-color 0.3s ease;
    margin: 1rem 0;
}

.fabric-stitching-orders-page .divider:hover {
    border-color: #667eea;
}

.fabric-stitching-orders-page .animated-divider {
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .fabric-stitching-orders-page .main-content {
        margin-left: 0;
        max-width: 100%;
    }
}

.fabric-stitching-orders-page .btn-group .btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.fabric-stitching-orders-page .btn-group .btn i {
    font-size: 0.75rem;
}

/* Delivered Status Badge with Gradient Animation */
.fabric-stitching-orders-page .status-delivered {
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%) !important;
    color: white !important;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
    animation: deliveredPulse 2s ease-in-out infinite;
}

@keyframes deliveredPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Enhanced Mobile Styles for Fabric Stitching Orders */
@media (max-width: 768px) {
    .fabric-stitching-orders-page .card-header h4 {
        font-size: 1.1rem;
    }
    
    .fabric-stitching-orders-page .card-header .badge {
        font-size: 0.75rem;
    }
    
    .fabric-stitching-orders-page .mobile-order-card {
        border-radius: 12px;
        border: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        margin-bottom: 12px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .fabric-stitching-orders-page .mobile-order-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    
    .fabric-stitching-orders-page .mobile-order-card .card-body {
        padding: 1rem;
    }
    
    .fabric-stitching-orders-page .mobile-order-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #e9ecef;
    }
    
    .fabric-stitching-orders-page .mobile-order-id {
        font-size: 1rem;
        font-weight: 700;
        color: #2c3e50;
    }
    
    .fabric-stitching-orders-page .mobile-order-date {
        font-size: 0.8rem;
        color: #6c757d;
    }
    
    .fabric-stitching-orders-page .mobile-order-detail {
        display: flex;
        align-items: center;
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
    
    .fabric-stitching-orders-page .mobile-order-detail i {
        width: 20px;
        color: #667eea;
        margin-right: 8px;
    }
    
    .fabric-stitching-orders-page .mobile-order-detail-label {
        color: #6c757d;
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
    
    .fabric-stitching-orders-page .mobile-order-detail-value {
        font-weight: 600;
        color: #2c3e50;
    }
    
    .fabric-stitching-orders-page .mobile-order-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #e9ecef;
    }
    
    .fabric-stitching-orders-page .mobile-order-price {
        font-size: 1.1rem;
        font-weight: 700;
        color: #28a745;
    }
    
    .fabric-stitching-orders-page .mobile-view-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 20px;
    }
    
    .fabric-stitching-orders-page .empty-state-icon {
        font-size: 4rem;
        color: #dee2e6;
    }
    
    .fabric-stitching-orders-page .empty-state-text {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   END FABRIC STITCHING ORDERS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   GALLERY INTERESTS PAGE STYLES
   Styles for gallery interests management interface
   ==========================================================================*/

/* Gallery Interests Page Container */
.gallery-interests-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.gallery-interests-page .main-content {
    margin-left: 275px;
    flex: 1;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    max-width: calc(100% - 275px);
    overflow-x: hidden;
}

/* Gallery Layout */
.gallery-interests-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Gallery Header */
.gallery-interests-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.gallery-interests-page .admin-header h1,
.gallery-interests-page .admin-header p {
    color: white !important;
}

.gallery-interests-page .admin-header i {
    color: white !important;
}

/* Cards */
.gallery-interests-page .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.gallery-interests-page .card:hover {
    transform: translateY(-2px);
}

.gallery-interests-page .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.gallery-interests-page .card-body {
    padding: 2rem;
}

/* Buttons */
.gallery-interests-page .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-interests-page .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Alerts */
.gallery-interests-page .alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Table */
.gallery-interests-page .table {
    border-radius: 10px;
    overflow: hidden;
}

/* Badges */
.gallery-interests-page .badge {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

/* Headings */
.gallery-interests-page h1,
.gallery-interests-page h2,
.gallery-interests-page h3,
.gallery-interests-page h4,
.gallery-interests-page h5,
.gallery-interests-page h6 {
    font-weight: 700;
    color: #2c3e50;
}

/* Text Colors */
.gallery-interests-page .text-primary {
    color: #667eea !important;
}

.gallery-interests-page .text-success {
    color: #28a745 !important;
}

.gallery-interests-page .text-warning {
    color: #ffc107 !important;
}

.gallery-interests-page .text-info {
    color: #17a2b8 !important;
}

/* Modal */
.gallery-interests-page .modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Form Controls */
.gallery-interests-page .form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 0.75rem;
    transition: border-color 0.3s ease;
}

.gallery-interests-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Interest Card */
.gallery-interests-page .interest-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-interests-page .interest-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Status Badges */
.gallery-interests-page .status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-interests-page .status-new {
    background: #d4edda;
    color: #155724;
}

.gallery-interests-page .status-contacted {
    background: #fff3cd;
    color: #856404;
}

.gallery-interests-page .status-closed {
    background: #f8d7da;
    color: #721c24;
}

/* Animated Divider */
.gallery-interests-page .animated-divider {
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-interests-page .main-content {
        margin-left: 0;
        max-width: 100%;
    }
}

/* ==========================================================================
   END GALLERY INTERESTS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   MANAGE SELLERS PAGE STYLES
   ==========================================================================*/

.manage-sellers-page .main-content {
    margin-left: 275px;
    flex: 1;
    background: #f8f9fa;
    min-height: 100vh;
}

.manage-sellers-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border-bottom: none;
}

.manage-sellers-page .admin-header h1,
.manage-sellers-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.manage-sellers-page .admin-header .btn-outline-light {
    color: white !important;
    border-color: white !important;
}

.manage-sellers-page .admin-header .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

.manage-sellers-page .main-content .container-fluid {
    padding: 0 30px;
}

.manage-sellers-page .header {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.manage-sellers-page .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.manage-sellers-page .stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.manage-sellers-page .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.manage-sellers-page .stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.manage-sellers-page .stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.manage-sellers-page .sellers-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.manage-sellers-page .sellers-table .table th {
    background: #667eea;
    color: white;
    font-weight: 600;
    border: none;
    padding: 15px 10px;
}

.manage-sellers-page .sellers-table .table td {
    padding: 15px 10px;
    border-bottom: 1px solid #f8f9fa;
}

.manage-sellers-page .search-box {
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.manage-sellers-page .search-input {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s;
}

.manage-sellers-page .search-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.manage-sellers-page .new-registration {
    background: linear-gradient(135deg, #28a745, #20bf6b);
    color: white;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 0.8rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Action Buttons */
.manage-sellers-page .action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.manage-sellers-page .btn-action {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
}

.manage-sellers-page .btn-approve {
    background: linear-gradient(135deg, #28a745, #20bf6b);
    color: white;
}

.manage-sellers-page .btn-approve:hover {
    background: linear-gradient(135deg, #218838, #20bf6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.manage-sellers-page .btn-reject {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.manage-sellers-page .btn-reject:hover {
    background: linear-gradient(135deg, #c82333, #a71d2a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.manage-sellers-page .btn-suspend {
    background: linear-gradient(135deg, #ffc107, #854a00);
    color: #212529;
}

.manage-sellers-page .btn-suspend:hover {
    background: linear-gradient(135deg, #e0a800, #ffc107);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.manage-sellers-page .btn-delete {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.manage-sellers-page .btn-delete:hover {
    background: linear-gradient(135deg, #c82333, #a71d2a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.3);
}

.manage-sellers-page .btn-view {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.manage-sellers-page .btn-view:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .manage-sellers-page .main-content {
        margin-left: 0;
    }

    .manage-sellers-page .stats-grid {
        grid-template-columns: 1fr;
    }

    .manage-sellers-page .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .manage-sellers-page .sellers-table {
        font-size: 0.9rem;
    }

    .manage-sellers-page .sellers-table .table th,
    .manage-sellers-page .sellers-table .table td {
        padding: 10px 5px;
    }
}

/* ==========================================================================
   END MANAGE SELLERS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   ADMIN LOGIN PAGE STYLES
   ==========================================================================*/

.admin-login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.admin-login-page .login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    margin: 20px;
    position: relative;
}

.admin-login-page .login-left {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9));
    color: white;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.admin-login-page .login-left .brand-logo {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.admin-login-page .login-left .feature-item {
    margin-bottom: 20px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-login-page .login-left .feature-item i {
    margin-right: 10px;
    color: rgba(255,255,255,0.8);
}

.admin-login-page .login-right {
    padding: 50px 40px;
    background: white;
}

.admin-login-page .login-right h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.admin-login-page .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.admin-login-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    outline: none;
}

.admin-login-page .input-group-text {
    background: #f8f9fa;
    border: 1px solid #ddd;
    color: #6c757d;
}

.admin-login-page .btn-login {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.admin-login-page .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.admin-login-page .alert {
    border-radius: 8px;
    border: none;
}

@media (max-width: 768px) {
    .admin-login-page .login-left {
        display: none;
    }

    .admin-login-page .login-right {
        padding: 30px 20px;
    }

    .admin-login-page .login-container {
        margin: 10px;
        max-width: 100%;
    }
}

/* ==========================================================================
   END ADMIN LOGIN PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   ORDERS PAGE STYLES
   ==========================================================================*/

.orders-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

.orders-page .admin-content {
    padding-top: 20px;
}

.orders-page .order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.orders-page .status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.orders-page .status-processing {
    background-color: #cce5ff;
    color: #004085;
}

.orders-page .status-shipped {
    background-color: #d4edda;
    color: #155724;
}

.orders-page .status-delivered {
    background-color: #d1f2eb;
    color: #0c5460;
}

.orders-page .status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

.orders-page .status-refunded {
    background-color: #d1ecf1;
    color: #0c5460;
}

.orders-page .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.orders-page .table {
    margin-bottom: 0;
}

.orders-page .table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
}

.orders-page .btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
}

.orders-page .modal-content {
    border: none;
    border-radius: 15px;
}

.orders-page .modal-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border-radius: 15px 15px 0 0;
}

.orders-page .animated-divider {
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
}

.orders-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.orders-page .admin-header h1,
.orders-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.orders-page .admin-header .btn-outline-light {
    color: white !important;
    border-color: white !important;
}

.orders-page .admin-header .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==========================================================================
   END ORDERS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   PRODUCTS PAGE STYLES
   ==========================================================================*/

.products-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

.products-page .admin-content {
    padding-top: 20px;
}

.products-page body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.products-page .product-image-preview {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.products-page .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.products-page .table {
    margin-bottom: 0;
}

.products-page .table th {
    border-top: none;
    font-weight: 600;
    color: #495057;
}

.products-page .btn {
    border-radius: 8px;
    padding: 8px 16px;
    font-weight: 500;
}

.products-page .modal-content {
    border: none;
    border-radius: 15px;
}

.products-page .modal-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border-radius: 15px 15px 0 0;
}

.products-page .animated-divider {
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
}

.products-page .variant-item {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
}

.products-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.products-page .admin-header h1,
.products-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.products-page .admin-header .btn-light {
    color: #333 !important;
}

.products-page .admin-header .btn-danger {
    color: white !important;
}

/* ==========================================================================
   END PRODUCTS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   ADD PRODUCT PAGE STYLES
   ==========================================================================*/

.add-product-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

.add-product-page .admin-content {
    padding-top: 20px;
}

.add-product-page body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.add-product-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.add-product-page .admin-header h1,
.add-product-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.add-product-page .admin-header .btn-light {
    color: #333 !important;
}

.add-product-page .admin-header .btn-danger {
    color: white !important;
}

.add-product-page .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.add-product-page .card-header {
    border-radius: 10px 10px 0 0;
    font-weight: 600;
}

.add-product-page .variant-item {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
}

/* ==========================================================================
   END ADD PRODUCT PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   EDIT PRODUCT PAGE STYLES
   ==========================================================================*/

.edit-product-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

.edit-product-page .admin-content {
    padding-top: 20px;
}

.edit-product-page body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.edit-product-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.edit-product-page .admin-header h1,
.edit-product-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.edit-product-page .admin-header .btn-light {
    color: #333 !important;
}

.edit-product-page .admin-header .btn-danger {
    color: white !important;
}

.edit-product-page .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.edit-product-page .card-header {
    border-radius: 10px 10px 0 0;
    font-weight: 600;
}

.edit-product-page .variant-item {
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
}

/* ==========================================================================
   END EDIT PRODUCT PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   PRODUCT DETAILS PAGE - VARIANT STYLES
   ==========================================================================*/

/* Available Variants heading - white background */
.product-details-section h6.text-primary {
    background: #ffffff !important;
    -webkit-text-fill-color: #007bff !important;
    color: #007bff !important;
    padding: 8px 12px;
    border-radius: 4px;
}

/* Variant card white background */
.variant-card {
    background-color: #ffffff !important;
}

.variant-card .card-body {
    background-color: #ffffff !important;
}

/* First variant white background */
.first-variant {
    background-color: #ffffff !important;
}

.first-variant .card-body {
    background-color: #ffffff !important;
}

/* Variant container white background */
.variant-row {
    background-color: #ffffff !important;
}

/* Product title white background with blue text - higher specificity */
.product-details-section h1.h2,
.product-details-section h1.mb-10,
.product-details-section .col-lg-6 h1,
.product-details-section h2,
.product-details-section h1,
.product-details-section .h2 {
    background-color: #ffffff !important;
    color: #0056b3 !important;
    padding: 10px 15px;
    border-radius: 4px;
    display: block;
    background-image: none !important;
    -webkit-text-fill-color: #0056b3 !important;
}

/* ==========================================================================
   END PRODUCT DETAILS PAGE - VARIANT STYLES
   ==========================================================================*/

/* ==========================================================================
   PROMO CODES PAGE STYLES
   ==========================================================================*/

.promo-codes-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.promo-codes-page .admin-header h1,
.promo-codes-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.promo-codes-page .admin-header .btn-outline-light {
    color: white !important;
    border-color: white !important;
}

.promo-codes-page .admin-header .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

/* ==========================================================================
   END PROMO CODES PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   ORDERS PAGE STYLES
   ==========================================================================*/

.orders-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.orders-page .admin-header h1,
.orders-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.orders-page .admin-header .btn-outline-light {
    color: white !important;
    border-color: white !important;
}

.orders-page .admin-header .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

.orders-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

.orders-page .admin-content {
    padding-top: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.orders-page .animated-divider {
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
}

.orders-page .stat-card {
    text-align: center;
    padding: 20px;
}

.orders-page .stat-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.orders-page .stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.orders-page .revenue-up {
    color: #28a745;
}

.orders-page .revenue-down {
    color: #dc3545;
}

.orders-page .btn-group {
    gap: 4px;
}

/* ==========================================================================
   END ORDERS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   REPORTS PAGE STYLES
   ==========================================================================*/

.reports-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.reports-page .admin-header h1,
.reports-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.reports-page .admin-header .btn-outline-light {
    color: white !important;
    border-color: white !important;
}

.reports-page .admin-header .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

.reports-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

.reports-page .admin-content {
    padding-top: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.reports-page .animated-divider {
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
}

.reports-page .stat-card {
    text-align: center;
    padding: 20px;
}

.reports-page .stat-value {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.reports-page .stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.reports-page .revenue-up {
    color: #28a745;
}

.reports-page .revenue-down {
    color: #dc3545;
}

/* Contact Messages Stat Card - Special Styling (6th column in Overall Statistics) */
.reports-page .col-lg-2:nth-child(6) .stat-value {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
}

.reports-page .col-lg-2:nth-child(6) {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    border-radius: 15px;
    border: 2px solid #ffb3b3;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.25);
    padding: 20px 10px;
    transform: scale(1.02);
}

.reports-page .col-lg-2:nth-child(6) .stat-label {
    color: #c0392b;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ==========================================================================
   END REPORTS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   SETTINGS PAGE STYLES
   ==========================================================================*/

.settings-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.settings-page .admin-header h1,
.settings-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.settings-page .admin-header .btn-outline-light {
    color: white !important;
    border-color: white !important;
}

.settings-page .admin-header .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

.settings-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

.settings-page .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.settings-page .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}

.settings-page .settings-form .form-label {
    font-weight: 600;
    color: #495057;
}

.settings-page .alert {
    border-radius: 10px;
    border: none;
}

/* ==========================================================================
   END SETTINGS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   STITCHING ORDERS PAGE STYLES
   ==========================================================================*/

.stitching-orders-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.stitching-orders-page .admin-header h1,
.stitching-orders-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.stitching-orders-page .admin-header .btn-outline-light {
    color: white !important;
    border-color: white !important;
}

.stitching-orders-page .admin-header .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

.stitching-orders-page .stitching-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.stitching-orders-page .status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.stitching-orders-page .status-measuring {
    background-color: #cce5ff;
    color: #004085;
}

.stitching-orders-page .status-stitching {
    background-color: #d4edda;
    color: #155724;
}

.stitching-orders-page .status-ready {
    background-color: #d1f2eb;
    color: #0c5460;
}

.stitching-orders-page .status-delivered {
    background-color: #e9ecef;
    color: #495057;
}

.stitching-orders-page .status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

/* Stats Cards Enhanced Styling */
.stitching-orders-page .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stitching-orders-page .stat-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stitching-orders-page .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.stitching-orders-page .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.stitching-orders-page .card-body {
    padding: 25px 15px;
}

/* Individual card color themes */
.stitching-orders-page .col-md-3:nth-child(1) .stat-value {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stitching-orders-page .col-md-3:nth-child(2) .stat-value {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stitching-orders-page .col-md-3:nth-child(3) .stat-value {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stitching-orders-page .col-md-3:nth-child(4) .stat-value {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card icons styling */
.stitching-orders-page .card i {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stitching-orders-page .col-md-3:nth-child(2) .card i {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stitching-orders-page .col-md-3:nth-child(3) .card i {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stitching-orders-page .col-md-3:nth-child(4) .card i {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Action buttons small icons */
.stitching-orders-page .btn-group .btn i {
    font-size: 0.75rem;
}

/* Unique Action Buttons Styling */
.stitching-orders-page .btn-group {
    gap: 5px;
}

.stitching-orders-page .btn-group .btn,
.stitching-orders-page .btn-group a.btn {
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border-radius: 6px !important;
}

.stitching-orders-page .btn-group .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.stitching-orders-page .btn-group .btn-outline-info {
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    color: white;
}

.stitching-orders-page .btn-group .btn-outline-info:hover {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
    color: white;
}

.stitching-orders-page .btn-group .btn-outline-warning {
    background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    color: #333;
}

.stitching-orders-page .btn-group .btn-outline-warning:hover {
    background: linear-gradient(135deg, #ffd200 0%, #f7971e 100%);
    color: #333;
}

.stitching-orders-page .btn-group .btn-outline-danger {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    color: white;
}

.stitching-orders-page .btn-group .btn-outline-danger:hover {
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%);
    color: white;
}

/* Status Update Modal Styles */
#statusModal .modal-content {
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: 15px;
    overflow: hidden;
}

#statusModal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-bottom: none;
    padding: 20px 25px;
}

#statusModal .modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

#statusModal .modal-body {
    padding: 25px;
}

#statusModal .status-icon {
    margin-bottom: 15px;
}

#statusModal .status-icon i {
    color: #667eea;
}

#statusModal .form-select {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    padding: 12px 15px;
    font-size: 1rem;
}

#statusModal .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

#statusModal .alert-info {
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

#statusModal .modal-footer {
    border: none;
    padding-top: 0;
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
}

#statusModal .btn-outline-secondary {
    border-radius: 8px;
    padding: 10px 25px;
}

#statusModal .modal-footer .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

#statusModal .modal-footer .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 8px;
    padding: 10px 25px;
}

#statusModal .modal-footer .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

/* ==========================================================================
   END STITCHING ORDERS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   STITCHING ORDER VIEW PAGE STYLES
   ==========================================================================*/

.stitching-order-view-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.stitching-order-view-page .admin-header h1,
.stitching-order-view-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.stitching-order-view-page .admin-header .btn-outline-light {
    color: white !important;
    border-color: white !important;
}

.stitching-order-view-page .admin-header .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

.stitching-order-view-page .stitching-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.stitching-order-view-page .status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.stitching-order-view-page .status-measuring {
    background-color: #cce5ff;
    color: #004085;
}

.stitching-order-view-page .status-stitching {
    background-color: #d4edda;
    color: #155724;
}

.stitching-order-view-page .status-ready {
    background-color: #d1f2eb;
    color: #0c5460;
}

.stitching-order-view-page .status-delivered {
    background-color: #e9ecef;
    color: #495057;
}

.stitching-order-view-page .status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

/* Timeline Styles */
.stitching-order-view-page .timeline {
    position: relative;
    padding-left: 30px;
}

.stitching-order-view-page .timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e9ecef;
}

.stitching-order-view-page .timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.stitching-order-view-page .timeline-item:last-child {
    margin-bottom: 0;
}

.stitching-order-view-page .timeline-marker {
    position: absolute;
    left: -23px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #e9ecef;
    border: 2px solid #fff;
    z-index: 1;
}

.stitching-order-view-page .timeline-item.completed .timeline-marker {
    background-color: #28a745;
}

.stitching-order-view-page .timeline-content h6 {
    margin-bottom: 5px;
}

.stitching-order-view-page .timeline-content p {
    margin-bottom: 5px;
}

.stitching-order-view-page .timeline-item[onclick] {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.stitching-order-view-page .timeline-item[onclick]:hover {
    opacity: 0.8;
}

/* ==========================================================================
   END STITCHING ORDER VIEW PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   STITCHING ORDER TIMELINE PAGE STYLES
   ==========================================================================*/

.stitching-order-timeline-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.stitching-order-timeline-page .admin-header h1,
.stitching-order-timeline-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.stitching-order-timeline-page .admin-header .btn-outline-light {
    color: white !important;
    border-color: white !important;
}

.stitching-order-timeline-page .admin-header .btn-outline-light:hover {
    background-color: rgba(255,255,255,0.2) !important;
}

.stitching-order-timeline-page .stitching-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.stitching-order-timeline-page .status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.stitching-order-timeline-page .status-measuring {
    background-color: #cce5ff;
    color: #004085;
}

.stitching-order-timeline-page .status-stitching {
    background-color: #d4edda;
    color: #155724;
}

.stitching-order-timeline-page .status-ready {
    background-color: #d1f2eb;
    color: #0c5460;
}

.stitching-order-timeline-page .status-delivered {
    background-color: #e9ecef;
    color: #495057;
}

.stitching-order-timeline-page .status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

/* Timeline Styles */
.stitching-order-timeline-page .timeline {
    position: relative;
    padding-left: 30px;
}

.stitching-order-timeline-page .timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e9ecef;
}

.stitching-order-timeline-page .timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.stitching-order-timeline-page .timeline-item:last-child {
    margin-bottom: 0;
}

.stitching-order-timeline-page .timeline-marker {
    position: absolute;
    left: -23px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #e9ecef;
    border: 2px solid #fff;
    z-index: 1;
}

.stitching-order-timeline-page .timeline-item.completed .timeline-marker {
    background-color: #28a745;
}

.stitching-order-timeline-page .timeline-content h6 {
    margin-bottom: 5px;
}

.stitching-order-timeline-page .timeline-content p {
    margin-bottom: 5px;
}

.stitching-order-timeline-page .timeline-item[onclick] {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.stitching-order-timeline-page .timeline-item[onclick]:hover {
    opacity: 0.8;
}

/* ==========================================================================
   END STITCHING ORDER TIMELINE PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   USERS PAGE STYLES
   ==========================================================================*/

.users-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.users-page .admin-header h1,
.users-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.users-page body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.users-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

.users-page .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.users-page .card:hover {
    transform: translateY(-2px);
}

.users-page .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.users-page .card-body {
    padding: 2rem;
}

.users-page .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.users-page .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.users-page .alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.users-page .table {
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.users-page .table thead th {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border: none;
    padding: 12px 10px;
}

.users-page .table tbody tr {
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f1f3f4;
}

.users-page .table tbody tr:hover {
    background-color: #f8f9fa;
}

.users-page .table tbody td {
    padding: 12px 10px;
    vertical-align: middle;
    font-size: 0.85rem;
    color: #5f6368;
}

.users-page .table tbody td:first-child {
    font-weight: 600;
    color: #202124;
}

.users-page .user-name {
    font-weight: 600;
    color: #202124;
    font-size: 0.9rem;
}

.users-page .badge {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.users-page .user-status {
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
    text-transform: capitalize;
}

.users-page .status-active {
    background-color: #d4edda;
    color: #155724;
}

.users-page .status-inactive {
    background-color: #fff3cd;
    color: #856404;
}

.users-page .status-banned {
    background-color: #f8d7da;
    color: #721c24;
}

.users-page .btn-info, .users-page .btn-danger {
    border: none;
    border-radius: 6px;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-right: 5px;
}

.users-page .btn-info {
    background-color: #17a2b8;
    color: white;
}

.users-page .btn-info:hover {
    background-color: #138496;
    transform: translateY(-1px);
}

.users-page .btn-danger {
    background-color: #dc3545;
    color: white;
}

.users-page .btn-danger:hover {
    background-color: #c82333;
    transform: translateY(-1px);
}

.users-page .btn i {
    margin-right: 3px;
}

.users-page .btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.users-page .btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    color: white;
}

.users-page .info-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.users-page .info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.users-page .info-value {
    font-weight: 500;
    color: #495057;
}

.users-page .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.users-page .modal-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    border-radius: 15px 15px 0 0;
}

.users-page .admin-content {
    padding-top: 20px;
}

.users-page .animated-divider {
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #ff6b6b);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive */
@media (max-width: 768px) {
    .users-page .admin-sidebar {
        transform: translateX(-100%);
    }
    
    .users-page .admin-content {
        padding-top: 20px;
    }
    
    .users-page .admin-header {
        padding: 10px 20px;
    }
    
    .users-page .admin-header h4 {
        font-size: 1.25rem;
    }
    
    .users-page .card-body {
        padding: 15px;
    }
    
    .users-page .table {
        font-size: 0.8rem;
    }
    
    .users-page .table th, .users-page .table td {
        padding: 8px 4px;
        white-space: nowrap;
    }
    
    .users-page .btn {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .users-page .badge {
        font-size: 0.65rem;
        padding: 2px 4px;
    }
}

/* ==========================================================================
   END USERS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   VIEW FABRIC STITCHING ORDER PAGE STYLES
   ==========================================================================*/

.view-fabric-stitching-order-page body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.view-fabric-stitching-order-page .admin-layout {
    display: flex;
    min-height: 100vh;
}

.view-fabric-stitching-order-page .admin-content {
    padding-top: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.view-fabric-stitching-order-page .timeline {
    position: relative;
    padding-left: 30px;
}

.view-fabric-stitching-order-page .timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.view-fabric-stitching-order-page .timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.view-fabric-stitching-order-page .timeline-marker {
    position: absolute;
    left: -22px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.view-fabric-stitching-order-page .timeline-content {
    padding-left: 0px;
}

.view-fabric-stitching-order-page .timeline-item.completed .timeline-marker {
    background-color: #28a745 !important;
    box-shadow: 0 0 0 3px #28a745;
}

.view-fabric-stitching-order-page .timeline-item.active .timeline-marker {
    background-color: #007bff !important;
    box-shadow: 0 0 0 3px #007bff;
}

.view-fabric-stitching-order-page .timeline-item .timeline-marker {
    background-color: #6c757d;
    box-shadow: 0 0 0 3px #6c757d;
}

.view-fabric-stitching-order-page .card {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.view-fabric-stitching-order-page .card:hover {
    transform: translateY(-2px);
}

.view-fabric-stitching-order-page .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.view-fabric-stitching-order-page .card-body {
    padding: 2rem;
}

.view-fabric-stitching-order-page .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-fabric-stitching-order-page .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.view-fabric-stitching-order-page .alert {
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.view-fabric-stitching-order-page .table {
    border-radius: 10px;
    overflow: hidden;
}

.view-fabric-stitching-order-page .badge {
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.view-fabric-stitching-order-page h1,
.view-fabric-stitching-order-page h2,
.view-fabric-stitching-order-page h3,
.view-fabric-stitching-order-page h4,
.view-fabric-stitching-order-page h5,
.view-fabric-stitching-order-page h6 {
    font-weight: 700;
    color: #2c3e50;
}

.view-fabric-stitching-order-page .text-primary {
    color: #667eea !important;
}

.view-fabric-stitching-order-page .text-success {
    color: #28a745 !important;
}

.view-fabric-stitching-order-page .text-warning {
    color: #ffc107 !important;
}

.view-fabric-stitching-order-page .text-info {
    color: #17a2b8 !important;
}

@media (max-width: 768px) {
    .view-fabric-stitching-order-page .col-md-10 {
        margin-left: 0 !important;
    }
}

/* ==========================================================================
   END VIEW FABRIC STITCHING ORDER PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   FABRIC STITCHING ORDER TIMELINE PAGE STYLES
   ==========================================================================*/

.fabric-stitching-timeline-page .admin-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 30px 40px;
    border-bottom: none;
}

.fabric-stitching-timeline-page .admin-header h1,
.fabric-stitching-timeline-page .admin-header p {
    color: white !important;
    margin-bottom: 0;
}

.fabric-stitching-timeline-page .card {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.fabric-stitching-timeline-page .card:hover {
    transform: translateY(-2px);
}

.fabric-stitching-timeline-page .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

.fabric-stitching-timeline-page .card-body {
    padding: 2rem;
}

.fabric-stitching-timeline-page .timeline {
    position: relative;
    padding-left: 40px;
}

.fabric-stitching-timeline-page .timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.fabric-stitching-timeline-page .timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.fabric-stitching-timeline-page .timeline-marker {
    position: absolute;
    left: -32px;
    top: 0;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fabric-stitching-timeline-page .timeline-content {
    padding-left: 10px;
}

.fabric-stitching-timeline-page .timeline-content h5 {
    color: #2c3e50;
    font-weight: 600;
}

.fabric-stitching-timeline-page .timeline-item.completed .timeline-marker {
    background-color: #28a745 !important;
    box-shadow: 0 0 0 3px #28a745;
}

.fabric-stitching-timeline-page .timeline-item.active .timeline-marker {
    background-color: #007bff !important;
    box-shadow: 0 0 0 3px #007bff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 3px #007bff;
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 123, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 0 3px #007bff;
    }
}

.fabric-stitching-timeline-page .timeline-item .timeline-marker {
    background-color: #6c757d;
    box-shadow: 0 0 0 3px #6c757d;
}

.fabric-stitching-timeline-page .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.fabric-stitching-timeline-page .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .fabric-stitching-timeline-page .admin-header {
        padding: 20px 25px;
    }
    
    .fabric-stitching-timeline-page .admin-header h1 {
        font-size: 1.5rem;
    }
    
    .fabric-stitching-timeline-page .card-body {
        padding: 1rem;
    }
    
    .fabric-stitching-timeline-page .timeline {
        padding-left: 30px;
    }
    
    .fabric-stitching-timeline-page .timeline-marker {
        left: -22px;
        width: 30px;
        height: 30px;
    }
}

/* ==========================================================================
   END FABRIC STITCHING ORDER TIMELINE PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   ADMIN TIMELINE STYLES (for fabric-stitching-order-timeline.php)
   ==========================================================================*/

.admin-timeline {
    position: relative;
    padding-left: 60px;
}

.admin-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #28a745 0%, #007bff 50%, #6c757d 100%);
    border-radius: 3px;
}

.admin-timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.admin-timeline-item:last-child {
    margin-bottom: 0;
}

.admin-timeline-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.admin-timeline-item.active {
    border-left: 4px solid #007bff;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.admin-timeline-item.completed {
    border-left: 4px solid #28a745;
    opacity: 0.9;
}

.admin-timeline-item.completed .admin-timeline-content h5 {
    color: #28a745;
}

.admin-timeline-item.active .admin-timeline-content h5 {
    color: #007bff;
}

.admin-timeline-marker {
    position: absolute;
    left: -52px;
    top: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 4px solid #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.admin-timeline-item.active .admin-timeline-marker {
    animation: pulse-admin 2s infinite;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
}

@keyframes pulse-admin {
    0% {
        box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(0, 123, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
    }
}

.admin-timeline-content {
    padding-left: 10px;
}

.admin-timeline-content h5 {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.admin-timeline-content p {
    margin-bottom: 8px;
    color: #6c757d;
}

/* Status Update Form Styles */
.fabric-stitching-timeline-page .form-select-lg {
    font-size: 1rem;
    padding: 12px 16px;
    border-radius: 10px;
}

.fabric-stitching-timeline-page .border-primary {
    border-width: 2px !important;
}

/* Progress bar animation */
.fabric-stitching-timeline-page .progress-bar-animated {
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%);
}

@media (max-width: 991px) {
    .admin-timeline {
        padding-left: 50px;
    }
    
    .admin-timeline::before {
        left: 19px;
    }
    
    .admin-timeline-marker {
        left: -42px;
        width: 38px;
        height: 38px;
    }
    
    .admin-timeline-item {
        padding: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .admin-timeline {
        padding-left: 40px;
    }
    
    .admin-timeline::before {
        left: 14px;
        width: 2px;
    }
    
    .admin-timeline-marker {
        left: -32px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .admin-timeline-item {
        padding: 12px;
    }
    
    .admin-timeline-content h5 {
        font-size: 1rem;
    }
}

/* ==========================================================================
   END ADMIN TIMELINE STYLES
   ==========================================================================*/

/* ==========================================================================
   SELLER LOGIN PAGE STYLES
   ==========================================================================*/

body.seller-login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.seller-login-page .login-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 450px;
    width: 100%;
    margin: 20px;
}

.seller-login-page .login-header {
    text-align: center;
    margin-bottom: 30px;
}

.seller-login-page .login-header h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.seller-login-page .login-header p {
    color: #666;
}

.seller-login-page .form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.seller-login-page .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: all 0.3s;
}

.seller-login-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.seller-login-page .btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 500;
    width: 100%;
    transition: transform 0.3s;
}

.seller-login-page .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.seller-login-page .alert {
    border-radius: 8px;
    margin-bottom: 20px;
}

.seller-login-page .register-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.seller-login-page .register-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.seller-login-page .register-link a:hover {
    text-decoration: underline;
}

.seller-login-page .forgot-password {
    text-align: center;
    margin-top: 15px;
}

.seller-login-page .forgot-password a {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
}

.seller-login-page .forgot-password a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .seller-login-page .login-container {
        padding: 30px 20px;
        margin: 15px;
    }
    
    .seller-login-page .login-header h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   END SELLER LOGIN PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   SELLER REGISTER PAGE STYLES
   ==========================================================================*/

body.seller-register-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.seller-register-page .register-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    padding: 40px;
    max-width: 800px;
    width: 100%;
    margin: 20px;
}

.seller-register-page .register-header {
    text-align: center;
    margin-bottom: 30px;
}

.seller-register-page .register-header h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.seller-register-page .register-header p {
    color: #666;
}

.seller-register-page .form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.seller-register-page .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: all 0.3s;
}

.seller-register-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.seller-register-page .btn-register {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 500;
    width: 100%;
    transition: transform 0.3s;
}

.seller-register-page .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.seller-register-page .alert {
    border-radius: 8px;
    margin-bottom: 20px;
}

.seller-register-page .login-link {
    text-align: center;
    margin-top: 20px;
    color: #666;
}

.seller-register-page .login-link a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.seller-register-page .login-link a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .seller-register-page .register-container {
        padding: 30px 20px;
        margin: 15px;
    }
    
    .seller-register-page .register-header h2 {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   END SELLER REGISTER PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   REGISTRATION SUCCESS PAGE STYLES
   ==========================================================================*/

body.registration-success-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

.registration-success-page .success-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 50px 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.registration-success-page .success-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

/* Success Icon Animation */
.registration-success-page .success-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.registration-success-page .success-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    animation: successPop 0.6s ease-out;
}

.registration-success-page .success-circle i {
    font-size: 45px;
    color: white;
}

.registration-success-page .pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid #43e97b;
    border-radius: 50%;
    animation: pulseRing 2s ease-out infinite;
    opacity: 0;
}

.registration-success-page .pulse-ring.ring-2 {
    animation-delay: 0.5s;
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Success Content */
.registration-success-page .success-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.registration-success-page .success-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Status Card */
.registration-success-page .status-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
    border-left: 4px solid #ffc107;
}

.registration-success-page .status-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #495057;
}

.registration-success-page .status-header i {
    color: #ffc107;
    font-size: 1.2rem;
}

.registration-success-page .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.registration-success-page .status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.registration-success-page .status-text {
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* Timeline */
.registration-success-page .timeline-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
    text-align: left;
}

.registration-success-page .timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
}

.registration-success-page .timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.registration-success-page .timeline-icon.completed {
    background: #d4edda;
    color: #155724;
}

.registration-success-page .timeline-icon.active {
    background: #fff3cd;
    color: #856404;
    animation: pulse 2s infinite;
}

.registration-success-page .timeline-icon.pending {
    background: #e9ecef;
    color: #6c757d;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.registration-success-page .timeline-line {
    width: 2px;
    height: 30px;
    background: #dee2e6;
    margin-left: 19px;
}

.registration-success-page .timeline-content h5 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #333;
}

.registration-success-page .timeline-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Estimated Time */
.registration-success-page .estimated-time {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.registration-success-page .estimated-time i {
    font-size: 2rem;
}

.registration-success-page .time-content {
    display: flex;
    flex-direction: column;
}

.registration-success-page .time-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.registration-success-page .time-value {
    font-size: 1.3rem;
    font-weight: 700;
}

/* What Next Section */
.registration-success-page .what-next {
    margin-bottom: 30px;
    text-align: left;
}

.registration-success-page .what-next h4 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.registration-success-page .next-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.registration-success-page .step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #495057;
}

.registration-success-page .step-item i {
    color: #667eea;
    font-size: 1.1rem;
    width: 20px;
}

/* Contact Support */
.registration-success-page .contact-support {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.registration-success-page .contact-support p {
    margin: 0 0 10px 0;
    color: #6c757d;
}

.registration-success-page .support-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.registration-success-page .support-link:hover {
    text-decoration: underline;
}

/* Action Buttons */
.registration-success-page .action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.registration-success-page .btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.registration-success-page .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

.registration-success-page .btn-home {
    border: 2px solid #667eea;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.registration-success-page .btn-home:hover {
    background: #667eea;
    color: white;
}

/* Responsive */
@media (max-width: 576px) {
    .registration-success-page .success-container {
        padding: 35px 25px;
    }
    
    .registration-success-page .success-title {
        font-size: 1.8rem;
    }
    
    .registration-success-page .action-buttons {
        flex-direction: column;
    }
    
    .registration-success-page .btn-login,
    .registration-success-page .btn-home {
        width: 100%;
    }
}

/* ==========================================================================
   END REGISTRATION SUCCESS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   PENDING APPROVAL PAGE STYLES
   ==========================================================================*/

body.pending-approval-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px;
}

.pending-approval-page .pending-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    padding: 50px 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pending-approval-page .pending-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ffc107 0%, #ff9800 50%, #ff5722 100%);
}

/* Animated Hourglass */
.pending-approval-page .pending-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.pending-approval-page .hourglass-container {
    width: 80px;
    height: 100px;
    position: relative;
}

.pending-approval-page .hourglass {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 10px;
    position: relative;
    margin: 0 auto;
    clip-path: polygon(0 0, 100% 0, 50% 50%, 100% 100%, 0 100%, 50% 50%);
    animation: hourglassRotate 3s ease-in-out infinite;
}

@keyframes hourglassRotate {
    0%, 45% { transform: rotate(0deg); }
    50%, 95% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

.pending-approval-page .pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 3px solid #ffc107;
    border-radius: 50%;
    animation: pendingPulse 2s ease-out infinite;
    opacity: 0;
}

@keyframes pendingPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Content Styling */
.pending-approval-page .pending-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.pending-approval-page .pending-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Status Message Card */
.pending-approval-page .status-message-card {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: left;
    border-left: 4px solid #ffc107;
}

.pending-approval-page .status-icon {
    width: 60px;
    height: 60px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pending-approval-page .status-icon i {
    font-size: 1.5rem;
    color: white;
}

.pending-approval-page .status-text h4 {
    margin: 0 0 10px 0;
    color: #333;
    font-weight: 600;
}

.pending-approval-page .status-text p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Approval Timeline */
.pending-approval-page .approval-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pending-approval-page .timeline-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
}

.pending-approval-page .step-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.pending-approval-page .timeline-step.completed .step-icon {
    background: #d4edda;
    color: #155724;
}

.pending-approval-page .timeline-step.active .step-icon {
    background: #fff3cd;
    color: #856404;
}

.pending-approval-page .step-icon.pulse {
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.pending-approval-page .timeline-step.pending .step-icon {
    background: #e9ecef;
    color: #6c757d;
}

.pending-approval-page .step-content h5 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #333;
}

.pending-approval-page .step-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.pending-approval-page .timeline-connector {
    width: 2px;
    height: 25px;
    margin-left: 21px;
}

.pending-approval-page .timeline-connector.active {
    background: linear-gradient(180deg, #28a745 0%, #ffc107 100%);
}

.pending-approval-page .timeline-connector.pending {
    background: #dee2e6;
}

/* Estimated Box */
.pending-approval-page .estimated-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.pending-approval-page .estimated-box i {
    font-size: 2rem;
}

.pending-approval-page .estimated-content {
    display: flex;
    flex-direction: column;
}

.pending-approval-page .estimated-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.pending-approval-page .estimated-value {
    font-size: 1.3rem;
    font-weight: 700;
}

/* Next Section */
.pending-approval-page .next-section {
    margin-bottom: 30px;
    text-align: left;
}

.pending-approval-page .next-section h4 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.pending-approval-page .next-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pending-approval-page .next-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    color: #495057;
}

.pending-approval-page .next-item i {
    color: #ff9800;
    font-size: 1.1rem;
    width: 20px;
}

/* Check Status Section */
.pending-approval-page .check-status-section {
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 10px;
}

.pending-approval-page .check-text {
    margin: 0 0 15px 0;
    color: #1976d2;
    font-weight: 500;
}

.pending-approval-page .btn-check-status {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pending-approval-page .btn-check-status:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.4);
    color: white;
}

/* Support Box */
.pending-approval-page .support-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: left;
}

.pending-approval-page .support-box > i {
    font-size: 2rem;
    color: #667eea;
}

.pending-approval-page .support-content p {
    margin: 0 0 8px 0;
    color: #6c757d;
}

.pending-approval-page .support-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.pending-approval-page .support-content a:hover {
    text-decoration: underline;
}

.pending-approval-page .support-phone {
    display: block;
    margin-top: 5px;
    color: #6c757d;
    font-size: 0.9rem;
}

.pending-approval-page .support-phone i {
    color: #28a745;
    margin-right: 5px;
}

/* Action Buttons */
.pending-approval-page .action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.pending-approval-page .btn-home {
    background: transparent;
    border: 2px solid #6c757d;
    color: #6c757d;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.pending-approval-page .btn-home:hover {
    background: #6c757d;
    color: white;
}

.pending-approval-page .btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pending-approval-page .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Responsive */
@media (max-width: 576px) {
    .pending-approval-page .pending-container {
        padding: 35px 25px;
    }
    
    .pending-approval-page .pending-title {
        font-size: 1.6rem;
    }
    
    .pending-approval-page .status-message-card {
        flex-direction: column;
        text-align: center;
    }
    
    .pending-approval-page .action-buttons {
        flex-direction: column;
    }
    
    .pending-approval-page .btn-home,
    .pending-approval-page .btn-login {
        width: 100%;
    }
}

/* ==========================================================================
   END PENDING APPROVAL PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   SELLER DASHBOARD PAGE STYLES
   ==========================================================================*/

body.seller-dashboard-page,
body.upload-product-page {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Generic Seller Sidebar Styles - Works for all seller pages */
.sidebar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    z-index: 1000;
}

.sidebar .profile {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
}

.sidebar .profile h4 {
    margin: 15px 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.sidebar .profile p {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.sidebar .profile-image {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.sidebar .profile-image:hover {
    transform: scale(1.05);
    border-color: rgba(255,255,255,0.5);
}

.sidebar .profile .store-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid rgba(255,255,255,0.3);
    font-size: 40px;
    color: white;
}

.sidebar .nav-menu {
    padding: 20px 0;
}

.sidebar .nav-item {
    padding: 12px 20px;
    display: block;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.sidebar .nav-item:hover {
    background: rgba(255,255,255,0.1);
}

.sidebar .nav-item.active {
    background: rgba(255,255,255,0.2);
}

/* Main Content for all seller pages */
.main-content {
    margin-left: 250px;
    padding: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1001;
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

/* Sidebar Close Button */
.sidebar-close-btn {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 1002;
}

.sidebar-close-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

/* Mobile Responsive for all seller pages */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        width: 250px;
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .main-content {
        margin-left: 0;
        padding: 15px;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 576px) {
    .sidebar {
        width: 280px;
        left: -280px;
    }

    .sidebar .profile {
        padding: 20px 15px;
    }

    .sidebar .nav-item {
        padding: 15px 20px;
        font-size: 15px;
    }
}

/* Page-specific sidebar styles */
.seller-dashboard-page .sidebar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: white;
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    z-index: 1000;
}

.seller-dashboard-page .sidebar .profile {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.seller-dashboard-page .sidebar .profile h4 {
    margin: 10px 0 5px 0;
    font-size: 18px;
}

.seller-dashboard-page .sidebar .profile p {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
}

.seller-dashboard-page .sidebar .profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.2);
    margin-bottom: 10px;
}

.seller-dashboard-page .sidebar .nav-menu {
    padding: 20px 0;
}

.seller-dashboard-page .sidebar .nav-item {
    padding: 12px 20px;
    display: block;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.seller-dashboard-page .sidebar .nav-item:hover {
    background: rgba(255,255,255,0.1);
}

.seller-dashboard-page .sidebar .nav-item.active {
    background: rgba(255,255,255,0.2);
}

/* Main Content */
.seller-dashboard-page .main-content {
    margin-left: 250px;
    padding: 20px;
}

/* Stats Cards */
.seller-dashboard-page .stats-card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.seller-dashboard-page .stats-card:hover {
    transform: translateY(-5px);
}

.seller-dashboard-page .stats-card .number {
    font-size: 32px;
    font-weight: bold;
    color: #667eea;
}

.seller-dashboard-page .stats-card .label {
    color: #666;
    margin-top: 10px;
}

/* Products Table */
.seller-dashboard-page .products-table {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.seller-dashboard-page .table th {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

/* Status Badges */
.seller-dashboard-page .status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.seller-dashboard-page .status-pending {
    background: #fff3cd;
    color: #856404;
}

.seller-dashboard-page .status-approved {
    background: #d4edda;
    color: #155724;
}

.seller-dashboard-page .status-rejected {
    background: #f8d7da;
    color: #721c24;
}

/* Action Buttons */
.seller-dashboard-page .btn-action {
    padding: 5px 10px;
    font-size: 12px;
    margin: 0 2px;
}

.seller-dashboard-page .product-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

/* Header */
.seller-dashboard-page .header {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logout Button */
.seller-dashboard-page .logout-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.seller-dashboard-page .logout-btn:hover {
    background: #c82333;
    color: white;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .seller-dashboard-page .sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        width: 250px;
        height: 100vh;
        z-index: 1000;
        transition: left 0.3s ease;
    }

    .seller-dashboard-page .sidebar.active {
        left: 0;
    }

    .seller-dashboard-page .main-content {
        margin-left: 0;
        padding: 15px;
    }

    .seller-dashboard-page .mobile-menu-btn {
        display: block;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
        background: #667eea;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
    }

    .seller-dashboard-page .header {
        margin-top: 60px;
        padding: 15px;
    }

    .seller-dashboard-page .header h2 {
        font-size: 20px;
    }

    .seller-dashboard-page .header p {
        font-size: 14px;
    }

    .seller-dashboard-page .stats-card {
        padding: 15px;
        margin-bottom: 15px;
    }

    .seller-dashboard-page .stats-card .number {
        font-size: 24px;
    }

    .seller-dashboard-page .stats-card .label {
        font-size: 12px;
    }

    .seller-dashboard-page .table-responsive {
        font-size: 14px;
    }

    .seller-dashboard-page .product-image {
        width: 40px;
        height: 40px;
    }

    .seller-dashboard-page .btn-action {
        padding: 3px 8px;
        font-size: 11px;
    }

    .seller-dashboard-page .status-badge {
        padding: 3px 8px;
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .seller-dashboard-page .mobile-menu-btn {
        top: 15px;
        left: 15px;
        padding: 8px 12px;
        font-size: 16px;
    }

    .seller-dashboard-page .header {
        margin-top: 50px;
        padding: 10px;
    }

    .seller-dashboard-page .header h2 {
        font-size: 18px;
    }

    .seller-dashboard-page .header p {
        font-size: 13px;
    }

    .seller-dashboard-page .stats-card {
        padding: 12px;
        margin-bottom: 12px;
    }

    .seller-dashboard-page .stats-card .number {
        font-size: 20px;
    }

    .seller-dashboard-page .stats-card .label {
        font-size: 11px;
    }

    .seller-dashboard-page .sidebar {
        width: 280px;
        left: -280px;
    }

    .seller-dashboard-page .sidebar .profile {
        padding: 20px 15px;
    }

    .seller-dashboard-page .sidebar .profile h4 {
        font-size: 16px;
    }

    .seller-dashboard-page .sidebar .profile p {
        font-size: 13px;
    }

    .seller-dashboard-page .sidebar .nav-item {
        padding: 10px 15px;
        font-size: 14px;
    }
}

/* Hide mobile menu button on desktop */
@media (min-width: 769px) {
    .seller-dashboard-page .mobile-menu-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .seller-dashboard-page .mobile-menu-btn {
        display: block;
    }
}

/* ==========================================================================
   END SELLER DASHBOARD PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   ENHANCED SELLER DASHBOARD STYLES
   ==========================================================================*/

/* Welcome Banner */
.seller-dashboard-page .welcome-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.seller-dashboard-page .welcome-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.seller-dashboard-page .welcome-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.seller-dashboard-page .welcome-content p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin: 0;
}

.seller-dashboard-page .welcome-icon {
    font-size: 4rem;
    opacity: 0.2;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* Quick Action Cards */
.seller-dashboard-page .quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.seller-dashboard-page .quick-action-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.seller-dashboard-page .quick-action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
    color: #667eea;
}

.seller-dashboard-page .quick-action-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seller-dashboard-page .quick-action-card h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

/* Enhanced Stats Cards */
.seller-dashboard-page .stats-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.seller-dashboard-page .stat-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.seller-dashboard-page .stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.seller-dashboard-page .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.seller-dashboard-page .stat-icon.blue {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.seller-dashboard-page .stat-icon.green {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.seller-dashboard-page .stat-icon.orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.seller-dashboard-page .stat-icon.red {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.seller-dashboard-page .stat-info h4 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.seller-dashboard-page .stat-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Dashboard Section Cards */
.seller-dashboard-page .dashboard-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    overflow: hidden;
}

.seller-dashboard-page .section-header {
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seller-dashboard-page .section-header h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seller-dashboard-page .section-header h5 i {
    color: #667eea;
}

.seller-dashboard-page .section-body {
    padding: 25px;
}

/* Activity List */
.seller-dashboard-page .activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.seller-dashboard-page .activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.seller-dashboard-page .activity-item:hover {
    background: #e9ecef;
}

.seller-dashboard-page .activity-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.seller-dashboard-page .activity-icon.add {
    background: #d4edda;
    color: #155724;
}

.seller-dashboard-page .activity-icon.edit {
    background: #fff3cd;
    color: #856404;
}

.seller-dashboard-page .activity-icon.delete {
    background: #f8d7da;
    color: #721c24;
}

.seller-dashboard-page .activity-icon.order {
    background: #cce5ff;
    color: #004085;
}

.seller-dashboard-page .activity-content p {
    margin: 0;
    color: #333;
    font-weight: 500;
}

.seller-dashboard-page .activity-content small {
    color: #6c757d;
}

/* Enhanced Products Table */
.seller-dashboard-page .products-section .section-body {
    padding: 0;
}

.seller-dashboard-page .table-modern {
    margin: 0;
}

.seller-dashboard-page .table-modern th {
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
    color: #495057;
    padding: 15px;
}

.seller-dashboard-page .table-modern td {
    padding: 15px;
    vertical-align: middle;
}

.seller-dashboard-page .product-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.seller-dashboard-page .product-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.seller-dashboard-page .product-name {
    font-weight: 500;
    color: #333;
}

.seller-dashboard-page .btn-table-action {
    width: 32px;
    height: 32px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin: 0 3px;
    transition: all 0.3s ease;
}

.seller-dashboard-page .btn-table-action:hover {
    transform: scale(1.1);
}

/* Dashboard Grid Layout */
.seller-dashboard-page .dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 25px;
}

@media (max-width: 992px) {
    .seller-dashboard-page .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive adjustments for enhanced dashboard */
@media (max-width: 768px) {
    .seller-dashboard-page .welcome-banner {
        padding: 20px;
        text-align: center;
    }
    
    .seller-dashboard-page .welcome-icon {
        display: none;
    }
    
    .seller-dashboard-page .welcome-content h2 {
        font-size: 1.5rem;
    }
    
    .seller-dashboard-page .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .seller-dashboard-page .stat-card {
        padding: 15px;
    }
    
    .seller-dashboard-page .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   END ENHANCED SELLER DASHBOARD STYLES
   ==========================================================================*/

/* ==========================================================================
   UPLOAD PRODUCT PAGE STYLES
   ==========================================================================
   Styles for the seller product upload page.
   Includes form styling, image previews, variant management, and responsive design.
   ========================================================================== */

body.upload-product-page {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Nice Header for Upload Product Page */
.upload-product-page .header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.upload-product-page .header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.upload-product-page .header h2::before {
    content: '\f093';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    background: rgba(255,255,255,0.2);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.upload-product-page .header .text-muted {
    color: rgba(255,255,255,0.8) !important;
    font-size: 15px;
    margin-top: 5px;
    margin-left: 57px;
}

.upload-product-page .header .logout-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.upload-product-page .header .logout-btn:hover {
    background: rgba(255,255,255,0.3);
    border-color: white;
    transform: translateY(-2px);
}

/* Upload Form Container */
.upload-product-page .upload-form {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Form Sections - Nice Card Style */
.upload-product-page .form-section {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 25px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.upload-product-page .form-section:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.upload-product-page .section-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 10px;
}

.upload-product-page .section-header i {
    color: #667eea;
    font-size: 18px;
}

.upload-product-page .section-header h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.upload-product-page .section-body {
    padding: 20px;
}

/* Form Labels */
.upload-product-page .form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

/* Form Controls */
.upload-product-page .form-control,
.upload-product-page .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: all 0.3s;
}

.upload-product-page .form-control:focus,
.upload-product-page .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Upload Button */
.upload-product-page .btn-upload {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 500;
    transition: transform 0.3s;
}

.upload-product-page .btn-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Image Preview */
.upload-product-page .image-preview {
    margin-top: 10px;
    max-width: 200px;
    max-height: 200px;
    border-radius: 8px;
    display: none;
}

/* Variant Item Container */
.upload-product-page .variant-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
}

/* Product Attributes Section */
.upload-product-page #productAttributes {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.upload-product-page #productAttributes .form-label i {
    color: #667eea;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .upload-product-page .header {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start !important;
        gap: 15px;
    }

    .upload-product-page .header h2 {
        font-size: 22px;
    }

    .upload-product-page .header h2::before {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .upload-product-page .header .text-muted {
        margin-left: 50px;
        font-size: 13px;
    }

    .upload-product-page .header .logout-btn {
        align-self: flex-end;
        padding: 8px 16px;
        font-size: 14px;
    }

    .upload-product-page .upload-form {
        padding: 20px;
    }

    .upload-product-page .form-label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .upload-product-page .form-control,
    .upload-product-page .form-select {
        font-size: 14px;
        padding: 10px;
    }

    .upload-product-page .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .upload-product-page .image-preview {
        max-width: 150px;
        max-height: 150px;
    }

    .upload-product-page .variant-item {
        padding: 15px;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .upload-product-page .upload-form {
        padding: 15px;
    }

    .upload-product-page .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .upload-product-page .form-control,
    .upload-product-page .form-select {
        font-size: 13px;
        padding: 8px;
    }

    .upload-product-page .btn {
        font-size: 13px;
        padding: 8px 16px;
    }

    .upload-product-page .image-preview {
        max-width: 120px;
        max-height: 120px;
    }

    .upload-product-page .variant-item {
        padding: 12px;
        margin-bottom: 12px;
    }
}

/* ==========================================================================
   END UPLOAD PRODUCT PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   EDIT PRODUCT PAGE STYLES
   ==========================================================================
   Styles for the seller edit product page.
   Includes: header, form sections, product images, and responsive design.
   ========================================================================== */

body.edit-product-page {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Page Header */
.edit-product-page .page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.edit-product-page .page-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.edit-product-page .page-header p {
    color: rgba(255,255,255,0.8);
    margin: 5px 0 0 0;
}

/* Edit Form Card */
.edit-product-page .edit-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 30px;
}

/* Form Sections */
.edit-product-page .form-section {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.edit-product-page .form-section.bg-light {
    background: #f8f9fa;
}

.edit-product-page .section-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.edit-product-page .section-title i {
    color: #667eea;
}

/* Form Controls */
.edit-product-page .form-label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.edit-product-page .form-control,
.edit-product-page .form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 10px 12px;
}

.edit-product-page .form-control:focus,
.edit-product-page .form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Product Images Grid */
.edit-product-page .product-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.edit-product-page .product-image-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.edit-product-page .product-image-item.main-image {
    border-color: #667eea;
    grid-column: span 2;
}

.edit-product-page .product-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edit-product-page .main-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #667eea;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
}

/* Form Actions */
.edit-product-page .form-actions {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .edit-product-page .page-header {
        padding: 20px;
        margin-top: 60px;
    }

    .edit-product-page .page-header h2 {
        font-size: 22px;
    }

    .edit-product-page .edit-form-card {
        padding: 20px;
    }

    .edit-product-page .form-section {
        padding: 15px;
    }
}

/* ==========================================================================
   END EDIT PRODUCT PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   SELLER ORDER VIEW PAGE STYLES
   ==========================================================================*/

.order-view-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.order-view-page .order-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 25px;
}

.order-view-page .order-header h2 {
    margin: 0;
    font-weight: 700;
}

.order-view-page .order-header .btn-back {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.order-view-page .order-header .btn-back:hover {
    background: rgba(255,255,255,0.3);
    color: white;
}

.order-view-page .status-badge-lg {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.order-view-page .order-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: hidden;
}

.order-view-page .order-card .card-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
}

.order-view-page .order-card .card-body {
    padding: 20px;
}

.order-view-page .info-row {
    margin-bottom: 15px;
}

.order-view-page .info-row label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 5px;
    display: block;
}

.order-view-page .info-row .value {
    color: #212529;
}

.order-view-page .product-table img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.order-view-page .timeline {
    position: relative;
    padding-left: 30px;
}

.order-view-page .timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.order-view-page .timeline-item {
    position: relative;
    padding-bottom: 20px;
}

.order-view-page .timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    border: 2px solid white;
}

.order-view-page .timeline-item.completed::before {
    background: #28a745;
}

.order-view-page .timeline-item.active::before {
    background: #007bff;
}

.order-view-page .timeline-item .date {
    font-size: 12px;
    color: #6c757d;
}

.order-view-page .main-content {
    margin-left: 250px;
    padding: 20px;
}

@media (max-width: 768px) {
    .order-view-page .main-content {
        margin-left: 0;
        padding: 15px;
    }
    .order-view-page .order-header {
        margin-top: 60px;
    }
}

/* ==========================================================================
   END SELLER ORDER VIEW PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   SELLER PROFILE PAGE STYLES
   ==========================================================================
   Styles for the seller profile management page.
   Includes: header, profile form, image upload, password section, responsive.
   ========================================================================== */

.seller-profile-page {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Page Header */
.seller-profile-page .page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 30px;
    border-radius: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.seller-profile-page .page-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.seller-profile-page .page-header p {
    color: rgba(255,255,255,0.8);
    margin: 5px 0 0 0;
}

/* Profile Card */
.seller-profile-page .profile-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.seller-profile-page .profile-card .card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 30px;
    border-bottom: 1px solid #dee2e6;
}

.seller-profile-page .profile-card .card-header h5 {
    margin: 0;
    font-weight: 600;
    color: #495057;
}

.seller-profile-page .profile-card .card-body {
    padding: 30px;
}

/* Profile Image Section */
.seller-profile-page .profile-image-section {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    margin-bottom: 30px;
}

.seller-profile-page .profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.seller-profile-page .profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.seller-profile-page .profile-image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
    border: 5px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Upload Button */
.seller-profile-page .upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.seller-profile-page .upload-btn-wrapper input[type=file] {
    position: absolute;
    left: -9999px;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.seller-profile-page .upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
}

.seller-profile-page .upload-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Form Styles */
.seller-profile-page .form-section {
    margin-bottom: 30px;
}

.seller-profile-page .form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
    display: flex;
    align-items: center;
    gap: 10px;
}

.seller-profile-page .form-label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.seller-profile-page .form-control {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    padding: 12px 15px;
    transition: all 0.3s;
}

.seller-profile-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Password Section */
.seller-profile-page .password-section {
    background: #fff3cd;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.seller-profile-page .password-section .form-section-title {
    border-bottom-color: #ffc107;
    color: #856404;
}

/* Action Buttons */
.seller-profile-page .action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.seller-profile-page .action-buttons .btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.seller-profile-page .action-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.seller-profile-page .action-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.seller-profile-page .action-buttons .btn-secondary {
    background: #6c757d;
    border: none;
}

/* Alert Messages */
.seller-profile-page .alert {
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .seller-profile-page .page-header {
        padding: 20px;
        margin-top: 60px;
    }
    
    .seller-profile-page .page-header h2 {
        font-size: 22px;
    }
    
    .seller-profile-page .profile-card .card-body {
        padding: 20px;
    }
    
    .seller-profile-page .profile-image,
    .seller-profile-page .profile-image-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .seller-profile-page .action-buttons {
        flex-direction: column;
    }
    
    .seller-profile-page .action-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   END SELLER PROFILE PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   USER LOGIN PAGE STYLES
   ==========================================================================
   Styles for the user login page with modern gradient design.
   Includes: login container, form styling, responsive layout.
   ========================================================================== */

.login-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-page .login-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    margin: 20px;
}

.login-page .login-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    text-align: center;
}

.login-page .login-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.login-page .login-header p {
    margin: 10px 0 0;
    opacity: 0.9;
}

.login-page .login-body {
    padding: 40px;
}

.login-page .form-floating {
    margin-bottom: 20px;
}

.login-page .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.login-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.login-page .form-floating label {
    padding: 12px 16px;
    font-size: 14px;
}

.login-page .btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.login-page .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.login-page .form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.login-page .divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.login-page .divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.login-page .divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 14px;
}

.login-page .links {
    text-align: center;
    margin-top: 20px;
}

.login-page .links a {
    color: #667eea;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.login-page .links a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.login-page .alert {
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
}

.login-page .input-group-text {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    color: #6c757d;
}

.login-page .form-control:focus + .input-group-text,
.login-page .input-group-text:focus {
    border-color: #667eea;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .login-page .login-container {
        margin: 10px;
    }

    .login-page .login-header,
    .login-page .login-body {
        padding: 20px;
    }
}

/* ==========================================================================
   END USER LOGIN PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   USER REGISTER PAGE STYLES
   ==========================================================================
   Styles for the user registration page.
   Includes: register container, form styling, password toggle, validation.
   ========================================================================== */

.register-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px 0;
}

.register-page .register-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
    margin: 20px;
}

.register-page .register-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    text-align: center;
}

.register-page .register-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.register-page .register-header p {
    margin: 10px 0 0;
    opacity: 0.9;
}

.register-page .register-body {
    padding: 40px;
    max-height: 70vh;
    overflow-y: auto;
}

.register-page .form-floating {
    margin-bottom: 20px;
    position: relative;
}

.register-page .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 40px 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.register-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.register-page .form-floating label {
    padding: 12px 16px;
    font-size: 14px;
}

.register-page .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    color: #6c757d;
    font-size: 16px;
}

.register-page .password-toggle:hover {
    color: #495057;
}

.register-page .error-text {
    display: none;
    font-size: 12px;
    margin-top: 5px;
    color: #dc3545;
}

.register-page .is-invalid + .error-text {
    display: block;
}

.register-page .error-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #dc3545;
    display: none;
    font-size: 16px;
    z-index: 10;
}

.register-page .is-invalid ~ .error-icon {
    display: block;
}

.register-page .is-invalid {
    border-color: #dc3545;
}

.register-page .is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.register-page .btn-register {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.register-page .btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.register-page .form-check-input:checked {
    background-color: #667eea;
    border-color: #667eea;
}

.register-page .alert {
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
}

.register-page .register-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.register-page .register-benefits span {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
}

.register-page .register-benefits i {
    color: #90EE90;
    margin-right: 5px;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .register-page .register-container {
        margin: 10px;
    }

    .register-page .register-header,
    .register-page .register-body {
        padding: 20px;
    }
}

/* ==========================================================================
   END USER REGISTER PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   USER FORGOT PASSWORD PAGE STYLES
   ==========================================================================
   Styles for the user forgot password page.
   Includes: reset container, form styling, alerts.
   ========================================================================== */

.forgot-password-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px 0;
}

.forgot-password-page .reset-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    margin: 20px;
}

.forgot-password-page .reset-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    text-align: center;
}

.forgot-password-page .reset-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.forgot-password-page .reset-header p {
    margin: 10px 0 0;
    opacity: 0.9;
}

.forgot-password-page .reset-body {
    padding: 40px;
}

.forgot-password-page .form-floating {
    margin-bottom: 20px;
}

.forgot-password-page .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.forgot-password-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.forgot-password-page .form-floating label {
    padding: 12px 16px;
    font-size: 14px;
}

.forgot-password-page .btn-reset {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.forgot-password-page .btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.forgot-password-page .alert {
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .forgot-password-page .reset-container {
        margin: 10px;
    }

    .forgot-password-page .reset-header,
    .forgot-password-page .reset-body {
        padding: 20px;
    }
}

/* ==========================================================================
   END USER FORGOT PASSWORD PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   USER RESET PASSWORD PAGE STYLES
   ==========================================================================
   Styles for the user reset password page (OTP verification).
   Reuses forgot-password styles with reset-password-page class.
   ========================================================================== */

.reset-password-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 20px 0;
}

.reset-password-page .reset-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    margin: 20px;
}

.reset-password-page .reset-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    text-align: center;
}

.reset-password-page .reset-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.reset-password-page .reset-header p {
    margin: 10px 0 0;
    opacity: 0.9;
}

.reset-password-page .reset-body {
    padding: 40px;
}

.reset-password-page .form-floating {
    margin-bottom: 20px;
}

.reset-password-page .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.reset-password-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.reset-password-page .form-floating label {
    padding: 12px 16px;
    font-size: 14px;
}

.reset-password-page .btn-reset {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.reset-password-page .btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.reset-password-page .alert {
    border-radius: 10px;
    border: none;
    margin-bottom: 20px;
}

/* Mobile Responsive */
@media (max-width: 576px) {
    .reset-password-page .reset-container {
        margin: 10px;
    }

    .reset-password-page .reset-header,
    .reset-password-page .reset-body {
        padding: 20px;
    }
}

/* ==========================================================================
   END USER RESET PASSWORD PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   USER DASHBOARD PAGE STYLES
   ==========================================================================
   Professional user dashboard with 3 order sections:
   - Online Shopping Orders
   - Only Stitching Orders
   - Fabric + Stitching Orders
   ========================================================================== */

.user-dashboard-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    min-height: 100vh;
    padding-bottom: 30px;
}

/* Welcome Section - Enhanced with vibrant colors */
.user-dashboard-page .welcome-section {
    background: linear-gradient(135deg, #0f2027 0%, #2c5364 50%, #4facfe 100%);
    color: white;
    padding: 30px 0;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.3);
}

.user-dashboard-page .welcome-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
}

.user-dashboard-page .welcome-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.user-dashboard-page .welcome-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.user-dashboard-page .welcome-content p {
    opacity: 0.95;
    font-size: 1rem;
    font-weight: 500;
}

.user-dashboard-page .welcome-icon {
    font-size: 3.5rem;
    opacity: 0.4;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
}

/* Order Type Cards - 3 Main Sections */
/* Order Type Cards - 3 Main Sections - Enhanced for Mobile */
.user-dashboard-page .order-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.user-dashboard-page .order-type-card {
    background: white;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.user-dashboard-page .order-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.user-dashboard-page .order-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Online Shop - Vibrant Purple/Pink */
.user-dashboard-page .order-type-card.online-shop::before {
    background: linear-gradient(90deg, #8B5CF6, #EC4899);
}

.user-dashboard-page .order-type-card.online-shop:hover {
    border-color: #8B5CF6;
}

.user-dashboard-page .order-type-card.online-shop .order-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    color: #8B5CF6;
}

.user-dashboard-page .order-type-card.online-shop .order-count {
    color: #8B5CF6;
    text-shadow: 2px 2px 4px rgba(139, 92, 246, 0.2);
}

.user-dashboard-page .order-type-card.online-shop .order-btn {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    color: #8B5CF6;
    border: 2px solid transparent;
}

.user-dashboard-page .order-type-card.online-shop .order-btn:hover {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
    border-color: transparent;
}

/* Only Stitching - Vibrant Orange/Coral */
.user-dashboard-page .order-type-card.stitching::before {
    background: linear-gradient(90deg, #FF6B6B, #FF8E53);
}

.user-dashboard-page .order-type-card.stitching:hover {
    border-color: #FF6B6B;
}

.user-dashboard-page .order-type-card.stitching .order-icon {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 142, 83, 0.15));
    color: #FF6B6B;
}

.user-dashboard-page .order-type-card.stitching .order-count {
    color: #FF6B6B;
    text-shadow: 2px 2px 4px rgba(255, 107, 107, 0.2);
}

.user-dashboard-page .order-type-card.stitching .order-btn {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 142, 83, 0.15));
    color: #FF6B6B;
    border: 2px solid transparent;
}

.user-dashboard-page .order-type-card.stitching .order-btn:hover {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
}

/* Fabric + Stitching - Vibrant Teal/Blue */
.user-dashboard-page .order-type-card.fabric-stitching::before {
    background: linear-gradient(90deg, #06B6D4, #3B82F6);
}

.user-dashboard-page .order-type-card.fabric-stitching:hover {
    border-color: #06B6D4;
}

.user-dashboard-page .order-type-card.fabric-stitching .order-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.15));
    color: #06B6D4;
}

.user-dashboard-page .order-type-card.fabric-stitching .order-count {
    color: #06B6D4;
    text-shadow: 2px 2px 4px rgba(6, 182, 212, 0.2);
}

.user-dashboard-page .order-type-card.fabric-stitching .order-btn {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.15));
    color: #06B6D4;
    border: 2px solid transparent;
}

.user-dashboard-page .order-type-card.fabric-stitching .order-btn:hover {
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
    color: white;
}

.user-dashboard-page .order-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.user-dashboard-page .order-type-card:hover .order-icon {
    transform: scale(1.1);
}

.user-dashboard-page .order-type-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2d3748;
}

.user-dashboard-page .order-type-card p {
    font-size: 0.85rem;
    color: #718096;
    margin-bottom: 10px;
}

.user-dashboard-page .order-count {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 10px 0;
}

.user-dashboard-page .order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.user-dashboard-page .order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Quick Stats Row */
.user-dashboard-page .stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.user-dashboard-page .stat-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.user-dashboard-page .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.user-dashboard-page .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.user-dashboard-page .stat-card:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    color: white;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.user-dashboard-page .stat-card:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.user-dashboard-page .stat-card:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #06B6D4, #22D3EE);
    color: white;
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

.user-dashboard-page .stat-card:nth-child(4) .stat-icon {
    background: linear-gradient(135deg, #10B981, #34D399);
    color: white;
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.user-dashboard-page .stat-info h5 {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 5px;
    font-weight: 500;
}

.user-dashboard-page .stat-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* Recent Orders Section */
.user-dashboard-page .recent-orders-section {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.user-dashboard-page .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.user-dashboard-page .section-header h4 {
    font-weight: 600;
    margin: 0;
}

.user-dashboard-page .view-all-btn {
    color: white;
    background: linear-gradient(135deg, #667eea, #764ba2);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.user-dashboard-page .view-all-btn:hover {
    color: white;
    background: linear-gradient(135deg, #764ba2, #667eea);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.user-dashboard-page .order-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.user-dashboard-page .order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.user-dashboard-page .order-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.user-dashboard-page .order-info h6 {
    margin: 0 0 5px 0;
    font-weight: 600;
}

.user-dashboard-page .order-info small {
    color: #6c757d;
}

.user-dashboard-page .order-meta {
    text-align: right;
}

.user-dashboard-page .order-amount {
    font-weight: 700;
    font-size: 1.1rem;
    color: #28a745;
}

.user-dashboard-page .order-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 5px;
}

.user-dashboard-page .status-pending {
    background: #fff3cd;
    color: #856404;
}

.user-dashboard-page .status-processing {
    background: #d1ecf1;
    color: #0c5460;
}

.user-dashboard-page .status-shipped {
    background: #d4edda;
    color: #155724;
}

.user-dashboard-page .status-delivered {
    background: #d4edda;
    color: #155724;
}

.user-dashboard-page .status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* Quick Actions */
.user-dashboard-page .quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.user-dashboard-page .action-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-dashboard-page .action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.user-dashboard-page .action-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #667eea20, #764ba220);
    color: #667eea;
}

.user-dashboard-page .action-card h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

.user-dashboard-page .action-card small {
    color: #6c757d;
}

/* Mobile Responsive - Enhanced for All Devices */
@media (max-width: 991px) {
    .user-dashboard-page .welcome-section {
        padding: 25px 0;
    }
    
    .user-dashboard-page .welcome-content h2 {
        font-size: 1.5rem;
    }
    
    .user-dashboard-page .welcome-icon {
        font-size: 2.5rem;
    }
    
    .user-dashboard-page .order-type-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .user-dashboard-page .order-type-card {
        padding: 20px 10px;
    }
    
    .user-dashboard-page .order-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .user-dashboard-page .order-type-card h4 {
        font-size: 1rem;
    }
    
    .user-dashboard-page .order-type-card p {
        font-size: 0.75rem;
    }
    
    .user-dashboard-page .order-count {
        font-size: 1.8rem;
    }
    
    .user-dashboard-page .order-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    
    .user-dashboard-page .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .user-dashboard-page .stat-card {
        padding: 18px;
    }
    
    .user-dashboard-page .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .user-dashboard-page .stat-info h3 {
        font-size: 1.3rem;
    }
    
    .user-dashboard-page .quick-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .user-dashboard-page .action-card {
        padding: 20px 15px;
    }
    
    .user-dashboard-page .recent-orders-section {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .user-dashboard-page .order-type-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .user-dashboard-page .order-type-card:nth-child(3) {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .user-dashboard-page .welcome-section {
        padding: 20px 0;
        text-align: center;
    }
    
    .user-dashboard-page .welcome-content h2 {
        font-size: 1.3rem;
    }
    
    .user-dashboard-page .welcome-content p {
        font-size: 0.9rem;
    }
    
    .user-dashboard-page .welcome-icon {
        display: none;
    }
    
    .user-dashboard-page .order-type-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .user-dashboard-page .order-type-card:nth-child(3) {
        grid-column: span 1;
    }

    .user-dashboard-page .order-type-card {
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .user-dashboard-page .order-icon {
        width: 55px;
        height: 55px;
        margin: 0;
        flex-shrink: 0;
    }

    .user-dashboard-page .order-icon i {
        font-size: 1.5rem;
    }

    .user-dashboard-page .order-type-card h4 {
        font-size: 1.1rem;
        margin-bottom: 4px;
    }

    .user-dashboard-page .order-type-card p {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    .user-dashboard-page .order-count {
        font-size: 1.8rem;
        margin: 5px 0;
    }

    .user-dashboard-page .order-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-top: 10px;
        display: inline-flex;
        width: auto;
        min-width: 120px;
        justify-content: center;
    }
    
    .user-dashboard-page .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .user-dashboard-page .stat-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .user-dashboard-page .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .user-dashboard-page .stat-info h5 {
        font-size: 0.8rem;
    }
    
    .user-dashboard-page .stat-info h3 {
        font-size: 1.2rem;
    }
    
    .user-dashboard-page .quick-actions {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .user-dashboard-page .action-card {
        padding: 18px 12px;
    }
    
    .user-dashboard-page .action-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .user-dashboard-page .action-card h6 {
        font-size: 0.9rem;
    }
    
    .user-dashboard-page .action-card small {
        font-size: 0.75rem;
    }
    
    .user-dashboard-page .recent-orders-section {
        padding: 18px;
        margin-bottom: 20px;
    }
    
    .user-dashboard-page .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding-bottom: 12px;
    }
    
    .user-dashboard-page .section-header h4 {
        font-size: 1.1rem;
    }
    
    .user-dashboard-page .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
    }
    
    .user-dashboard-page .order-meta {
        text-align: left;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .user-dashboard-page .order-amount {
        font-size: 1rem;
    }
    
    .user-dashboard-page .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ==========================================================================
   END USER DASHBOARD PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   USER MY ORDERS PAGE STYLES - MODERN E-COMMERCE DESIGN
   ==========================================================================*/

.my-orders-page {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 100vh;
    padding-bottom: 60px;
}

/* Header Section - Modern Gradient */
.my-orders-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 0 60px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.my-orders-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.my-orders-header .container {
    position: relative;
    z-index: 1;
}

.my-orders-header h2 {
    color: white;
    font-weight: 800;
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.my-orders-header p {
    color: rgba(255,255,255,0.9);
    margin: 12px 0 0 0;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Stats Cards - Glassmorphism Effect */
.my-orders-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.stat-box {
    background: white;
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #cbd5e1;
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box.total::before {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.stat-box.pending::before {
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
}

.stat-box.processing::before {
    background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
}

.stat-box.delivered::before {
    background: linear-gradient(180deg, #10b981 0%, #059669 100%);
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box.total h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box.pending h3 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box.processing h3 {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box.delivered h3 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-box small {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Filter Tabs - Pill Style */
.orders-filter-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    padding: 0 5px;
}

.filter-tab {
    padding: 12px 24px;
    border-radius: 30px;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tab i {
    font-size: 0.85rem;
}

.filter-tab:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.filter-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

/* Search Box - Modern Input */
.orders-search-box {
    position: relative;
    margin-bottom: 30px;
}

.orders-search-box input {
    width: 100%;
    padding: 18px 24px 18px 56px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.orders-search-box input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 4px 20px rgba(0,0,0,0.08);
}

.orders-search-box input::placeholder {
    color: #94a3b8;
}

.orders-search-box i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
}

/* Orders Container */
.orders-container {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
    padding: 35px;
    margin-bottom: 40px;
}

.section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1f5f9;
}

.section-title h4 {
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title h4 i {
    color: #667eea;
}

.section-title .text-muted {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Orders Grid - 2 Columns Desktop, 1 Column Mobile (for better card visibility) */
.orders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile layout - Single column tight */
@media (max-width: 992px) {
    .orders-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 10px;
    }
}

/* Mobile card - Minimal gaps */
@media (max-width: 768px) {
    .order-card {
        border-radius: 6px;
    }
    
    .order-card-header {
        padding: 5px 10px;
    }
    
    .order-status-badge {
        padding: 3px 8px;
        font-size: 0.6rem;
        gap: 3px;
    }
    
    .order-status-badge::before {
        width: 5px;
        height: 5px;
    }
    
    /* Product row - tight */
    .order-card-product {
        padding: 5px 10px;
        gap: 8px;
    }
    
    .order-card-product .order-product-img {
        width: 40px;
        height: 40px;
        border-radius: 4px;
        border-width: 1px;
    }
    
    .order-card-product .order-product-name {
        font-size: 0.75rem;
    }
    
    /* Info row - tight */
    .order-card-info {
        padding: 5px 10px;
        gap: 4px;
    }
    
    .order-info-item {
        gap: 0;
    }
    
    .order-info-label {
        font-size: 0.5rem;
    }
    
    .order-info-value {
        font-size: 0.65rem;
    }
    
    .order-info-value.price {
        font-size: 0.7rem;
    }
    
    /* Timeline - tight */
    .order-timeline {
        padding: 5px 8px;
        gap: 1px;
    }
    
    .timeline-icon {
        width: 18px;
        height: 18px;
        font-size: 0.5rem;
        border-width: 1px;
    }
    
    .timeline-step:not(:last-child)::after {
        width: 6px;
        height: 1px;
    }
    
    /* Footer - tight */
    .order-card-footer {
        padding: 5px 10px;
    }
    
    .order-card-footer .btn-view-order {
        width: 100%;
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 10px;
        gap: 4px;
        justify-content: center;
    }
}

/* Desktop - View button auto width */
@media (min-width: 769px) {
    .order-card-footer .btn-view-order {
        width: auto;
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Order Card - Neumorphic Design */
.order-card {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    min-width: 0;
}

.order-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    border-color: #cbd5e1;
}

.order-card:hover::before {
    opacity: 1;
}

/* Order Card Header - Compact */
.order-card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(to right, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #f1f5f9;
}

/* Order Card - Product Row - Compact */
.order-card-product {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
}

.order-card-product .order-product-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #f1f5f9;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.order-card-product .order-product-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Order Card - Info Row */
.order-card-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    gap: 8px;
}

.order-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.order-info-label {
    font-size: 0.65rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 600;
}

.order-info-value {
    font-size: 0.75rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-info-value.price {
    color: #667eea;
    font-size: 0.85rem;
}

/* Order Status Badge - Compact Pills */
.order-status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.order-status-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.order-status-badge.pending {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.order-status-badge.pending::before {
    background: #f59e0b;
    animation: pulse 2s infinite;
}

.order-status-badge.processing {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.order-status-badge.processing::before {
    background: #3b82f6;
    animation: pulse 2s infinite;
}

.order-status-badge.shipped {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #3730a3;
}

.order-status-badge.shipped::before {
    background: #4f46e5;
}

.order-status-badge.delivered {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.order-status-badge.delivered::before {
    background: #10b981;
}

.order-status-badge.cancelled {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

.order-status-badge.cancelled::before {
    background: #ef4444;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Order Card Body */
.order-card-body {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 28px;
}

.order-product-img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    object-fit: cover;
    border: 3px solid #f1f5f9;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.order-card:hover .order-product-img {
    transform: scale(1.05);
}

.order-product-info {
    flex: 1;
}

.order-product-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.4;
}

.order-items-count {
    font-size: 0.95rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.order-items-count span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Order Card Footer - Single Button Layout */
.order-card-footer {
    padding: 10px 16px;
    background: linear-gradient(to right, #f8fafc 0%, #f1f5f9 100%);
    border-top: 1px solid #e2e8f0;
}

.order-card-footer .btn-view-order {
    width: 100%;
    justify-content: center;
    padding: 8px 14px;
    font-size: 0.8rem;
}

/* View Order Button - Ultra Compact */
.btn-view-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-view-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-view-order:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-view-order:hover::before {
    left: 100%;
}

.btn-view-order i {
    font-size: 0.75rem;
}

/* Empty Orders State - Illustrated */
.orders-empty {
    text-align: center;
    padding: 80px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 24px;
    border: 2px dashed #e2e8f0;
}

.orders-empty i {
    font-size: 6rem;
    color: #cbd5e1;
    margin-bottom: 25px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.orders-empty h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.orders-empty p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.orders-empty .btn-view-order {
    padding: 16px 32px;
    font-size: 1rem;
}

/* Order Timeline - Icons Only, Ultra Compact */
.order-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 12px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    gap: 2px;
}

.timeline-step {
    display: flex;
    align-items: center;
    position: relative;
}

.timeline-step:not(:last-child) {
    margin-right: 1px;
}

.timeline-step:not(:last-child)::after {
    content: '';
    width: 12px;
    height: 2px;
    background: #e2e8f0;
    margin: 0 1px;
}

.timeline-step.completed::after {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.timeline-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #94a3b8;
    font-size: 0.65rem;
    z-index: 1;
    border: 1.5px solid #e2e8f0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.timeline-step.completed .timeline-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
}

.timeline-step.active .timeline-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2); }
    50% { box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1); }
}

/* Hide timeline labels */
.timeline-label {
    display: none;
}

/* Order Actions */
.order-actions {
    display: flex;
    gap: 12px;
}

.btn-track-order,
.btn-cancel-order {
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid #e2e8f0;
    background: white;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-track-order:hover {
    border-color: #667eea;
    color: #667eea;
    background: #f0f9ff;
}

.btn-cancel-order:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: #fef2f2;
}

/* Responsive Design */
@media (max-width: 992px) {
    .my-orders-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .my-orders-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .my-orders-header {
        padding: 35px 0 50px;
    }
    
    .my-orders-header h2 {
        font-size: 1.7rem;
    }
    
    .my-orders-header p {
        font-size: 1rem;
    }
    
    .orders-container {
        padding: 24px;
        border-radius: 20px;
    }
    
    .order-card-header,
    .order-card-body,
    .order-card-footer {
        padding: 18px 22px;
    }
    
    .order-product-img {
        width: 80px;
        height: 80px;
    }
    
    .order-product-name {
        font-size: 1rem;
    }
    
    .order-amount {
        font-size: 1.3rem;
    }
    
    .btn-view-order {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .order-timeline {
        padding: 18px 22px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .timeline-label {
        font-size: 0.7rem;
    }
    
    .filter-tab {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .order-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .order-status-badge {
        align-self: flex-start;
    }
    
    .order-card-body {
        flex-direction: column;
        text-align: center;
    }
    
    .order-card-footer {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
    
    .order-actions {
        width: 100%;
        justify-content: center;
    }
    
    .my-orders-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-box {
        padding: 20px 15px;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
    
    .stat-box small {
        font-size: 0.8rem;
    }
    
    .orders-filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .section-title {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .orders-container {
        padding: 18px;
    }
    
    .order-timeline {
        display: none;
    }
    
    .orders-empty {
        padding: 50px 20px;
    }
    
    .orders-empty h4 {
        font-size: 1.4rem;
    }
    
    .orders-empty p {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   END USER MY ORDERS PAGE STYLES
   ==========================================================================*/ 

/* ==========================================================================
   USER ORDER DETAILS PAGE STYLES
   ==========================================================================
   Professional order details page with timeline, product cards, and
   customer information sections.
   ========================================================================== */

.order-details-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    min-height: 100vh;
    padding-bottom: 40px;
}

/* Order Details Header */
.order-details-page .order-header {
    background: linear-gradient(135deg, #0f2027 0%, #2c5364 50%, #4facfe 100%);
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 32, 39, 0.3);
}

.order-details-page .order-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.order-details-page .order-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.order-details-page .order-header .order-number {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

.order-details-page .order-header .header-icon {
    font-size: 4rem;
    opacity: 0.2;
}

/* Status Badge */
.order-details-page .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.order-details-page .status-badge.pending {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #fff;
}

.order-details-page .status-badge.processing {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: #fff;
}

.order-details-page .status-badge.shipped {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
}

.order-details-page .status-badge.delivered {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: #fff;
}

.order-details-page .status-badge.cancelled {
    background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
    color: #fff;
}

/* Order Content Cards */
.order-details-page .order-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 25px;
    border: none;
}

.order-details-page .section-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-details-page .section-header i {
    font-size: 1.2rem;
}

.order-details-page .section-body {
    padding: 25px;
}

/* Product Items */
.order-details-page .product-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.order-details-page .product-item:last-child {
    border-bottom: none;
}

.order-details-page .product-item:hover {
    background: #f8f9fa;
    border-radius: 12px;
}

.order-details-page .product-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #e9ecef;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.order-details-page .product-info {
    flex: 1;
    margin-left: 20px;
}

.order-details-page .product-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.order-details-page .product-meta {
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.order-details-page .color-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.order-details-page .seller-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    background: #fff3e0;
    color: #e65100;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.order-details-page .product-price {
    text-align: right;
    min-width: 120px;
}

.order-details-page .price-single {
    font-size: 0.9rem;
    color: #6c757d;
}

.order-details-page .price-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
}

.order-details-page .quantity {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 3px;
}

/* Order Timeline */
.order-details-page .timeline-section {
    margin-top: 25px;
}

.order-details-page .timeline-section .section-header {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.order-details-page .timeline {
    position: relative;
    padding: 20px 0;
}

.order-details-page .timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 3px;
}

.order-details-page .timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.order-details-page .timeline-item:last-child {
    margin-bottom: 0;
}

.order-details-page .timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    color: #6c757d;
}

.order-details-page .timeline-item.completed .timeline-marker {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
}

.order-details-page .timeline-item.active .timeline-marker {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-color: transparent;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.order-details-page .timeline-content {
    margin-left: 20px;
    flex: 1;
}

.order-details-page .timeline-title {
    font-weight: 600;
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.order-details-page .timeline-item.completed .timeline-title {
    color: #667eea;
}

.order-details-page .timeline-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 3px;
}

.order-details-page .timeline-date {
    font-size: 0.8rem;
    color: #adb5bd;
}

/* Summary Cards */
.order-details-page .summary-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 20px;
}

.order-details-page .summary-card .card-header {
    padding: 18px 20px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.order-details-page .summary-card.order-summary .card-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.order-details-page .summary-card.payment-info .card-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.order-details-page .summary-card.customer-info .card-header {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.order-details-page .summary-card .card-body {
    padding: 20px;
}

.order-details-page .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e9ecef;
}

.order-details-page .summary-row:last-child {
    border-bottom: none;
}

.order-details-page .summary-label {
    color: #6c757d;
    font-size: 0.95rem;
}

.order-details-page .summary-value {
    font-weight: 600;
    color: #2c3e50;
}

.order-details-page .summary-row.total {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid #667eea;
    border-bottom: none;
}

.order-details-page .summary-row.total .summary-label,
.order-details-page .summary-row.total .summary-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
}

/* Payment Status */
.order-details-page .payment-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.order-details-page .payment-status.paid {
    background: #d4edda;
    color: #155724;
}

.order-details-page .payment-status.pending {
    background: #fff3cd;
    color: #856404;
}

/* Customer Info */
.order-details-page .info-row {
    margin-bottom: 15px;
}

.order-details-page .info-row:last-child {
    margin-bottom: 0;
}

.order-details-page .info-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-details-page .info-value {
    color: #6c757d;
    font-size: 0.95rem;
    padding-left: 24px;
}

.order-details-page .address-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin-top: 5px;
    line-height: 1.6;
}

/* Action Buttons */
.order-details-page .action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.order-details-page .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.order-details-page .btn-back:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.order-details-page .btn-help {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    border: none;
}

.order-details-page .btn-help:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(17, 153, 142, 0.3);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .order-details-page .order-header {
        padding: 30px 0;
    }
    
    .order-details-page .order-header h1 {
        font-size: 1.6rem;
    }
    
    .order-details-page .order-header .header-icon {
        font-size: 3rem;
    }
    
    .order-details-page .product-item {
        flex-wrap: wrap;
    }
    
    .order-details-page .product-info {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
    }
    
    .order-details-page .product-price {
        width: 100%;
        text-align: left;
        margin-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .order-details-page .order-header {
        text-align: center;
        padding: 25px 0;
    }
    
    .order-details-page .order-header .header-icon {
        display: none;
    }
    
    .order-details-page .status-badge {
        margin-top: 15px;
    }
    
    .order-details-page .section-body {
        padding: 15px;
    }
    
    .order-details-page .product-image {
        width: 60px;
        height: 60px;
    }
    
    .order-details-page .product-name {
        font-size: 0.95rem;
    }
    
    .order-details-page .product-meta {
        font-size: 0.8rem;
    }
    
    .order-details-page .timeline::before {
        left: 15px;
    }
    
    .order-details-page .timeline-marker {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .order-details-page .action-buttons {
        flex-direction: column;
    }
    
    .order-details-page .btn-back,
    .order-details-page .btn-help {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   END USER ORDER DETAILS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   USER STITCHING ORDER DETAIL PAGE STYLES
   ==========================================================================
   Professional stitching order details with measurements, timeline,
   and design image display.
   ========================================================================== */

.stitching-order-detail-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    min-height: 100vh;
    padding-bottom: 40px;
}

/* Header Section */
.stitching-order-detail-page .stitching-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.stitching-order-detail-page .stitching-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.stitching-order-detail-page .stitching-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stitching-order-detail-page .stitching-header .order-number {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 500;
}

.stitching-order-detail-page .header-icon {
    font-size: 4rem;
    opacity: 0.2;
}

/* Status Badge */
.stitching-order-detail-page .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.stitching-order-detail-page .status-badge.pending {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #fff;
}

.stitching-order-detail-page .status-badge.measuring {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: #fff;
}

.stitching-order-detail-page .status-badge.stitching {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
}

.stitching-order-detail-page .status-badge.ready {
    background: linear-gradient(135deg, #6f42c1 0%, #5a32a3 100%);
    color: #fff;
}

.stitching-order-detail-page .status-badge.delivered {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: #fff;
}

.stitching-order-detail-page .status-badge.cancelled {
    background: linear-gradient(135deg, #dc3545 0%, #a71d2a 100%);
    color: #fff;
}

/* Section Cards */
.stitching-order-detail-page .stitching-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-bottom: 25px;
    border: none;
}

.stitching-order-detail-page .section-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 18px 25px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stitching-order-detail-page .section-header.info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stitching-order-detail-page .section-header.measurements {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.stitching-order-detail-page .section-header.timeline {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
    border: none;
}

.stitching-order-detail-page .section-header.timeline::before,
.stitching-order-detail-page .section-header.timeline::after {
    display: none;
}

.stitching-order-detail-page .section-header.actions {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stitching-order-detail-page .section-body {
    padding: 25px;
}

/* Info Grid */
.stitching-order-detail-page .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.stitching-order-detail-page .info-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.stitching-order-detail-page .info-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stitching-order-detail-page .info-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.05rem;
}

/* Design Image */
.stitching-order-detail-page .design-image-container {
    margin-top: 20px;
    text-align: center;
}

.stitching-order-detail-page .design-image {
    max-height: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 3px solid #e9ecef;
}

/* Measurements Grid */
.stitching-order-detail-page .measurements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.stitching-order-detail-page .measurement-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.stitching-order-detail-page .measurement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #667eea;
}

.stitching-order-detail-page .measurement-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stitching-order-detail-page .measurement-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.stitching-order-detail-page .measurement-unit {
    font-size: 0.9rem;
    color: #adb5bd;
}

/* Timeline */
.stitching-order-detail-page .timeline {
    position: relative;
    padding: 20px 0;
}

.stitching-order-detail-page .timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 3px;
}

.stitching-order-detail-page .timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.stitching-order-detail-page .timeline-item:last-child {
    margin-bottom: 0;
}

.stitching-order-detail-page .timeline-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    color: #6c757d;
}

.stitching-order-detail-page .timeline-item.completed .timeline-marker {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
}

.stitching-order-detail-page .timeline-item.active .timeline-marker {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-color: transparent;
    color: white;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stitching-order-detail-page .timeline-content {
    margin-left: 20px;
    flex: 1;
}

.stitching-order-detail-page .timeline-title {
    font-weight: 600;
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stitching-order-detail-page .timeline-item.completed .timeline-title {
    color: #667eea;
}

.stitching-order-detail-page .timeline-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 3px;
}

.stitching-order-detail-page .timeline-date {
    font-size: 0.8rem;
    color: #adb5bd;
}

/* Action Buttons */
.stitching-order-detail-page .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stitching-order-detail-page .action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stitching-order-detail-page .action-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stitching-order-detail-page .action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.stitching-order-detail-page .action-btn.secondary {
    background: white;
    color: #667eea;
    border-color: #667eea;
}

.stitching-order-detail-page .action-btn.secondary:hover {
    background: #667eea;
    color: white;
}

.stitching-order-detail-page .action-btn.outline {
    background: white;
    color: #6c757d;
    border-color: #dee2e6;
}

.stitching-order-detail-page .action-btn.outline:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
}

/* Special Instructions */
.stitching-order-detail-page .instructions-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #ffc107;
    margin-top: 20px;
}

.stitching-order-detail-page .instructions-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.stitching-order-detail-page .instructions-text {
    color: #6c757d;
    line-height: 1.6;
    white-space: pre-wrap;
}

/* Price Display */
.stitching-order-detail-page .price-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #28a745;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .stitching-order-detail-page .stitching-header {
        padding: 30px 0;
    }
    
    .stitching-order-detail-page .stitching-header h1 {
        font-size: 1.6rem;
    }
    
    .stitching-order-detail-page .header-icon {
        font-size: 3rem;
    }
    
    .stitching-order-detail-page .measurements-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 576px) {
    .stitching-order-detail-page .stitching-header {
        text-align: center;
        padding: 25px 0;
    }
    
    .stitching-order-detail-page .header-icon {
        display: none;
    }
    
    .stitching-order-detail-page .status-badge {
        margin-top: 15px;
    }
    
    .stitching-order-detail-page .section-body {
        padding: 15px;
    }
    
    .stitching-order-detail-page .measurements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stitching-order-detail-page .measurement-card {
        padding: 15px 10px;
    }
    
    .stitching-order-detail-page .measurement-value {
        font-size: 1.2rem;
    }
    
    .stitching-order-detail-page .timeline {
        padding-left: 10px;
        padding-right: 5px;
    }
    
    .stitching-order-detail-page .timeline::before {
        left: 24px;
        width: 2px;
    }
    
    .stitching-order-detail-page .timeline-item {
        margin-bottom: 20px;
    }
    
    .stitching-order-detail-page .timeline-marker {
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
        border-width: 2px;
        flex-shrink: 0;
    }
    
    .stitching-order-detail-page .timeline-content {
        margin-left: 12px;
        min-width: 0;
    }
    
    .stitching-order-detail-page .timeline-title {
        font-size: 0.95rem;
    }
    
    .stitching-order-detail-page .timeline-desc {
        font-size: 0.85rem;
    }
    
    .stitching-order-detail-page .timeline-date {
        font-size: 0.75rem;
    }
    
    .stitching-order-detail-page .design-image {
        max-height: 200px;
    }
}

/* ==========================================================================
   END USER STITCHING ORDER DETAIL PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   USER MY STITCHING ORDERS PAGE STYLES
   ==========================================================================
   Professional stitching orders list page with cards layout,
   statistics bar, and status timeline.
   ========================================================================== */

.my-stitching-orders-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    min-height: 100vh;
    padding-bottom: 40px;
}

/* Header Section */
.my-stitching-orders-page .stitching-orders-header {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(17, 153, 142, 0.3);
}

.my-stitching-orders-page .stitching-orders-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.my-stitching-orders-page .stitching-orders-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.my-stitching-orders-page .stitching-orders-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.my-stitching-orders-page .header-icon {
    font-size: 3.5rem;
    opacity: 0.2;
}

/* Statistics Bar */
.my-stitching-orders-page .stitching-stats-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    background: white;
    border-radius: 15px;
    padding: 20px;
    margin-top: -30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.my-stitching-orders-page .stat-item {
    text-align: center;
    padding: 15px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.my-stitching-orders-page .stat-item:hover {
    transform: translateY(-3px);
    background: #f8f9fa;
}

.my-stitching-orders-page .stat-item .count {
    font-size: 1.8rem;
    font-weight: 700;
    display: block;
}

.my-stitching-orders-page .stat-item.all .count { color: #11998e; }
.my-stitching-orders-page .stat-item.pending .count { color: #ffc107; }
.my-stitching-orders-page .stat-item.processing .count { color: #17a2b8; }
.my-stitching-orders-page .stat-item.ready .count { color: #6f42c1; }
.my-stitching-orders-page .stat-item.delivered .count { color: #28a745; }

.my-stitching-orders-page .stat-item label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

/* Orders Grid */
.my-stitching-orders-page .stitching-orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.my-stitching-orders-page .stitching-order-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.my-stitching-orders-page .stitching-order-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #11998e;
}

.my-stitching-orders-page .order-card-header {
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-stitching-orders-page .order-id {
    font-weight: 700;
    color: #2c5364;
    font-size: 1.1rem;
}

.my-stitching-orders-page .order-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.my-stitching-orders-page .order-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.my-stitching-orders-page .service-info {
    margin-bottom: 10px;
}

.my-stitching-orders-page .service-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 3px;
    display: flex;
    align-items: center;
}

.my-stitching-orders-page .service-value {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    line-height: 1.3;
}

.my-stitching-orders-page .design-attached {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 15px;
    font-size: 0.75rem;
    margin-bottom: 8px;
    width: fit-content;
}

.my-stitching-orders-page .delivery-date {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.3;
}

.my-stitching-orders-page .order-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
    margin-top: auto;
    padding-top: 10px;
}

.my-stitching-orders-page .order-card-footer {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.my-stitching-orders-page .view-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.my-stitching-orders-page .view-order-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(17, 153, 142, 0.4);
    color: white;
}

/* Status Badges */
.my-stitching-orders-page .status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.my-stitching-orders-page .status-badge.pending {
    background: #fff3cd;
    color: #856404;
}

.my-stitching-orders-page .status-badge.confirmed,
.my-stitching-orders-page .status-badge.measuring {
    background: #d1ecf1;
    color: #0c5460;
}

.my-stitching-orders-page .status-badge.in-progress {
    background: #cce5ff;
    color: #004085;
}

.my-stitching-orders-page .status-badge.ready {
    background: #e2e3ff;
    color: #4c1d95;
}

.my-stitching-orders-page .status-badge.delivered {
    background: #d4edda;
    color: #155724;
}

.my-stitching-orders-page .status-badge.cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* Empty State */
.my-stitching-orders-page .empty-state {
    text-align: center;
    padding: 80px 20px;
}

.my-stitching-orders-page .empty-state i {
    font-size: 5rem;
    color: #dee2e6;
    margin-bottom: 20px;
}

.my-stitching-orders-page .empty-state h3 {
    color: #6c757d;
    margin-bottom: 10px;
}

.my-stitching-orders-page .empty-state p {
    color: #adb5bd;
    margin-bottom: 25px;
}

.my-stitching-orders-page .book-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(17, 153, 142, 0.3);
}

.my-stitching-orders-page .book-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(17, 153, 142, 0.4);
    color: white;
}

/* Timeline Legend */
.my-stitching-orders-page .stitching-timeline-legend {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.my-stitching-orders-page .timeline-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.my-stitching-orders-page .timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 20px;
}

.my-stitching-orders-page .timeline-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: linear-gradient(to right, #ffc107, #17a2b8, #6f42c1, #28a745);
    border-radius: 3px;
}

.my-stitching-orders-page .timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 120px;
    max-width: 150px;
}

.my-stitching-orders-page .timeline-step .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.my-stitching-orders-page .timeline-step.pending .step-icon { background: #ffc107; }
.my-stitching-orders-page .timeline-step.processing .step-icon { background: #17a2b8; }
.my-stitching-orders-page .timeline-step.ready .step-icon { background: #6f42c1; }
.my-stitching-orders-page .timeline-step.delivered .step-icon { background: #28a745; }

.my-stitching-orders-page .timeline-step .step-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 4px;
    display: block;
}

.my-stitching-orders-page .timeline-step .step-desc {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.3;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .my-stitching-orders-page .stitching-orders-header {
        padding: 30px 0;
    }
    
    .my-stitching-orders-page .stitching-orders-header h1 {
        font-size: 1.8rem;
    }
    
    .my-stitching-orders-page .header-icon {
        font-size: 2.5rem;
    }
    
    .my-stitching-orders-page .stitching-stats-bar {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 15px;
    }
    
    .my-stitching-orders-page .stitching-orders-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .my-stitching-orders-page .timeline-steps {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .my-stitching-orders-page .timeline-steps::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .my-stitching-orders-page .stitching-orders-header {
        text-align: center;
        padding: 25px 0;
    }
    
    .my-stitching-orders-page .stitching-orders-header h1 {
        font-size: 1.5rem;
    }
    
    .my-stitching-orders-page .header-icon {
        display: none;
    }
    
    .my-stitching-orders-page .stitching-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -20px;
        padding: 15px;
    }
    
    .my-stitching-orders-page .stat-item {
        padding: 12px 8px;
    }
    
    .my-stitching-orders-page .stat-item .count {
        font-size: 1.5rem;
    }
    
    .my-stitching-orders-page .stitching-orders-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .my-stitching-orders-page .stitching-order-card {
        border-radius: 15px;
    }
    
    .my-stitching-orders-page .order-card-header {
        padding: 15px;
    }
    
    .my-stitching-orders-page .order-card-body {
        padding: 15px;
    }
    
    .my-stitching-orders-page .order-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .my-stitching-orders-page .status-badge {
        align-self: flex-start;
    }
    
    .my-stitching-orders-page .service-info {
        margin-bottom: 10px;
    }
    
    .my-stitching-orders-page .design-attached {
        margin-bottom: 8px;
        font-size: 0.75rem;
    }
    
    .my-stitching-orders-page .delivery-date {
        margin-bottom: 10px;
        font-size: 0.85rem;
    }
    
    .my-stitching-orders-page .order-price {
        font-size: 1.3rem;
        margin-top: 10px;
    }
    
    .my-stitching-orders-page .timeline-steps {
        flex-direction: column;
        gap: 15px;
    }
    
    .my-stitching-orders-page .timeline-step {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    
    .my-stitching-orders-page .timeline-step .step-icon {
        margin: 0;
        flex-shrink: 0;
    }
}

/* ==========================================================================
   END USER MY STITCHING ORDERS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   USER WISHLIST PAGE STYLES
   ==========================================================================
   Professional wishlist page with product cards, grid layout,
   and responsive design.
   ========================================================================== */

.wishlist-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    min-height: 100vh;
    padding-bottom: 40px;
}

/* Wishlist Header */
.wishlist-page .wishlist-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(240, 147, 251, 0.3);
}

.wishlist-page .wishlist-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.wishlist-page .wishlist-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.wishlist-page .wishlist-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.wishlist-page .header-icon {
    font-size: 3.5rem;
    opacity: 0.2;
}

.wishlist-page .item-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Wishlist Stats Bar */
.wishlist-page .wishlist-stats {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 15px;
    padding: 20px 30px;
    margin-top: -30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.wishlist-page .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wishlist-page .stat-item i {
    font-size: 1.5rem;
    color: #f5576c;
}

.wishlist-page .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.wishlist-page .stat-label {
    font-size: 0.85rem;
    color: #6c757d;
}

/* Wishlist Grid */
.wishlist-page .wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Wishlist Product Card */
.wishlist-page .wishlist-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.wishlist-page .wishlist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border-color: #f093fb;
}

.wishlist-page .wishlist-card .product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.wishlist-page .wishlist-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.wishlist-page .wishlist-card:hover .product-image img {
    transform: scale(1.05);
}

.wishlist-page .wishlist-card .no-image {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #dee2e6;
}

/* Remove Button */
.wishlist-page .remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 5;
}

.wishlist-page .remove-btn:hover {
    background: #dc3545;
    color: white;
    transform: scale(1.1);
}

/* Card Body */
.wishlist-page .wishlist-card .card-body {
    padding: 20px;
}

.wishlist-page .wishlist-card .product-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wishlist-page .wishlist-card .product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 15px;
}

.wishlist-page .wishlist-card .date-added {
    font-size: 0.8rem;
    color: #adb5bd;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Action Buttons */
.wishlist-page .wishlist-card .card-actions {
    display: flex;
    gap: 10px;
}

.wishlist-page .wishlist-card .btn-view {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.wishlist-page .wishlist-card .btn-view:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.4);
    color: white;
}

.wishlist-page .wishlist-card .btn-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: white;
    color: #dc3545;
    border: 2px solid #dc3545;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wishlist-page .wishlist-card .btn-remove:hover {
    background: #dc3545;
    color: white;
}

/* Empty State */
.wishlist-page .empty-state {
    text-align: center;
    padding: 80px 20px;
}

.wishlist-page .empty-state i {
    font-size: 5rem;
    color: #f093fb;
    margin-bottom: 20px;
    opacity: 0.5;
}

.wishlist-page .empty-state h3 {
    color: #6c757d;
    margin-bottom: 10px;
}

.wishlist-page .empty-state p {
    color: #adb5bd;
    margin-bottom: 25px;
}

.wishlist-page .shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.3);
}

.wishlist-page .shop-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240, 147, 251, 0.4);
    color: white;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .wishlist-page .wishlist-header {
        padding: 30px 0;
    }
    
    .wishlist-page .wishlist-header h1 {
        font-size: 1.8rem;
    }
    
    .wishlist-page .header-icon {
        font-size: 2.5rem;
    }
    
    .wishlist-page .wishlist-stats {
        padding: 15px 20px;
        gap: 15px;
    }
    
    .wishlist-page .wishlist-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .wishlist-page .wishlist-header {
        text-align: center;
        padding: 25px 0;
    }
    
    .wishlist-page .wishlist-header h1 {
        font-size: 1.5rem;
    }
    
    .wishlist-page .header-icon {
        display: none;
    }
    
    .wishlist-page .wishlist-stats {
        flex-direction: column;
        gap: 10px;
        margin-top: -20px;
        padding: 15px;
    }
    
    .wishlist-page .wishlist-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wishlist-page .wishlist-card {
        border-radius: 15px;
    }
    
    .wishlist-page .wishlist-card .product-image {
        height: 180px;
    }
}

/* ==========================================================================
   END USER WISHLIST PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   USER MY ORDERS PAGE - MODERN RESPONSIVE DESIGN
   ==========================================================================*/

/* Header Section */
.my-orders-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 0;
    margin-bottom: 30px;
}

.my-orders-header h2 {
    color: white;
    font-weight: 700;
    margin: 0;
    font-size: 2rem;
}

.my-orders-header p {
    color: rgba(255,255,255,0.85);
    margin: 10px 0 0 0;
}

/* Stats Cards */
.my-orders-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-box {
    background: white;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.stat-box.total h3 { color: #667eea; }
.stat-box.pending h3 { color: #ffc107; }
.stat-box.processing h3 { color: #17a2b8; }
.stat-box.delivered h3 { color: #28a745; }

.stat-box small {
    color: #888;
    font-size: 0.9rem;
}

/* Orders Container - Full Width */
.orders-container {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    max-width: 100%;
}

.orders-container .section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f5f5f5;
}

.orders-container .section-title h4 {
    margin: 0;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.3rem;
}

.orders-container .section-title i {
    color: #667eea;
    margin-right: 10px;
}

/* Order Cards Grid - Compact Horizontal Layout */
.orders-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Order Card - Compact Horizontal */
.order-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 15px 20px;
    gap: 20px;
}

.order-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    border-color: #667eea;
}

.order-card-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

.order-number {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.1rem;
}

.order-date {
    font-size: 0.85rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}

.order-status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.order-status-badge.pending { background: #ffc107; color: #000; }
.order-status-badge.processing { background: #17a2b8; color: white; }
.order-status-badge.shipped { background: #007bff; color: white; }
.order-status-badge.delivered { background: #28a745; color: white; }
.order-status-badge.cancelled { background: #dc3545; color: white; }

/* Order Card Body - Horizontal */
.order-card-body {
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: center;
    min-width: 0;
}

.order-product-img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
    flex-shrink: 0;
}

.order-product-info {
    flex: 1;
    min-width: 0;
}

.order-product-name {
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 4px 0;
    font-size: 0.95rem;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-items-count {
    font-size: 0.8rem;
    color: #888;
}

.order-items-count span {
    color: #667eea;
    margin-left: 5px;
}

/* Order Card Footer - Horizontal */
.order-card-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.order-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #28a745;
}

.payment-status {
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 600;
}

.payment-status.paid { background: #d4edda; color: #155724; }
.payment-status.pending { background: #fff3cd; color: #856404; }

.btn-view-order {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.btn-view-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Empty State */
.orders-empty {
    text-align: center;
    padding: 60px 20px;
}

.orders-empty i {
    font-size: 5rem;
    color: #ddd;
    margin-bottom: 20px;
}

.orders-empty h4 {
    color: #888;
    margin-bottom: 10px;
}

.orders-empty p {
    color: #aaa;
    margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .my-orders-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .my-orders-header {
        padding: 25px 0;
    }
    
    .my-orders-header h2 {
        font-size: 1.5rem;
    }
    
    .orders-container {
        padding: 20px;
        border-radius: 16px;
    }
    
    .order-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
        gap: 12px;
    }
    
    .order-card-header {
        min-width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .order-card-body {
        width: 100%;
    }
    
    .order-card-footer {
        padding: 12px 15px;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .btn-view-order {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .my-orders-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .stat-box h3 {
        font-size: 1.8rem;
    }
    
    .order-number {
        font-size: 1rem;
    }
    
    .order-status-badge {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    
    .order-amount {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   END USER MY ORDERS PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   USER PROFILE PAGE STYLES
   ==========================================================================
   Enhanced profile page with modern card layout, gradient header,
   and improved form styling.
   ========================================================================== */

.profile-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    min-height: 100vh;
    padding-bottom: 50px;
}

/* Profile Header */
.profile-page .profile-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px 0;
    margin-bottom: 30px;
}

.profile-page .profile-header h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.profile-page .profile-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.profile-page .profile-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,0.3);
}

/* Profile Card */
.profile-page .profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-page .profile-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.profile-page .profile-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    border: none;
}

.profile-page .profile-card .card-header h4 {
    font-weight: 600;
    font-size: 1.25rem;
}

.profile-page .profile-card .card-body {
    padding: 30px;
}

/* Sidebar Navigation */
.profile-page .sidebar-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    border: none;
}

.profile-page .sidebar-card .card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border: none;
}

.profile-page .sidebar-card .card-header h5 {
    font-weight: 600;
    font-size: 1.1rem;
}

.profile-page .sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-page .sidebar-nav li {
    border-bottom: 1px solid #f1f5f9;
}

.profile-page .sidebar-nav li:last-child {
    border-bottom: none;
}

.profile-page .sidebar-nav a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #64748b;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.profile-page .sidebar-nav a:hover {
    background: #f8fafc;
    color: #667eea;
    padding-left: 25px;
}

.profile-page .sidebar-nav li.active a {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    color: #667eea;
    border-left: 3px solid #667eea;
}

.profile-page .sidebar-nav i {
    width: 24px;
    text-align: center;
    margin-right: 12px;
    font-size: 1rem;
}

/* Form Styling */
.profile-page .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.profile-page .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.profile-page .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: white;
}

.profile-page textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

/* Submit Button */
.profile-page .btn-update {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.profile-page .btn-update:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

/* Stats Row */
.profile-page .profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.profile-page .stat-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease;
}

.profile-page .stat-card:hover {
    transform: translateY(-3px);
}

.profile-page .stat-card h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.profile-page .stat-card small {
    color: #6b7280;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .profile-page .profile-header {
        padding: 30px 0;
    }
    
    .profile-page .profile-header h1 {
        font-size: 1.5rem;
    }
    
    .profile-page .profile-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .profile-page .profile-card .card-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .profile-page {
        padding-bottom: 30px;
    }
    
    .profile-page .profile-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .profile-page .stat-card {
        padding: 15px;
    }
    
    .profile-page .stat-card h4 {
        font-size: 1.4rem;
    }
    
    .profile-page .btn-update {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   END USER PROFILE PAGE STYLES
   ==========================================================================*/

/* ==========================================================================
   ORDER PROGRESS CARD STYLES
   ==========================================================================*/

.order-progress-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.order-progress-card .card-header {
    background: white;
    padding: 12px 15px;
    border-bottom: 1px solid #f8f9fa;
}

.order-progress-card .card-header h4 {
    font-weight: 700;
    color: #2d3748;
    font-size: 1rem;
}

.order-progress-card .card-header i {
    color: #667eea;
}

.order-progress-card .card-body {
    padding: 15px;
}

.order-progress-card .progress {
    height: 12px;
    border-radius: 6px;
    background: #e9ecef;
    margin-bottom: 10px !important;
}

.order-progress-card .progress-bar {
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
}

.order-progress-card .delivery-info {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.order-progress-card .delivery-info i {
    color: #667eea;
}

.order-progress-card .delivery-info strong {
    color: #2d3748;
}

/* Order Timeline Card Styles */
.order-timeline-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
}

.order-timeline-card .card-header {
    background: white;
    padding: 25px 30px;
    border-bottom: 2px solid #f8f9fa;
}

.order-timeline-card .card-header h4 {
    font-weight: 700;
    color: #2d3748;
}

.order-timeline-card .card-header i {
    color: #667eea;
}

.order-timeline-card .card-body {
    padding: 40px 30px;
}

/* Timeline Step Modern Styles */
.timeline-step-modern {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.timeline-step-modern .timeline-connector {
    position: absolute;
    left: 25px;
    top: 50px;
    width: 2px;
    height: calc(100% + 10px);
}

.timeline-step-modern .timeline-connector.completed {
    background: #10b981;
}

.timeline-step-modern .timeline-connector.pending {
    background: #e2e8f0;
}

.timeline-icon-modern {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    border: 3px solid;
}

.timeline-icon-modern.completed {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-color: #0ea5e9;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.timeline-icon-modern.pending {
    background: #f7fafc;
    border-color: #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.timeline-icon-modern.active {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border-color: #0ea5e9;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
    animation: pulse-icon 2s infinite;
}

@keyframes pulse-icon {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6); }
    100% { transform: scale(1); box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4); }
}

.timeline-icon-modern i {
    font-size: 1.1rem;
}

.timeline-icon-modern.completed i {
    color: white;
}

.timeline-icon-modern.pending i {
    color: #a0aec0;
}

.timeline-content-modern {
    flex: 1;
    padding: 15px 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #e2e8f0;
    transition: all 0.3s ease;
}

.timeline-content-modern.active {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border-left: 4px solid #0ea5e9;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.15);
}

.timeline-content-modern h6 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.timeline-content-modern h6.completed {
    color: #1e293b;
}

.timeline-content-modern h6.pending {
    color: #94a3b8;
}

.timeline-content-modern h6.active {
    color: #0ea5e9;
}

.timeline-content-modern .current-badge {
    background: #667eea;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    margin-left: 10px;
}

.timeline-content-modern p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.timeline-content-modern p.completed {
    color: #10b981;
    font-weight: 500;
}

.timeline-content-modern p.pending {
    color: #94a3b8;
}

.timeline-content-modern p.active {
    color: #0ea5e9;
    font-weight: 500;
}

.timeline-content-modern .order-date {
    color: #a0aec0;
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Mobile Responsive Timeline */
@media (max-width: 768px) {
    .order-timeline-card .card-body {
        padding: 20px 15px;
    }
    
    .timeline-step-modern {
        margin-bottom: 20px;
    }
    
    .timeline-icon-modern {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .timeline-icon-modern i {
        font-size: 0.9rem;
    }
    
    .timeline-step-modern .timeline-connector {
        left: 20px;
        top: 40px;
        width: 2px;
        height: calc(100% + 10px);
    }
    
    .timeline-content-modern {
        padding: 12px 15px;
        border-radius: 10px;
    }
    
    .timeline-content-modern h6 {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .timeline-content-modern p {
        font-size: 0.85rem;
    }
    
    .timeline-content-modern .order-date {
        font-size: 0.75rem;
        margin-top: 3px;
    }
}

@media (max-width: 576px) {
    .order-timeline-card .card-body {
        padding: 15px 12px;
    }
    
    .timeline-step-modern {
        margin-bottom: 15px;
    }
    
    .timeline-icon-modern {
        width: 36px;
        height: 36px;
        margin-right: 12px;
        border-width: 2px;
    }
    
    .timeline-icon-modern i {
        font-size: 0.8rem;
    }
    
    .timeline-step-modern .timeline-connector {
        left: 18px;
        top: 36px;
        width: 2px;
    }
    
    .timeline-content-modern {
        padding: 10px 12px;
        border-radius: 8px;
        border-left-width: 3px;
    }
    
    .timeline-content-modern.active {
        border-left-width: 3px;
    }
    
    .timeline-content-modern h6 {
        font-size: 0.95rem;
    }
    
    .timeline-content-modern p {
        font-size: 0.8rem;
    }
    
    .timeline-content-modern .order-date {
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   MODERN EMPTY STATE / COMING SOON MODAL STYLES
   ========================================================================== */

.orders-empty-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    padding: 20px;
}

.empty-state-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(102, 126, 234, 0.15),
        0 8px 25px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 100%;
    text-align: center;
    overflow: hidden;
    position: relative;
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Animated Illustration */
.empty-illustration {
    position: relative;
    padding: 50px 20px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.floating-box {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: boxPulse 2s ease-in-out infinite;
}

@keyframes boxPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.floating-box i {
    font-size: 50px;
    color: white;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    font-size: 20px;
    animation: float 3s ease-in-out infinite;
}

.float-item:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.float-item:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* Content Section */
.empty-content {
    padding: 35px 30px 30px;
}

.empty-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.empty-subtitle {
    font-size: 15px;
    color: #718096;
    margin-bottom: 15px;
}

.empty-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.empty-description {
    font-size: 14px;
    color: #a0aec0;
    line-height: 1.7;
    margin-bottom: 25px;
    padding: 0 10px;
}

/* CTA Buttons */
.empty-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-primary-modern,
.btn-secondary-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
}

.btn-secondary-modern {
    background: #edf2f7;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.btn-secondary-modern:hover {
    background: #e2e8f0;
    color: #2d3748;
    transform: translateY(-2px);
}

/* Decorative Wave */
.empty-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.empty-wave svg {
    width: 100%;
    height: 60px;
}

/* Responsive Design */
/* Responsive - Mobile First for Orders Empty State */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .orders-empty-modern {
        padding: 10px 0;
        min-height: auto;
        width: 100%;
    }
    
    .empty-state-card {
        border-radius: 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .empty-illustration {
        padding: 35px 15px 25px;
    }
    
    .floating-box {
        width: 70px;
        height: 70px;
    }
    
    .floating-box i {
        font-size: 32px;
    }
    
    .float-item {
        font-size: 16px;
    }
    
    .empty-content {
        padding: 25px 15px 20px;
    }
    
    .empty-title {
        font-size: 22px;
    }
    
    .empty-subtitle {
        font-size: 13px;
    }
    
    .empty-divider {
        width: 50px;
        height: 3px;
        margin-bottom: 15px;
    }
    
    .empty-description {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .empty-actions {
        gap: 10px;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        padding: 12px 18px;
        font-size: 13px;
        width: 100%;
    }
    
    .empty-wave svg {
        height: 40px;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .orders-empty-modern {
        padding: 15px;
    }
    
    .empty-state-card {
        max-width: 420px;
    }
    
    .empty-illustration {
        padding: 40px 20px 30px;
    }
    
    .floating-box {
        width: 85px;
        height: 85px;
    }
    
    .floating-box i {
        font-size: 40px;
    }
    
    .empty-content {
        padding: 30px 25px 25px;
    }
    
    .empty-title {
        font-size: 26px;
    }
    
    .empty-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        flex: 0 0 auto;
        min-width: 140px;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .orders-empty-modern {
        padding: 20px;
    }
    
    .empty-state-card {
        max-width: 480px;
    }
    
    .empty-content {
        padding: 35px 30px 30px;
    }
    
    .empty-title {
        font-size: 28px;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .orders-empty-modern {
        padding: 30px;
        min-height: 550px;
    }
    
    .empty-state-card {
        max-width: 500px;
    }
    
    .empty-illustration {
        padding: 60px 25px 40px;
    }
    
    .floating-box {
        width: 120px;
        height: 120px;
    }
    
    .floating-box i {
        font-size: 60px;
    }
    
    .float-item {
        font-size: 24px;
    }
    
    .empty-content {
        padding: 40px 40px 35px;
    }
    
    .empty-title {
        font-size: 32px;
    }
    
    .empty-subtitle {
        font-size: 16px;
    }
    
    .empty-divider {
        width: 70px;
        height: 4px;
    }
    
    .empty-description {
        font-size: 15px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        padding: 16px 30px;
        font-size: 15px;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .empty-state-card {
        max-width: 520px;
    }
    
    .empty-content {
        padding: 45px 45px 40px;
    }
}

/* Container width control */
.orders-empty-modern {
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================================================
   SHOP PAGE - COMING SOON / EMPTY PRODUCTS STYLES
   ========================================================================== */

.coming-soon-shop,
.coming-soon-fabrics,
.coming-soon-stitching,
.coming-soon-gallery {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    position: relative;
    margin: 0;
    animation: shopCardFloat 5s ease-in-out infinite;
    width: 100%;
    max-width: 100%;
}

@keyframes shopCardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Header Section */
.coming-soon-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
    padding: 50px 30px 40px;
    text-align: center;
    position: relative;
}

.coming-soon-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.icon-pulse {
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulseShop 2.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes iconPulseShop {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }
}

.icon-pulse i {
    font-size: 55px;
    color: white;
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.7);
    font-size: 22px;
    animation: floatIconShop 3s ease-in-out infinite;
}

.float-icon:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-icon:nth-child(2) {
    top: 15%;
    right: 12%;
    animation-delay: 0.7s;
}

.float-icon:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 1.4s;
}

.float-icon:nth-child(4) {
    bottom: 15%;
    right: 10%;
    animation-delay: 2.1s;
}

@keyframes floatIconShop {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
    }
    50% { 
        transform: translateY(-20px) rotate(15deg) scale(1.1);
    }
}

/* Title & Badge */
.coming-soon-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Body Section */
.coming-soon-body {
    padding: 40px 35px 35px;
    text-align: center;
}

.coming-soon-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
    border-radius: 2px;
    margin: 0 auto 25px;
}

.coming-soon-heading {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
}

.coming-soon-text {
    font-size: 15px;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-price {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Features Grid */
.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 400px;
    margin: 0 auto 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #f093fb;
}

.feature-item i {
    color: #48bb78;
    font-size: 16px;
}

/* Launch Info */
.launch-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    border: 1px dashed #f5576c;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #744210;
    font-weight: 500;
}

.launch-info i {
    color: #f5576c;
    font-size: 20px;
    animation: rocketBounce 1.5s ease-in-out infinite;
}

@keyframes rocketBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* CTA Buttons */
.coming-soon-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-coming-primary,
.btn-coming-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-coming-primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn-coming-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.5);
    color: white;
}

.btn-coming-secondary {
    background: #edf2f7;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.btn-coming-secondary:hover {
    background: #e2e8f0;
    color: #2d3748;
    transform: translateY(-3px);
}

/* Decorative Wave */
.coming-soon-wave {
    line-height: 0;
}

.coming-soon-wave svg {
    width: 100%;
    height: 80px;
}

/* Responsive - Mobile First Approach */

/* Extra Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
    .coming-soon-shop,
    .coming-soon-fabrics,
    .coming-soon-stitching,
    .coming-soon-gallery {
        margin: 10px 0;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(240, 147, 251, 0.1);
        width: 100%;
        max-width: 100%;
    }
    
    .coming-soon-header {
        padding: 30px 15px 25px;
    }
    
    .icon-pulse {
        width: 75px;
        height: 75px;
    }
    
    .icon-pulse i {
        font-size: 38px;
    }
    
    .float-icon {
        font-size: 16px;
    }
    
    .coming-soon-title {
        font-size: 24px;
    }
    
    .coming-soon-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .coming-soon-body {
        padding: 25px 15px 20px;
    }
    
    .coming-soon-divider {
        width: 60px;
        height: 3px;
    }
    
    .coming-soon-heading {
        font-size: 18px;
    }
    
    .coming-soon-text {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .coming-soon-features {
        grid-template-columns: 1fr;
        gap: 8px;
        max-width: 100%;
    }
    
    .feature-item {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .launch-info {
        flex-direction: column;
        text-align: center;
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .launch-info i {
        font-size: 18px;
    }
    
    .coming-soon-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-coming-primary,
    .btn-coming-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .coming-soon-wave svg {
        height: 50px;
    }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .coming-soon-shop,
    .coming-soon-fabrics,
    .coming-soon-stitching,
    .coming-soon-gallery {
        margin: 15px;
        border-radius: 20px;
    }
    
    .coming-soon-header {
        padding: 40px 25px 35px;
    }
    
    .icon-pulse {
        width: 90px;
        height: 90px;
    }
    
    .icon-pulse i {
        font-size: 45px;
    }
    
    .coming-soon-title {
        font-size: 28px;
    }
    
    .coming-soon-body {
        padding: 30px 25px 25px;
    }
    
    .coming-soon-heading {
        font-size: 20px;
    }
    
    .coming-soon-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .coming-soon-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .btn-coming-primary,
    .btn-coming-secondary {
        flex: 1;
        min-width: 140px;
    }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .coming-soon-shop,
    .coming-soon-fabrics,
    .coming-soon-stitching,
    .coming-soon-gallery {
        margin: 20px auto;
        max-width: 90%;
    }
    
    .coming-soon-header {
        padding: 45px 30px 40px;
    }
    
    .coming-soon-title {
        font-size: 32px;
    }
    
    .coming-soon-body {
        padding: 35px 30px 30px;
    }
    
    .coming-soon-heading {
        font-size: 22px;
    }
    
    .coming-soon-features {
        max-width: 450px;
    }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .coming-soon-shop,
    .coming-soon-fabrics,
    .coming-soon-stitching,
    .coming-soon-gallery {
        margin: 25px auto;
        max-width: 800px;
    }
    
    .coming-soon-header {
        padding: 55px 40px 45px;
    }
    
    .icon-pulse {
        width: 120px;
        height: 120px;
    }
    
    .icon-pulse i {
        font-size: 60px;
    }
    
    .coming-soon-title {
        font-size: 38px;
    }
    
    .coming-soon-badge {
        font-size: 15px;
        padding: 10px 25px;
    }
    
    .coming-soon-body {
        padding: 45px 40px 35px;
    }
    
    .coming-soon-divider {
        width: 100px;
    }
    
    .coming-soon-heading {
        font-size: 26px;
    }
    
    .coming-soon-text {
        font-size: 16px;
        max-width: 550px;
    }
    
    .coming-soon-features {
        grid-template-columns: repeat(4, 1fr);
        max-width: 100%;
        gap: 15px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .feature-item i {
        font-size: 20px;
    }
    
    .launch-info {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }
    
    .coming-soon-actions {
        gap: 20px;
    }
    
    .btn-coming-primary,
    .btn-coming-secondary {
        padding: 16px 35px;
        font-size: 16px;
    }
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .coming-soon-shop,
    .coming-soon-fabrics,
    .coming-soon-stitching,
    .coming-soon-gallery {
        max-width: 850px;
    }
    
    .coming-soon-body {
        padding: 50px 50px 40px;
    }
}

/* Container width control for all devices */
.coming-soon-shop,
.coming-soon-fabrics,
.coming-soon-stitching,
.coming-soon-gallery {
    width: 100%;
    box-sizing: border-box;
}

/* ==========================================================================
   END ORDER PROGRESS CARD STYLES
   ==========================================================================*/