
/* Base Theme Styles */
html {
  background-color: #000000;
  color: #ffffff;
  font-size: 1em;
  line-height: 1.4;
  height: 100%;
}

body {
  background-color: #000000;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Main content area - push footer to bottom */
main, .content-wrapper {
  flex: 1;
}

/* Links */
a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  color: #cccccc;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
}

/* Container fluid for full width */
.container-fluid {
  padding-left: 15px;
  padding-right: 15px;
}

::-moz-selection {
  background: #333333;
  text-shadow: none;
}

::selection {
  background: #333333;
  text-shadow: none;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #333333;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

/* ===== NOTICE BAR STYLES ===== */
.notice-bar {
  background-color: #000000;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 10px 0;
  font-size: 1rem;
}

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

.truck-icon {
  color: #ffffff;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.notice-text {
  color: #ffffff;
  margin: 0;
  font-weight: 400;
}

/* Mobile responsive for notice bar */
@media (max-width: 768px) {
  .notice-bar {
    padding: 8px 0;
    font-size: 0.9rem;
  }
  
  .truck-icon {
    width: 18px;
    height: 18px;
  }
}

/* ===== HEADER STYLES ===== */
.site-header {
  background-color: #000000;
  padding: 20px 0;
  border-bottom: 1px solid #ffffff;
}

.site-logo a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.site-logo img,
.logo-image {
  max-height: 70px;
  width: 300px;
  height: auto;
  display: block;
}

/* Main Navigation */
.main-navigation .nav-menu {
  gap: 2rem;
}

.main-navigation .nav-menu li {
  list-style: none;
  position: relative;
}

.main-navigation .nav-menu a {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.main-navigation .nav-menu a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* Dropdown Menu Styling */
.main-navigation .nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1e1d1d;
  min-width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid #333333;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
  display: block;
}

.main-navigation .nav-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation .nav-menu .sub-menu li {
  width: 100%;
  border-bottom: 1px solid #333333;
}

.main-navigation .nav-menu .sub-menu li:last-child {
  border-bottom: none;
}

.main-navigation .nav-menu .sub-menu a {
  color: #ffffff;
  padding: 12px 20px;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.main-navigation .nav-menu .sub-menu a:hover {
  background-color: #333333;
  color: #ffffff;
  text-decoration: none;
}

/* Parent menu item with children indicator */
.main-navigation .nav-menu .menu-item-has-children > a::after {
  content: '▼';
  font-size: 0.7rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.main-navigation .nav-menu .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* Header Icons */
.header-icons a,
.header-icons span {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.header-icons a:hover {
  color: #cccccc;
}

.cart-count {
  font-size: 0.9rem;
  margin-left: 0.25rem;
}

/* Cart icon specific styling */
.cart-icon {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cart-icon:hover {
  color: #cccccc;
  text-decoration: none;
}

.cart-icon .cart-count {
  color: #ffffff;
  font-weight: 500;
}

.cart-icon:hover .cart-count {
  color: #cccccc;
}

/* Mobile responsive navigation */
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  
  .header-icons {
    font-size: 1.1rem;
  }
  
  .site-header {
    padding: 15px 0;
  }
  
  /* Mobile dropdown adjustments */
  .main-navigation .nav-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: #2a2929;
    margin-left: 1rem;
  }
  
  .main-navigation .nav-menu .menu-item-has-children > a::after {
    content: '+';
    transform: none;
  }
  
  .main-navigation .nav-menu .menu-item-has-children.open > a::after {
    content: '-';
  }
}

/* ===== FOOTER STYLES ===== */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  border-top: 1px solid #ffffff;
  padding: 30px 0;
  margin-top: auto;
}

.footer-main {
  margin-bottom: 1rem;
}

.footer-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-logo-img {
  max-height: 80px;
  width: auto;
}

.footer-address p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Footer Navigation */
.footer-nav ul {
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #cccccc;
}

/* Newsletter and Payment Row */
.footer-newsletter-payment {
  margin-bottom: 1rem;
  padding-top: 1rem;
}

/* Newsletter Section */
.newsletter-section h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-form {
  max-width: 400px;
}

.newsletter-description {
  font-size: 0.8rem;
  color: #cccccc;
  margin-top: 0.5rem;
  line-height: 1.4;
  max-width: none;
  white-space: nowrap;
}

.newsletter-form .form-control {
  background-color: #000000;
  border: 2px solid #ffffff;
  border-radius: 25px;
  color: #ffffff;
  padding: 12px 20px;
  font-size: 0.9rem;
}

.newsletter-form .form-control:focus {
  background-color: #000000;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.2);
}

.newsletter-form .form-control::placeholder {
  color: #cccccc;
}

.newsletter-form .btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
  border-radius: 25px;
  padding: 12px 25px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.newsletter-form .btn-outline-light:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.payment-methods {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.payment-methods .payment-img {
  max-height: 40px;
  width: auto;
}

/* Copyright Row */
.footer-copyright {
  padding-top: 1rem;
}

.footer-copyright p {
  color: #cccccc;
  font-size: 0.9rem;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
  .site-footer {
    padding: 20px 0;
  }
  
  .footer-main {
    margin-bottom: 1.5rem;
  }
  
  .footer-newsletter-payment {
    margin-bottom: 1.5rem;
  }
  
  .footer-newsletter-payment .col-md-6 {
    margin-bottom: 1rem;
  }
  
  .payment-methods {
    text-align: center !important;
  }
  
  .newsletter-form {
    margin-bottom: 1rem;
  }
  
  .newsletter-description {
    white-space: normal;
  }
  
  .payment-methods {
    justify-content: center;
  }
}

/* ===== CONTENT STYLES ===== */
.content-wrapper {
  padding: 0;
}

/* Entry/Post Styles */
.entry-header {
  margin-bottom: 1.5rem;
}

.entry-title {
  color: #ffffff;
  margin-bottom: 1rem;
}

.entry-title a {
  color: #ffffff;
  text-decoration: none;
}

.entry-title a:hover {
  color: #cccccc;
  text-decoration: underline;
}

.entry-meta {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.entry-meta a {
  color: #cccccc;
  text-decoration: none;
}

.entry-meta a:hover {
  color: #ffffff;
}

.entry-content {
  line-height: 1.6;
  margin-bottom: 2rem;
}

.entry-content p {
  margin-bottom: 1rem;
}

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

.entry-footer {
  border-top: 1px solid #333333;
  padding-top: 1rem;
  margin-top: 2rem;
}

.entry-tags {
  color: #cccccc;
  font-size: 0.9rem;
}

.entry-tags a {
  color: #ffffff;
  text-decoration: none;
}

.entry-tags a:hover {
  text-decoration: underline;
}

/* Navigation Styles */
.navigation {
  margin: 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid #333333;
}

.navigation .nav-links a {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border: 1px solid #333333;
  background-color: transparent;
  transition: all 0.3s ease;
}

.navigation .nav-links a:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ===== 404 ERROR PAGE STYLES ===== */
.error-404-section {
  padding: 80px 0;
  background-color: #000000;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-404-content {
  text-align: center;
  color: #ffffff;
}

/* Error Number */
.error-number {
  margin-bottom: 2rem;
}

.error-404 {
  font-size: 8rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.1);
  letter-spacing: -0.05em;
  display: block;
}

/* Error Title */
.error-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Error Description */
.error-description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Search Form */
.error-search {
  margin-bottom: 3rem;
}

.search-input-group {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid #ffffff;
}

.search-field {
  flex: 1;
  padding: 15px 25px;
  border: none;
  background-color: #000000;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
}

.search-field::placeholder {
  color: #cccccc;
}

.search-submit {
  background-color: #ffffff;
  color: #000000;
  border: none;
  padding: 15px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.search-submit:hover {
  background-color: #cccccc;
}

/* Navigation Buttons */
.error-navigation {
  margin-bottom: 3rem;
}

.btn-home,
.btn-shop {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 30px;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.btn-home:hover,
.btn-shop:hover {
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

.btn-home i,
.btn-shop i {
  margin-right: 8px;
}

/* Popular Categories */
.popular-categories {
  margin-top: 2rem;
}

.popular-categories h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.category-link {
  display: inline-block;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #333333;
  border-radius: 20px;
  padding: 8px 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.category-link:hover {
  background-color: #333333;
  color: #ffffff;
  text-decoration: none;
  border-color: #ffffff;
}

/* Mobile Responsive for 404 Page */
@media (max-width: 768px) {
  .error-404-section {
    padding: 60px 0;
  }
  
  .error-404 {
    font-size: 5rem;
  }
  
  .error-title {
    font-size: 2rem;
  }
  
  .error-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .error-description br {
    display: none;
  }
  
  .search-input-group {
    max-width: 100%;
    margin: 0 20px;
  }
  
  .btn-home,
  .btn-shop {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
  
  .category-links {
    gap: 0.5rem;
  }
  
  .category-link {
    font-size: 0.8rem;
    padding: 6px 15px;
  }
}

@media (max-width: 576px) {
  .error-404 {
    font-size: 4rem;
  }
  
  .error-title {
    font-size: 1.5rem;
  }
}

/* Form Styles */
.form-control {
  background-color: #333333;
  border: 1px solid #555555;
  color: #ffffff;
}

.form-control:focus {
  background-color: #333333;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.form-control::placeholder {
  color: #cccccc;
}

.btn-primary {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #000000;
}

.btn-primary:hover {
  background-color: #cccccc;
  border-color: #cccccc;
  color: #000000;
}

/* ===== HOME PAGE HERO VIDEO SECTION ===== */
.hero-video-section {
  position: relative;
  width: 100%;
  background-color: #000000;
}

.video-container {
  position: relative;
  width: 100%;
}

.video-wrapper {
  position: relative;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.3) 100%);
}

.overlay-content {
  padding-bottom: 20%;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.btn-shop-now {
  display: inline-block;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 40px;
  padding: 12px 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-shadow: none;
}

.btn-shop-now:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Home Page Content */
.home-content {
  padding: 3rem 0;
}

.page-content {
  margin: 0 auto;
}

/* ===== CATEGORIES SECTION ===== */
.categories-section {
  padding: 60px 0;
  background-color: #000000;
}

.categories-section .row {
  border: 1px solid #ffffff;
}

.category-item {
  border-right: 1px solid #ffffff;
  position: relative;
}

.category-item:last-child {
  border-right: none;
}

.category-link {
  display: block;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.category-link:hover {
  color: #cccccc;
  text-decoration: none;
  transform: translateY(-2px);
}

.category-content {
  padding: 30px;
  text-align: center;
  height: 100%;
}

.category-image {
  margin-bottom: 2rem;
}

.category-image img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}

.category-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
}

/* Mobile responsive for categories section */
@media (max-width: 768px) {
  .categories-section {
    padding: 40px 0;
  }
  
  .category-item {
    border-right: none;
    border-bottom: 1px solid #ffffff;
  }
  
  .category-item:last-child {
    border-bottom: none;
  }
  
  .category-content {
    padding: 20px;
  }
  
  .category-title {
    font-size: 1.25rem;
  }
  
  .category-image img {
    max-height: 150px;
  }
}

/* ===== SHOP NOW SECTION ===== */
.shop-now-section {
  padding: 40px 0;
  background-color: #000000;
  text-align: center;
}

/* ===== CONSULTATION SERVICE SECTION ===== */
.consultation-section {
  padding: 60px 0;
  background-color: #000000;
}

.consultation-content {
  border: 1px solid #ffffff;
  padding: 30px;
  text-align: center;
}

.consultation-title {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* Mobile responsive for consultation section */
@media (max-width: 768px) {
  .shop-now-section {
    padding: 30px 0;
  }
  
  .consultation-section {
    padding: 40px 0;
  }
  
  .consultation-content {
    padding: 20px;
  }
  
  .consultation-title {
    font-size: 1.25rem;
  }
}

/* Mobile Responsive for Hero Section */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-description br {
    display: none;
  }
  
  .overlay-content {
    padding-bottom: 15%;
  }
  
  .btn-shop-now {
    font-size: 0.9rem;
    padding: 8px 24px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 0.9rem;
  }
  
  .overlay-content {
    padding-bottom: 10%;
  }
}

/* ===== PAGE AND SINGLE POST STYLES ===== */
.page-content-section,
.single-post-section {
  padding: 40px 0;
  background-color: #000000;
}

.page-article,
.single-article {
  background-color: #000000;
  color: #ffffff;
}

.page-header,
.post-header {
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 1px solid #333333;
  padding-bottom: 2rem;
}

.page-title,
.post-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-meta {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.post-meta a {
  color: #ffffff;
  text-decoration: none;
}

.post-meta a:hover {
  text-decoration: underline;
}

.post-meta span {
  margin-right: 1rem;
}

.page-featured-image,
.post-featured-image {
  margin: 2rem 0;
  text-align: center;
}

.page-content,
.post-content {
  line-height: 1.8;
  font-size: 1.1rem;
}

.page-content p,
.post-content p {
  margin-bottom: 1.5rem;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #333333;
}

.post-tags {
  color: #cccccc;
}

.post-tags a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 0.5rem;
}

.post-tags a:hover {
  text-decoration: underline;
}

.post-navigation {
  margin: 3rem 0;
}

.comments-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #333333;
}

.edit-link {
  margin-top: 1rem;
}

.edit-link a {
  color: #cccccc;
  font-size: 0.8rem;
  text-decoration: none;
}

.edit-link a:hover {
  color: #ffffff;
}

/* ===== PAGE AND CONTENT SECTIONS ===== */
.page-content-section,
.single-post-section,
.blog-index-section,
.archive-section,
.category-archive-section,
.shop-header-section,
.shop-content-section,
.single-product-section {
  padding: 40px 20px;
  background-color: #000000;
}

.page-content-section .col-12,
.single-post-section .col-12,
.blog-index-section .col-12,
.archive-section .col-12,
.category-archive-section .col-12,
.shop-content-section .col-12,
.single-product-section .col-12 {
  max-width: 100%;
  padding: 0 20px;
}

/* ===== ARCHIVE AND BLOG STYLES ===== */
.archive-section,
.category-archive-section,
.blog-index-section {
  padding: 40px 0;
  background-color: #000000;
}

.archive-header,
.blog-header {
  text-align: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid #333333;
  padding-bottom: 2rem;
}

.archive-title,
.blog-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.archive-description {
  color: #cccccc;
  font-size: 1.1rem;
  line-height: 1.6;
}

.archive-posts,
.blog-posts {
  margin-bottom: 3rem;
}

.archive-post,
.blog-post {
  background-color: #000000;
  border: 1px solid #333333;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.archive-post:hover,
.blog-post:hover {
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.archive-post-title,
.blog-post-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.archive-post-title a,
.blog-post-title a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.archive-post-title a:hover,
.blog-post-title a:hover {
  color: #cccccc;
  text-decoration: underline;
}

.archive-post-meta,
.blog-post-meta {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.archive-post-meta span,
.blog-post-meta span {
  margin-right: 1rem;
}

.archive-post-thumbnail,
.blog-post-thumbnail {
  margin-bottom: 1.5rem;
}

.archive-post-thumbnail img,
.blog-post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.archive-post-content,
.blog-post-content {
  color: #cccccc;
  line-height: 1.6;
}

.read-more-link {
  display: inline-block;
  margin-top: 1rem;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #ffffff;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: #cccccc;
  border-bottom-color: #cccccc;
}

.archive-pagination,
.blog-pagination {
  text-align: center;
  margin-top: 3rem;
}

.archive-pagination .page-numbers,
.blog-pagination .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #333333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.no-posts {
  text-align: center;
  color: #cccccc;
  font-size: 1.2rem;
  padding: 3rem 0;
}

/* ===== WOOCOMMERCE STYLES ===== */
.shop-header-section,
.shop-content-section,
.single-product-section {
  padding: 40px 0;
  background-color: #000000;
}

.woocommerce-products-header__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 2rem;
}

/* Product Grid */
.woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  justify-content: flex-start;
}

.woocommerce ul.products li.product {
  background-color: #000000;
  border: 1px solid #333333;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  width: calc(25% - 1.5rem);
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Responsive product grid */
@media (max-width: 1200px) {
  .woocommerce ul.products li.product {
    width: calc(33.333% - 1.33rem);
  }
}

@media (max-width: 992px) {
  .woocommerce ul.products li.product {
    width: calc(50% - 1rem);
  }
}

@media (max-width: 576px) {
  .woocommerce ul.products li.product {
    width: 100%;
  }
}

.woocommerce ul.products li.product:hover {
  border-color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-decoration: none;
  color: inherit;
}

.woocommerce ul.products li.product img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border-radius: 4px;
}

.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce ul.products li.product .price {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* WooCommerce Shop Controls */
.woocommerce-result-count {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.woocommerce-ordering {
  margin-bottom: 2rem;
}

.woocommerce-ordering .orderby {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 0.9rem;
}

.woocommerce-ordering .orderby:focus {
  border-color: #ffffff;
  outline: none;
}

/* WooCommerce Buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .single_add_to_cart_button,
.woocommerce .button.alt,
.woocommerce-cart .button,
.woocommerce-checkout .button,
.woocommerce .wc-proceed-to-checkout a.checkout-button {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
  border-radius: 40px !important;
  padding: 12px 40px !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  text-shadow: none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .single_add_to_cart_button:hover,
.woocommerce .button.alt:hover,
.woocommerce-cart .button:hover,
.woocommerce-checkout .button:hover,
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

/* WooCommerce Block Cart/Checkout Buttons */
.wc-block-cart__submit-button,
.wc-block-components-button,
.wp-element-button,
.wc-block-checkout__actions_row .wc-block-components-button {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
  border-radius: 40px !important;
  padding: 12px 40px !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  font-size: 1rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  text-shadow: none !important;
  min-height: auto !important;
}

.wc-block-cart__submit-button:hover,
.wc-block-components-button:hover,
.wp-element-button:hover,
.wc-block-checkout__actions_row .wc-block-components-button:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3) !important;
}

.wc-block-components-button__text {
  color: inherit !important;
  font-weight: inherit !important;
  text-transform: inherit !important;
  letter-spacing: inherit !important;
}

/* Single Product */
.woocommerce div.product {
  color: #ffffff;
}

.woocommerce div.product .product_title {
  color: #ffffff;
  font-size: 2rem;
  text-transform: capitalize;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.woocommerce div.product .price {
  color: #ffffff !important;
  font-size: 1.5rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 2rem;
  display: block;
}

.woocommerce div.product .price .amount,
.woocommerce div.product .price .woocommerce-Price-amount,
.woocommerce div.product .price .woocommerce-Price-currencySymbol,
.woocommerce div.product .price ins,
.woocommerce div.product .price del {
  color: #ffffff !important;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: #cccccc;
  line-height: 1.6;
  margin: 1.5rem 0;
}

/* Single Product Cart Form Layout */
.woocommerce div.product form.cart {
  margin: 2rem 0;
}

.woocommerce div.product form.cart .quantity {
  margin-bottom: 1rem;
  text-align: left;
  display: block;
  width: auto;
}

.woocommerce div.product form.cart .quantity label {
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.woocommerce div.product form.cart .quantity .qty {
  background-color: #333333;
  border: 1px solid #555555;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 4px;
  width: 80px;
  text-align: center;
}

.woocommerce div.product form.cart .single_add_to_cart_button {
  width: 100% !important;
  display: block !important;
  margin-top: 1rem !important;
  text-align: center !important;
}

/* WooCommerce Forms */
.woocommerce form.cart {
  margin: 2rem 0;
}

.woocommerce form.cart .quantity input {
  background-color: #333333;
  border: 1px solid #555555;
  color: #ffffff;
  padding: 8px;
  border-radius: 4px;
}

.woocommerce .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid #333333;
}

.woocommerce .woocommerce-tabs ul.tabs li {
  background-color: #000000;
  border: 1px solid #333333;
}

.woocommerce .woocommerce-tabs ul.tabs li a {
  color: #cccccc;
}

.woocommerce .woocommerce-tabs ul.tabs li.active a {
  color: #ffffff;
}

/* WooCommerce Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background-color: #333333;
  color: #ffffff;
  border: 1px solid #555555;
}

/* Mobile Responsive for Pages/Posts */
@media (max-width: 768px) {
  .page-title,
  .post-title {
    font-size: 1.8rem;
  }
  
  .page-content-section,
  .single-post-section,
  .shop-header-section,
  .shop-content-section,
  .single-product-section {
    padding: 30px 0;
  }
  
  .woocommerce ul.products {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
  
  .woocommerce-products-header__title {
    font-size: 1.8rem;
  }
}