/*
 * TI Jewelry Theme - OpenCart 3.0.8.0
 * Theme Name: ti_jewelry
 * Version: 1.1
 * Author: TI Jewelry Team
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary-pink: #FF1493;
  --secondary-dark-pink: #E91E63;
  --accent-gold: #D4AF37;
  --accent-rose-gold: #C3996B;
  --white: #FFFFFF;
  --off-white: #F9F9F9;
  --light-gray: #F5F5F5;
  --dark-text: #222222;
  --light-text: #666666;
  --error: #DC3545;
  --font-logo: 'Great Vibes', cursive;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--dark-text);
  background-color: var(--white);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark-text);
  margin-top: 0;
}

a {
  color: var(--primary-pink);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-dark-pink);
  text-decoration: none;
}

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

.container {
  max-width: 1280px;
}

.cursive {
  font-family: var(--font-logo);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background-color: var(--secondary-dark-pink);
  padding: 8px 0;
}

.top-bar-message {
  color: var(--white);
  font-size: 12px;
  margin: 0;
  text-align: center;
}

/* ============================================
   HEADER
   ============================================ */
header {
  padding: 20px 0;
  background-color: var(--white);
}

.header-row {
  display: flex;
  align-items: center;
}

#logo {
  text-align: center;
}

.logo-text {
  font-family: var(--font-logo);
  font-size: 48px;
  color: var(--primary-pink);
  line-height: 1;
}

.search-wrapper {
  position: relative;
}

.search-wrapper input[type="text"] {
  width: 100%;
  padding: 12px 45px 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-size: 14px;
  transition: var(--transition);
}

.search-wrapper input[type="text"]:focus {
  border-color: var(--primary-pink);
  outline: none;
}

.search-wrapper button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary-pink);
  font-size: 18px;
  cursor: pointer;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icons a {
  color: var(--dark-text);
  font-size: 20px;
  position: relative;
  transition: var(--transition);
}

.header-icons a:hover {
  color: var(--primary-pink);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-pink);
  color: var(--white);
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background-color: var(--white);
  border: none;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 0;
  border-radius: 0;
}

.navbar-nav {
  float: none;
  text-align: center;
}

.navbar-nav > li {
  float: none;
  display: inline-block;
}

.navbar-nav > li > a {
  color: var(--dark-text);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 14px;
  padding: 15px 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-nav > li > a:hover,
.navbar-nav > li > a:focus,
.navbar-nav > .open > a,
.navbar-nav > .open > a:hover,
.navbar-nav > .open > a:focus {
  background-color: transparent;
  color: var(--primary-pink);
}

.navbar-nav > li.home-link > a {
  color: var(--primary-pink);
}

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow);
  border-radius: 0;
  padding: 15px;
  min-width: 200px;
}

.dropdown-menu > li > a {
  padding: 8px 15px;
  color: var(--dark-text);
  font-size: 13px;
}

.dropdown-menu > li > a:hover {
  background-color: var(--light-gray);
  color: var(--primary-pink);
}

.see-all {
  display: block;
  text-align: center;
  padding: 10px;
  background-color: var(--light-gray);
  margin-top: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   MOBILE SEARCH
   ============================================ */
.mobile-search {
  padding: 15px 0;
  background-color: var(--light-gray);
  display: none;
}

.mobile-search input[type="text"] {
  width: 100%;
  padding: 12px 45px 12px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 30px;
  font-size: 14px;
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-banner {
  position: relative;
  margin-bottom: 60px;
}

.hero-slide {
  height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-slide.default-slide {
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
  color: var(--white);
}

.hero-subtitle {
  font-family: var(--font-logo);
  font-size: 72px;
  color: var(--primary-pink);
  margin-bottom: 10px;
}

.hero-discount {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.hero-text {
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.btn-hero {
  background-color: var(--primary-pink);
  color: var(--white);
  padding: 15px 40px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  border: 2px solid var(--primary-pink);
  transition: var(--transition);
}

.btn-hero:hover {
  background-color: transparent;
  color: var(--primary-pink);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: var(--dark-text);
}

.section-description {
  color: var(--light-text);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* ============================================
   SHOP BY CATEGORY
   ============================================ */
.shop-by-category {
  padding: 60px 0;
}

.category-row {
  margin: 0 -10px;
}

.category-item {
  padding: 10px;
  margin-bottom: 20px;
}

.category-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-item:hover .category-image img {
  transform: scale(1.03);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.category-item:hover .category-overlay {
  background: rgba(255, 20, 147, 0.7);
}

.category-name {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   NEW ARRIVAL
   ============================================ */
.new-arrival {
  padding: 60px 0;
  background-color: var(--off-white);
}

/* ============================================
   BEST DEALS
   ============================================ */
.best-deals {
  padding: 60px 0;
}

.deals-row {
  margin: 0 -10px;
}

.deal-card {
  padding: 10px;
  margin-bottom: 20px;
}

.deal-card.large {
  height: calc(100% - 20px);
}

.deal-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
}

.deal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.deal-card:hover .deal-image img {
  transform: scale(1.03);
}

.deal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.deal-card:hover .deal-overlay {
  background: rgba(255, 20, 147, 0.5);
}

.deal-price {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  text-align: center;
  line-height: 1.4;
}

.deal-price strong {
  font-size: 48px;
  font-weight: 700;
  display: block;
}

/* ============================================
   VIDEO CAROUSEL
   ============================================ */
.best-products-video {
  padding: 60px 0;
  background-color: var(--off-white);
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.btn-play {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-play i {
  color: var(--primary-pink);
  font-size: 20px;
  margin-left: 5px;
}

.btn-play:hover {
  background-color: var(--primary-pink);
}

.btn-play:hover i {
  color: var(--white);
}

/* ============================================
   PRODUCT THUMB
   ============================================ */
.product-grid {
  margin: 0 -10px;
}

.product-thumb {
  margin-bottom: 30px;
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-thumb:hover {
  transform: scale(1.03);
}

.product-thumb .image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.product-thumb .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-thumb:hover .image img {
  transform: scale(1.05);
}

.product-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition);
}

.product-thumb:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.btn-wishlist,
.btn-quickview {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.btn-wishlist i,
.btn-quickview i {
  color: var(--dark-text);
  font-size: 16px;
}

.btn-wishlist:hover,
.btn-quickview:hover {
  background-color: var(--primary-pink);
}

.btn-wishlist:hover i,
.btn-quickview:hover i {
  color: var(--white);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 15px;
  background-color: var(--primary-pink);
  color: var(--white);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-thumb .caption {
  padding: 20px;
}

.product-thumb .caption h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.product-thumb .caption h4 a {
  color: var(--dark-text);
}

.product-thumb .caption h4 a:hover {
  color: var(--primary-pink);
}

.product-thumb .description {
  font-size: 13px;
  color: var(--light-text);
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-thumb .price {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.price-old {
  color: #999;
  text-decoration: line-through;
  margin-right: 10px;
  font-weight: 400;
}

.price-new {
  color: var(--primary-pink);
}

/* ============================================
   BEST SELLING
   ============================================ */
.best-selling {
  padding: 60px 0;
}

.btn-view-all {
  background-color: var(--primary-pink);
  color: var(--white);
  padding: 12px 40px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  border: 2px solid var(--primary-pink);
  margin-top: 20px;
  transition: var(--transition);
}

.btn-view-all:hover {
  background-color: transparent;
  color: var(--primary-pink);
}

/* ============================================
   WALL OF LOVE (TESTIMONIALS)
   ============================================ */
.wall-of-love {
  padding: 60px 0;
  background-color: var(--off-white);
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 25px;
  box-shadow: var(--shadow);
  margin: 10px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 16px;
  margin-bottom: 3px;
}

.testimonial-role,
.testimonial-company {
  font-size: 12px;
  color: var(--light-text);
  margin-bottom: 0;
}

.testimonial-rating {
  margin-bottom: 15px;
}

.testimonial-rating i {
  color: var(--accent-gold);
  font-size: 14px;
}

.testimonial-content p {
  font-size: 14px;
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background-color: var(--primary-pink);
  color: var(--white);
  padding: 60px 0 0;
}

footer h5 {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

footer ul li a:hover {
  color: var(--white);
}

.newsletter-form .input-group {
  display: flex;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 0;
  font-size: 13px;
}

.newsletter-form input[type="email"]::placeholder {
  color: #999;
}

.btn-subscribe {
  background-color: var(--secondary-dark-pink);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-subscribe:hover {
  background-color: var(--dark-text);
}

.newsletter-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
  margin-top: 40px;
}

.footer-logo .logo-text {
  color: var(--white);
  font-size: 36px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.social-links li a {
  color: var(--white);
  font-size: 18px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.social-links li a:hover {
  background-color: var(--white);
  color: var(--primary-pink);
}

/* ============================================
   CATEGORY PAGE
   ============================================ */
.category-banner {
  margin-bottom: 30px;
}

.category-banner-inner {
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.category-banner-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.category-title {
  position: relative;
  z-index: 1;
  font-size: 72px;
  color: var(--white);
}

.breadcrumb {
  background: none;
  padding: 15px 0;
  margin-bottom: 30px;
}

.breadcrumb li a {
  color: var(--light-text);
}

.breadcrumb li:last-child a {
  color: var(--dark-text);
  font-weight: 500;
}

/* Filter Sidebar */
.filter-sidebar {
  background-color: var(--white);
  padding: 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.filter-title {
  font-size: 18px;
  margin-bottom: 20px;
}

.filter-group {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f0f0;
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-group h5 {
  font-size: 14px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-list li {
  margin-bottom: 10px;
}

.filter-list li a {
  color: var(--light-text);
  font-size: 13px;
}

.filter-list li a:hover {
  color: var(--primary-pink);
}

.filter-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.filter-checkbox input {
  display: none;
}

.filter-checkbox span {
  position: relative;
  padding-left: 28px;
  font-size: 13px;
  color: var(--light-text);
}

.filter-checkbox span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 3px;
  transition: var(--transition);
}

.filter-checkbox input:checked + span::before {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
}

.filter-checkbox input:checked + span::after {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 11px;
}

/* Filter Tags */
.filter-tags-bar {
  margin-bottom: 30px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-tag {
  padding: 8px 20px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 13px;
  color: var(--light-text);
  transition: var(--transition);
}

.filter-tag:hover,
.filter-tag.active {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
  color: var(--white);
}

.sort-dropdown {
  display: flex;
  align-items: center;
}

.sort-label {
  margin-right: 10px;
  font-size: 13px;
  color: var(--light-text);
}

.sort-dropdown select {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 15px;
  font-size: 13px;
}

.btn-load-more {
  background-color: transparent;
  color: var(--primary-pink);
  padding: 12px 40px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--primary-pink);
  margin-top: 30px;
  transition: var(--transition);
}

.btn-load-more:hover {
  background-color: var(--primary-pink);
  color: var(--white);
}

/* Mobile Filter */
.mobile-filter-bar {
  margin-bottom: 20px;
}

.btn-filter {
  background-color: var(--white);
  border: 1px solid #ddd;
  padding: 10px 20px;
  font-size: 13px;
}

.mobile-filter-panel {
  background-color: var(--white);
  padding: 20px;
  margin-top: 15px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-row {
  margin-bottom: 60px;
}

.product-images {
  position: sticky;
  top: 20px;
}

.main-image-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.main-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--light-gray);
}

.main-image img {
  width: 100%;
  height: auto;
}

.btn-zoom {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.btn-zoom i {
  color: var(--dark-text);
  font-size: 16px;
}

.btn-zoom:hover {
  background-color: var(--primary-pink);
}

.btn-zoom:hover i {
  color: var(--white);
}

.thumbnail-images {
  margin-top: 15px;
}

.thumbnail-images .thumbnail {
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.thumbnail-images .thumbnail.active,
.thumbnail-images .thumbnail:hover {
  border-color: var(--primary-pink);
}

.thumbnail-images .thumbnail img {
  width: 100%;
  height: auto;
}

/* Product Info */
.product-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.product-short-description {
  color: var(--light-text);
  margin-bottom: 25px;
  line-height: 1.8;
}

.detail-information {
  margin-bottom: 25px;
}

.detail-information h4 {
  font-size: 16px;
  margin-bottom: 15px;
}

.product-attributes li {
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--light-text);
}

.product-attributes li i {
  color: var(--primary-pink);
  margin-right: 8px;
}

/* Color Swatches */
.color-swatches {
  margin-bottom: 25px;
}

.color-swatches label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.swatch-group {
  display: flex;
  gap: 10px;
}

.color-swatch {
  cursor: pointer;
}

.color-swatch input {
  display: none;
}

.color-swatch .swatch {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: var(--transition);
}

.color-swatch .swatch.gold {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
}

.color-swatch .swatch.white-gold {
  background: linear-gradient(135deg, #F5F5F5 0%, #C0C0C0 100%);
}

.color-swatch .swatch.rose-gold {
  background: linear-gradient(135deg, #E8B4B8 0%, #C3996B 100%);
}

.color-swatch input:checked + .swatch {
  border-color: var(--primary-pink);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--primary-pink);
}

/* Product Price */
.product-price-wrapper {
  margin-bottom: 25px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
}

.product-price .price-old {
  font-size: 20px;
}

/* Product Actions */
.product-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.quantity-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.btn-quantity {
  width: 40px;
  height: 45px;
  background-color: var(--white);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-quantity:hover {
  background-color: var(--light-gray);
}

.btn-quantity i {
  color: var(--dark-text);
  font-size: 12px;
}

.quantity-wrapper input {
  width: 50px;
  height: 45px;
  border: none;
  text-align: center;
  font-size: 14px;
}

.btn-add-cart {
  background-color: var(--white);
  color: var(--primary-pink);
  padding: 12px 40px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--primary-pink);
  transition: var(--transition);
}

.btn-add-cart:hover {
  background-color: var(--primary-pink);
  color: var(--white);
}

.btn-buy-now {
  background-color: var(--primary-pink);
  color: var(--white);
  padding: 12px 40px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--primary-pink);
  transition: var(--transition);
}

.btn-buy-now:hover {
  background-color: var(--secondary-dark-pink);
  border-color: var(--secondary-dark-pink);
}

/* Product Benefits */
.product-benefits {
  margin-bottom: 25px;
  padding: 15px 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}

.benefit-item {
  font-size: 13px;
  color: var(--light-text);
}

.benefit-item i {
  color: var(--primary-pink);
  margin-right: 8px;
}

/* Membership Banner */
.membership-banner {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 8px;
}

.membership-banner h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.membership-banner p {
  font-size: 13px;
  color: var(--light-text);
  margin-bottom: 0;
}

.membership-banner a {
  color: var(--primary-pink);
  font-weight: 600;
}

/* Frequently Bought Together */
.frequently-bought {
  padding: 60px 0;
  background-color: var(--off-white);
}

.bought-together-item {
  position: relative;
}

.checkbox-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

.checkbox-inline {
  cursor: pointer;
}

.checkbox-inline input {
  display: none;
}

.checkbox-inline .checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--primary-pink);
  border-radius: 50%;
  color: var(--white);
  font-size: 12px;
}

.checkbox-inline input:not(:checked) + .checkmark {
  background-color: #ddd;
}

.total-price-wrapper {
  margin: 30px 0;
  font-size: 18px;
}

.total-price-wrapper .total-label {
  margin-right: 15px;
  font-weight: 600;
}

.total-price-wrapper .price-old {
  margin-right: 15px;
}

.total-price-wrapper .price-new {
  font-size: 24px;
  font-weight: 700;
}

/* Related Products */
.related-products {
  padding: 60px 0;
}

/* ============================================
   OWL CAROUSEL CUSTOMIZATION
   ============================================ */
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
}

.owl-carousel .owl-nav button {
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: var(--white) !important;
  border-radius: 50% !important;
  box-shadow: var(--shadow);
  pointer-events: auto;
  transition: var(--transition);
}

.owl-carousel .owl-nav button:hover {
  background-color: var(--primary-pink) !important;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -20px;
}

.owl-carousel .owl-nav button i,
.owl-carousel .owl-nav button span {
  color: var(--dark-text);
  font-size: 18px;
}

.owl-carousel .owl-nav button:hover i,
.owl-carousel .owl-nav button:hover span {
  color: var(--white);
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-carousel .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
  margin: 0 5px;
  transition: var(--transition);
}

.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--primary-pink);
}

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: var(--white);
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transition: var(--transition);
  overflow-y: auto;
}

.cart-sidebar.open {
  right: 0;
}

.cart-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.cart-sidebar-header h4 {
  margin: 0;
  font-size: 18px;
}

.close-cart {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--dark-text);
}

.cart-sidebar-content {
  padding: 20px;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-pink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary-dark-pink);
  color: var(--white);
}

/* ============================================
   MODAL
   ============================================ */
.modal-content {
  border-radius: 8px;
  border: none;
}

.modal-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px;
}

.modal-title {
  font-size: 18px;
}

.modal-body {
  padding: 20px;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  margin: 0;
}

.pagination > li > a,
.pagination > li > span {
  color: var(--dark-text);
  border: 1px solid #ddd;
  padding: 8px 15px;
  transition: var(--transition);
}

.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
  color: var(--white);
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
}

/* ============================================
   ALERTS
   ============================================ */
.alert {
  border-radius: 8px;
  padding: 15px 20px;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-control {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px 15px;
  font-size: 14px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-pink);
  box-shadow: none;
}

.btn {
  border-radius: 4px;
  padding: 10px 25px;
  font-size: 14px;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-pink);
  border-color: var(--primary-pink);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--secondary-dark-pink);
  border-color: var(--secondary-dark-pink);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 991px) {
  .hero-slide {
    height: 400px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 54px;
  }
  
  .hero-discount {
    font-size: 48px;
  }
  
  .category-title {
    font-size: 54px;
  }
  
  .product-title {
    font-size: 24px;
  }
  
  .cart-sidebar {
    width: 100%;
    right: -100%;
  }
}

@media (max-width: 767px) {
  .top-bar-message {
    font-size: 11px;
  }
  
  .header-icons {
    gap: 15px;
  }
  
  .header-icons a {
    font-size: 18px;
  }
  
  .mobile-search {
    display: block;
  }
  
  .hero-slide {
    height: 350px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 42px;
  }
  
  .hero-discount {
    font-size: 36px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .category-title {
    font-size: 42px;
  }
  
  .product-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-add-cart,
  .btn-buy-now {
    width: 100%;
  }
  
  footer .col-xs-6 {
    margin-bottom: 30px;
  }
  
  .footer-bottom .col-sm-4 {
    text-align: center !important;
    margin-bottom: 15px;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-slide {
    height: 300px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 36px;
  }
  
  .hero-discount {
    font-size: 30px;
  }
  
  .category-title {
    font-size: 36px;
  }
  
  .deal-price strong {
    font-size: 36px;
  }
  
  .owl-carousel .owl-nav button.owl-prev {
    left: 10px;
  }
  
  .owl-carousel .owl-nav button.owl-next {
    right: 10px;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary {
  color: var(--primary-pink);
}

.bg-primary {
  background-color: var(--primary-pink);
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

/* ============================================
   ERROR PAGE
   ============================================ */
.error-page {
  padding: 100px 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-content {
  text-align: center;
}

.error-code {
  font-size: 150px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-pink);
  line-height: 1;
  margin-bottom: 20px;
}

.error-title {
  font-size: 32px;
  margin-bottom: 15px;
  color: var(--dark-text);
}

.error-message {
  font-size: 16px;
  color: var(--light-text);
  margin-bottom: 40px;
}

.error-actions {
  margin-top: 30px;
}

/* ============================================
   INFORMATION PAGE
   ============================================ */
.page-header {
  padding: 60px 0 30px;
  background-color: var(--light-gray);
}

.page-title {
  font-size: 36px;
  margin-bottom: 0;
  color: var(--dark-text);
}

.information-content {
  padding: 60px 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--dark-text);
}

.information-content h2,
.information-content h3,
.information-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.information-content p {
  margin-bottom: 20px;
}

.information-content ul,
.information-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}

.information-content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

/* Responsive Error Page */
@media (max-width: 767px) {
  .error-code {
    font-size: 100px;
  }

  .error-title {
    font-size: 24px;
  }

  .page-title {
    font-size: 28px;
  }
}
