/* CryptoTax Brand Enhancements - Works with Customizer settings */


/* Override theme colors with CryptoTax brand colors */
:root {
  /* Primary Colors */
  --paletteColor1: #0043FF; /* Deep Blue */
  --paletteColor2: #A370F1; /* Purple */
  --paletteColor3: #4BF2E6; /* Cyan */
  --paletteColor4: #0065FF; /* Bright Blue */
  --paletteColor5: #EEEEEE; /* Light Gray */
  --paletteColor6: #777777; /* Medium Gray */
  --paletteColor7: #333333; /* Dark Gray */
  --paletteColor8: #FFFFFF; /* White */
}

/* Enhance existing header with brand colors */
.site-header {
  /* Preserve your customizer settings, just add subtle brand touches */
  border-bottom: 2px solid var(--cryptotax-accent-cyan, #4BF2E6);
}

/* Enhance navigation menu with brand colors */
.main-navigation a {
  transition: color 0.3s ease;
}

.main-navigation a:hover {
  color: var(--cryptotax-accent-cyan, #4BF2E6);
}

/* Enhance buttons with brand gradients */
.wp-block-button__link,
.button,
.btn {
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
  transition: all 0.3s ease;
}

.wp-block-button__link:hover,
.button:hover,
.btn:hover {
  background: var(--cryptotax-bg-gradient-cyan, linear-gradient(135deg, #4BF2E6 0%, #0065FF 100%));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 67, 255, 0.3);
}

/* Enhance links with brand colors */
a {
  color: var(--cryptotax-bright-blue, #0065FF);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--cryptotax-primary-blue, #0043FF);
}

/* Add brand accent to headings */
h1, h2, h3, h4, h5, h6 {
  position: relative;
}

h1::after, h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
  margin: 10px 0;
  border-radius: 2px;
}

/* Enhance form elements */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
  border: 2px solid #E9ECEF;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: var(--cryptotax-primary-blue, #0043FF);
  box-shadow: 0 0 0 3px rgba(0, 67, 255, 0.1);
  outline: none;
}

/* Enhance footer with brand colors */
.site-footer {
  background: linear-gradient(135deg, #333333 0%, #1A1A1A 100%);
  border-top: 3px solid var(--cryptotax-accent-cyan, #4BF2E6);
}

.site-footer a {
  color: var(--cryptotax-accent-cyan, #4BF2E6);
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #FFFFFF;
}

/* Add subtle brand elements to content */
.wp-block-group {
  border-left: 4px solid var(--cryptotax-accent-cyan, #4BF2E6);
  padding-left: 20px;
}

/* Enhance cards and content blocks */
.wp-block-columns {
  gap: 30px;
}

.wp-block-column {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-block-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 67, 255, 0.15);
}

/* Add brand styling to search and cart elements */
.header-cart,
.header-search {
  color: var(--cryptotax-text-primary, #EEEEEE);
}

.header-cart:hover,
.header-search:hover {
  color: var(--cryptotax-accent-cyan, #4BF2E6);
}

/* Mobile menu enhancements */
.mobile-menu {
  background: linear-gradient(135deg, #0043FF 0%, #A370F1 100%);
}

.mobile-menu a {
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu a:hover {
  color: var(--cryptotax-accent-cyan, #4BF2E6);
  background: rgba(255, 255, 255, 0.1);
}

/* Add subtle animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wp-block-group,
.wp-block-column {
  animation: fadeInUp 0.6s ease-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wp-block-column {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  h1::after, h2::after {
    width: 40px;
    height: 2px;
  }
}

/* Custom brand utility classes */
.cryptotax-gradient {
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
}

.cryptotax-gradient-cyan {
  background: var(--cryptotax-bg-gradient-cyan, linear-gradient(135deg, #4BF2E6 0%, #0065FF 100%));
}

.cryptotax-text-gradient {
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
  -webkit-background-clip: text;
  
  background-clip: text;
}

.cryptotax-accent-border {
  border-left: 4px solid var(--cryptotax-accent-cyan, #4BF2E6);
}

.cryptotax-shadow {
  box-shadow: 0 4px 15px rgba(0, 67, 255, 0.2);
}

/* CryptoTax Custom Footer */
.cryptotax-footer {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
  color: #EEEEEE;
  padding: 60px 0 20px;
  
  border-top: 3px solid var(--cryptotax-accent-cyan, #4BF2E6);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-block h4 {
  color: var(--cryptotax-accent-cyan, #4BF2E6);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.footer-block h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
  border-radius: 1px;
}

/* Block 1: Logo & Social */
.footer-block-1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo-img {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-text {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #EEEEEE;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 67, 255, 0.3);
}

/* Block 2 & 3: Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #EEEEEE;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--cryptotax-accent-cyan, #4BF2E6);
}

.footer-links a:hover {
  color: var(--cryptotax-accent-cyan, #4BF2E6);
  padding-left: 20px;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

/* Block 4: Newsletter */
.footer-block-4 p {
  color: #CCCCCC;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form {
  margin-bottom: 15px;
}

.newsletter-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: var(--cryptotax-accent-cyan, #4BF2E6);
  box-shadow: 0 0 0 3px rgba(75, 242, 230, 0.1);
}

.newsletter-input-group input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  background: transparent;
  color: #FFFFFF !important;
  font-size: 14px;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: #FFFFFF;
}

.newsletter-btn {
  padding: 15px 20px;
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-btn:hover {
  background: var(--cryptotax-bg-gradient-cyan, linear-gradient(135deg, #4BF2E6 0%, #0065FF 100%));
  transform: scale(1.05);
}

.newsletter-privacy {
  margin-top: 10px;
}

.newsletter-privacy small {
  color: #999999;
  font-size: 12px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright p {
  margin: 0;
  color: #CCCCCC;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #CCCCCC;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--cryptotax-accent-cyan, #4BF2E6);
}

/* Responsive Design */
@media (max-width: 768px) {
  .cryptotax-footer {
    padding: 40px 0 20px;
  }
  
  .footer-blocks {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .newsletter-input-group {
    flex-direction: column;
  }
  
  .newsletter-btn {
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 480px) {
  .footer-container {
    padding: 0 15px;
  }
  
  .footer-blocks {
    gap: 25px;
  }
  
  .footer-block h4 {
    font-size: 16px;
  }
  
  .social-icon {
    width: 35px;
    height: 35px;
  }
}

/* CryptoTax Body Background */
body {
  background-color: #FFFFFF !important;
}

/* Main content area */
#main-container,
main,
.content-area {
  background-color: #FFFFFF !important;
}

/* CryptoTax Header Styling - Enhances Blocksy Customizer Header */

/* Main header container - Multiple selectors for better override */
.site-header,
[data-header="type-1"],
header[data-header],
.ct-header,
.ct-header[data-header="type-1"],
#masthead {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%) !important;
  border-bottom: 3px solid var(--cryptotax-accent-cyan, #4BF2E6) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

/* Header row styling */
[data-row],
.ct-header-row,
header [data-row],
.ct-header [data-row] {
  background: transparent !important;
  border: none !important;
}

/* Force header background on all possible elements */
.ct-header,
.ct-header-row,
.ct-header-row-inner,
header .ct-container,
header .ct-container-inner{
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%) !important;
}

/* Override any white backgrounds in header */

span.select2-container .select2-selection--single .select2-selection__rendered{
  height: auto !important;
}

/* Logo styling */
.custom-logo {
  filter: brightness(0) invert(1) !important;
  transition: all 0.3s ease !important;
}

.custom-logo:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px var(--cryptotax-accent-cyan, #4BF2E6)) !important;
}

/* Site title styling */
.site-title a {
  color: #FFFFFF !important;
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  transition: all 0.3s ease !important;
}

.site-title a:hover {
  transform: scale(1.05) !important;
}

/* Navigation menu styling */
.main-navigation a,
[data-id="menu"] a,
nav a {
  color: #FFFFFF !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
  position: relative !important;
}

.main-navigation a::after,
[data-id="menu"] a::after,
nav a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 2px !important;
  background: var(--cryptotax-accent-cyan, #4BF2E6) !important;
  transition: width 0.3s ease !important;
}

.main-navigation a:hover,
.main-navigation a:focus,
.main-navigation .current-menu-item a,
.main-navigation .current_page_item a,
[data-id="menu"] a:hover,
[data-id="menu"] a:focus,
[data-id="menu"] .current-menu-item a,
[data-id="menu"] .current_page_item a,
nav a:hover,
nav a:focus,
nav .current-menu-item a,
nav .current_page_item a {
  color: var(--cryptotax-accent-cyan, #4BF2E6) !important;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after,
.main-navigation .current_page_item a::after,
[data-id="menu"] a:hover::after,
[data-id="menu"] .current-menu-item a::after,
[data-id="menu"] .current_page_item a::after,
nav a:hover::after,
nav .current-menu-item a::after,
nav .current_page_item a::after {
  width: 100% !important;
}

/* Header buttons and actions */
.header-cart,
.header-search,
[data-id="search"] {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  color: #EEEEEE !important;
  transition: all 0.3s ease !important;
}

.header-cart:hover,
.header-search:hover,
[data-id="search"]:hover {
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%)) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 67, 255, 0.3) !important;
}

/* Cart count styling */
.cart-count {
  background: var(--cryptotax-accent-cyan, #4BF2E6) !important;
  color: #333 !important;
  border-radius: 50% !important;
}

/* Mobile menu trigger */
[data-id="trigger"] {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  color: #EEEEEE !important;
  transition: all 0.3s ease !important;
}

[data-id="trigger"]:hover {
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%)) !important;
  color: #FFFFFF !important;
}

/* Mobile menu styling */
.offcanvas-menu {
  background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.offcanvas-menu a {
  color: #FFFFFF !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.3s ease !important;
}

.offcanvas-menu a:hover,
.offcanvas-menu a:focus,
.offcanvas-menu .current-menu-item a,
.offcanvas-menu .current_page_item a {
  color: var(--cryptotax-accent-cyan, #4BF2E6) !important;
  padding-left: 20px !important;
}

/* Header scroll effect */
.site-header.scrolled {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(51, 51, 51, 0.95) 100%) !important;
  backdrop-filter: blur(10px) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .custom-logo {
    max-height: 48px !important;
  }
  
  .site-title a {
    font-size: 24px !important;
  }
}

@media (max-width: 480px) {
  .custom-logo {
    max-height: 35px !important;
  }
  
  .site-title a {
    font-size: 20px !important;
  }
}

/* --- CryptoTax Homepage Sections --- */

/* Main Slider Section */
#main-slider {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
  color: #fff;
  text-align: center;
  padding: 60px 0;
  box-shadow: 0 8px 32px rgba(0,67,255,0.08);
}
#main-slider h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#main-slider p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: #fff;
  opacity: 0.95;
}
#main-slider .btn {
  font-size: 1.1rem;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
}

/* Products, Plans, About, Newsletter, Contact Sections */
#products, #about, #newsletter, #contact, #plans {
  padding: 60px 0;
}
#products, #about, #contact {
  background: #f8fafd;
}
#plans, #newsletter {
  background: #fff;
}

/* Section Headings */
#products h2, #plans h2, #about h2, #newsletter h2, #contact h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Product/Plan Cards */
#products .wp-block-columns, #plans .wp-block-columns {
  gap: 30px;
  justify-content: center;
}
#products .wp-block-column, #plans .wp-block-column {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,67,255,0.07);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.3s;
  border: 1px solid #e9ecef;
}
#products .wp-block-column:hover, #plans .wp-block-column:hover {
  box-shadow: 0 8px 32px rgba(0,67,255,0.13);
  transform: translateY(-6px) scale(1.03);
}
#products h3, #plans h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: var(--cryptotax-primary-blue, #0043FF);
}
#products p, #plans p {
  color: #555;
  margin-bottom: 18px;
}
#plans ul {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}
#plans ul li {
  margin-bottom: 8px;
  color: #444;
  font-size: 1rem;
}
#plans .btn, #products .btn {
  margin-top: 10px;
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
}

/* About Section */
#about p {
  font-size: 1.15rem;
  color: #444;
  margin: 0 auto;
  max-width: 700px;
}

/* Newsletter Section */
#newsletter .newsletter-form {
  margin: 0 auto;
  max-width: 400px;
}
#newsletter .newsletter-input-group {
  margin-bottom: 10px;
}
#newsletter .newsletter-btn {
  width: 100%;
  border-radius: 0 0 8px 8px;
  font-weight: 600;
}
#newsletter .newsletter-privacy {
  text-align: left;
}

/* Contact Section */
#contact p {
  font-size: 1.1rem;
  color: #444;
}
#contact .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  #products .wp-block-columns, #plans .wp-block-columns {
    flex-direction: column;
    gap: 20px;
  }
  #products .wp-block-column, #plans .wp-block-column {
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  #main-slider h1 {
    font-size: 2rem;
  }
  #main-slider p {
    font-size: 1rem;
  }
  #products h2, #plans h2, #about h2, #newsletter h2, #contact h2 {
    font-size: 1.3rem;
  }
  #products .wp-block-column, #plans .wp-block-column {
    padding: 18px 8px;
  }
}

/* --- Header Logo Larger --- */
.custom-logo {
  max-height: 70px !important;
  width: auto !important;
  margin-right: 24px;
  transition: max-height 0.3s;
}
@media (max-width: 768px) {
  .custom-logo {
    max-height: 48px !important;
  }
}

/* --- Header Menu Font to Match Footer Menu --- */
.main-navigation a,
[data-id="menu"] a,
nav a {
  font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  color: #EEEEEE !important;
}

/* Footer menu for reference (already styled, but ensure consistency) */
.site-footer a,
.footer-links a,
.footer-legal a {
  font-family: 'Inter', 'Segoe UI', 'Arial', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* --- Force Header Search Icon White --- */
.header-search svg,
.header-search svg path,
[data-id="search"] svg,
[data-id="search"] svg path {
  color: #FFFFFF !important;
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

.header-search:hover svg,
.header-search:hover svg path,
[data-id="search"]:hover svg,
[data-id="search"]:hover svg path {
  color: var(--cryptotax-accent-cyan, #4BF2E6) !important;
  fill: var(--cryptotax-accent-cyan, #4BF2E6) !important;
  stroke: var(--cryptotax-accent-cyan, #4BF2E6) !important;
}


/* Slider Container - Simplified & Polished */
.cryptotax-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Slider Wrapper - Clean Animation */
.slider-wrapper {
    position: relative;
    width: 500%;
    height: 100%;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Slides - No Gaps */
.slide {
    width: 20%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

/* Slide Backgrounds - Rich Gradients */
.slide:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.slide:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.slide:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.slide:nth-child(4) {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.slide:nth-child(5) {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

/* Content Layout - Centered & Balanced */
.slide-content {
    max-width: 1200px;
    width: 90%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    padding: 0 2rem;
}

/* Typography - Clean & Modern */
.slide-text {
    color: #ffffff;
    text-align: left;
}

.slide-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.slide-text p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
    opacity: 0.95;
    max-width: 500px;
}

/* Buttons - Modern Glass Effect */
.cta-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Visual Elements - Simplified & Elegant */
.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.crypto-icon {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: float 8s ease-in-out infinite;
}

.analytics-chart {
    width: 320px;
    height: 220px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.chart-lines {
    position: absolute;
    inset: 20px;
}

.chart-line {
    position: absolute;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.chart-line:nth-child(1) {
    width: 75%;
    top: 25%;
    transform: rotate(12deg);
    animation: glow 3s ease-in-out infinite;
}

.chart-line:nth-child(2) {
    width: 60%;
    top: 50%;
    left: 25%;
    transform: rotate(-8deg);
    animation: glow 3s ease-in-out infinite 1s;
}

.chart-line:nth-child(3) {
    width: 65%;
    top: 75%;
    left: 15%;
    transform: rotate(6deg);
    animation: glow 3s ease-in-out infinite 2s;
}

/* Navigation - Clean & Minimal */
.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 100;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4) !important;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.nav-dot.active {
    background: #ffffff;
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

/* Animations - Smooth & Subtle */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-15px) rotate(1deg); 
    }
    66% { 
        transform: translateY(-8px) rotate(-1deg); 
    }
}

@keyframes glow {
    0%, 100% { 
        opacity: 0.8; 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); 
    }
    50% { 
        opacity: 1; 
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.6); 
    }
}

/* Background Pattern - Subtle */
.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 120px 120px, 80px 80px;
    animation: drift 30s linear infinite;
    pointer-events: none;
}

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

/* Responsive Design - Mobile First */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .crypto-icon,
    .analytics-chart {
        width: 240px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .cryptotax-slider {
        height: 100vh;
        min-height: 500px;
    }
    
    .slide-content {
        width: 95%;
        gap: 2rem;
    }
    
    .slide-text p {
        max-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
    
    .crypto-icon {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }
    
    .analytics-chart {
        width: 280px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        text-align: center;
    }
}

        .home .hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.home .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(163, 112, 241, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.home .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.home .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home .hero-text {
    animation: fadeInLeft 1s ease-out;
}

.home .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.home .hero-text .simple {
    color: var(--cryptotax-text-dark);
    display: block;
    font-size: 3rem;
    font-weight: 300;
}

.home .hero-text .crypto {
    background: var(--cryptotax-bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.home .hero-text .tax-prep {
    color: var(--cryptotax-text-dark);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: block;
    text-transform: uppercase;
}

.home .hero-description {
    font-size: 1.2rem;
    color: var(--cryptotax-text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.home .cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--cryptotax-bg-gradient);
    color: var(--cryptotax-text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 67, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.home .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cryptotax-bg-gradient-cyan);
    transition: left 0.3s ease;
    z-index: -1;
}

.home .cta-button:hover::before {
    left: 0;
}

.home .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 67, 255, 0.4);
}

.home .hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.home .image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.home .image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.home .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.home .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 67, 255, 0.1) 0%, rgba(163, 112, 241, 0.1) 100%);
    border-radius: 20px;
}

/* Floating elements */
.home .floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.home .floating-element:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.home .floating-element:nth-child(2) {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.home .floating-element:nth-child(3) {
    top: 60%;
    right: 5%;
    animation-delay: 4s;
}

.home .floating-icon {
    width: 60px;
    height: 60px;
    background: var(--cryptotax-bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 67, 255, 0.3);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .home .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .home .hero-text h1 {
        font-size: 2.5rem;
    }

    .home .hero-text .simple {
        font-size: 2rem;
    }

    .home .hero-text .crypto {
        font-size: 1.8rem;
    }

    .home .hero-text .tax-prep {
        font-size: 2.8rem;
    }

    .home .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .home .hero-section {
        padding: 60px 0;
    }

    .home .image-container {
        transform: none;
    }

    .home .floating-element {
        display: none;
    }
}

.home .hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.home .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(163, 112, 241, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.home .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.home .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home .hero-text {
    animation: fadeInLeft 1s ease-out;
}

.home .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.home .hero-text .simple {
    color: var(--cryptotax-text-dark);
    display: block;
    font-size: 3rem;
    font-weight: 300;
}

.home .hero-text .crypto {
    background: var(--cryptotax-bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.home .hero-text .tax-prep {
    color: var(--cryptotax-text-dark);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: block;
    text-transform: uppercase;
}

.home .hero-description {
    font-size: 1.2rem;
    color: var(--cryptotax-text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 500px;
}

.home .cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--cryptotax-bg-gradient);
    color: var(--cryptotax-text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 67, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.home .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cryptotax-bg-gradient-cyan);
    transition: left 0.3s ease;
    z-index: -1;
}

.home .cta-button:hover::before {
    left: 0;
}

.home .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 67, 255, 0.4);
}

.home .hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.home .image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.home .image-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.home .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.home .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 67, 255, 0.1) 0%, rgba(163, 112, 241, 0.1) 100%);
    border-radius: 20px;
}

/* Floating elements */
.home .floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
}

.home .floating-element:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.home .floating-element:nth-child(2) {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.home .floating-element:nth-child(3) {
    top: 60%;
    right: 5%;
    animation-delay: 4s;
}

.home .floating-icon {
    width: 60px;
    height: 60px;
    background: var(--cryptotax-bg-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 67, 255, 0.3);
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .home .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .home .hero-text h1 {
        font-size: 2.5rem;
    }

    .home .hero-text .simple {
        font-size: 2rem;
    }

    .home .hero-text .crypto {
        font-size: 1.8rem;
    }

    .home .hero-text .tax-prep {
        font-size: 2.8rem;
    }

    .home .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .home .hero-section {
        padding: 60px 0;
    }

    .home .image-container {
        transform: none;
    }

    .home .floating-element {
        display: none;
    }
}

/* Portfolio Section */
.home .portfolio-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.home .portfolio-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(0, 67, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(163, 112, 241, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.home .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.home .portfolio-content {
    text-align: center;
    margin-bottom: 80px;
}

.home .portfolio-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.home .portfolio-title .your {
    color: var(--cryptotax-text-dark);
    display: block;
}

.home .portfolio-title .entire {
    background: var(--cryptotax-bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.home .portfolio-title .crypto {
    color: var(--cryptotax-text-dark);
    display: block;
}

.home .portfolio-title .portfolio {
    background: var(--cryptotax-bg-gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.home .portfolio-title .in-one {
    color: var(--cryptotax-text-dark);
    display: block;
    font-size: 3.2rem;
}

.home .portfolio-description {
    font-size: 1.4rem;
    color: var(--cryptotax-text-secondary);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 50px;
}

.home .savings-highlight {
    display: inline-block;
    background: var(--cryptotax-bg-gradient);
    color: var(--cryptotax-text-light);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(0, 67, 255, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Portfolio Dashboard Mockup */
.home .portfolio-dashboard {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--cryptotax-text-light);
    border-radius: 25px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateX(8deg);
    transition: transform 0.3s ease;
}

.home .portfolio-dashboard:hover {
    transform: perspective(1000px) rotateX(0deg);
}

.home .dashboard-header {
    background: var(--cryptotax-bg-gradient);
    padding: 25px 30px;
    color: var(--cryptotax-text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home .dashboard-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.home .dashboard-sync {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.home .sync-indicator {
    width: 8px;
    height: 8px;
    background: var(--cryptotax-accent-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.home .dashboard-body {
    padding: 40px 30px;
}

.home .portfolio-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.home .overview-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home .overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cryptotax-bg-gradient);
    opacity: 0.05;
    transition: left 0.3s ease;
}

.home .overview-card:hover::before {
    left: 0;
}

.home .overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 67, 255, 0.15);
    border-color: var(--cryptotax-primary-blue);
}

.home .card-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.home .card-value.positive {
    color: #28a745;
}

.home .card-value.primary {
    background: var(--cryptotax-bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home .card-label {
    color: var(--cryptotax-text-secondary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* Exchange Grid */
.home .exchange-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.home .exchange-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home .exchange-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cryptotax-bg-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.home .exchange-item:hover::before {
    opacity: 0.1;
}

.home .exchange-item:hover {
    transform: translateY(-3px);
    border-color: var(--cryptotax-primary-blue);
    box-shadow: 0 10px 25px rgba(0, 67, 255, 0.15);
}

.home .exchange-logo {
    width: 40px;
    height: 40px;
    background: var(--cryptotax-bg-gradient);
    border-radius: 8px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.home .exchange-name {
    color: var(--cryptotax-text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Floating Stats */
.home .floating-stats {
    position: absolute;
    top: 20%;
    left: -10%;
    z-index: 3;
}

.home .floating-stats.right {
    left: auto;
    right: -10%;
    top: 60%;
}

.home .stat-bubble {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid var(--cryptotax-accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 67, 255, 0.2);
    margin-bottom: 20px;
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.home .stat-bubble:nth-child(2) {
    animation-delay: 2s;
}

.home .stat-bubble:nth-child(3) {
    animation-delay: 4s;
}

.home .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--cryptotax-bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home .stat-text {
    color: var(--cryptotax-text-secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 67, 255, 0.3);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 67, 255, 0.6);
        transform: scale(1.02);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

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

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

.home .portfolio-content {
    animation: fadeInUp 1s ease-out;
}

.home .portfolio-dashboard {
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home .portfolio-section {
        padding: 80px 0;
    }

    .home .portfolio-title {
        font-size: 2.8rem;
    }

    .home .portfolio-title .in-one {
        font-size: 2.2rem;
    }

    .home .portfolio-description {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .home .portfolio-overview {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .home .overview-card {
        padding: 20px 15px;
    }

    .home .card-value {
        font-size: 1.6rem;
    }

    .home .exchange-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    .home .exchange-item {
        padding: 15px;
    }

    .home .exchange-logo {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .home .floating-stats {
        display: none;
    }

    .home .portfolio-dashboard {
        transform: none;
        margin: 0 10px;
    }

    .home .dashboard-body {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .home .portfolio-title {
        font-size: 2.2rem;
    }

    .home .portfolio-title .in-one {
        font-size: 1.8rem;
    }

    .home .portfolio-description {
        font-size: 1.1rem;
    }

    .home .portfolio-overview {
        grid-template-columns: 1fr;
    }
}

/* Security Section */
.home .security-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.home .security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 30%, rgba(75, 242, 230, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(0, 67, 255, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.home .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.home .security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.home .security-text {
    animation: fadeInLeft 1s ease-out;
}

.home .security-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.home .security-title .safe {
    background: var(--cryptotax-bg-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.home .security-title .and {
    color: var(--cryptotax-text-dark);
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 5px 0;
}

.home .security-title .secure {
    background: var(--cryptotax-bg-gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.home .security-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--cryptotax-text-secondary);
    margin-bottom: 30px;
    line-height: 1.3;
}

.home .security-description {
    font-size: 1.3rem;
    color: var(--cryptotax-text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Security Features */
.home .security-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.home .security-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home .security-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cryptotax-bg-gradient);
    opacity: 0.05;
    transition: left 0.3s ease;
}

.home .security-feature:hover::before {
    left: 0;
}

.home .security-feature:hover {
    transform: translateX(10px);
    border-color: var(--cryptotax-accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 67, 255, 0.15);
}

.home .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--cryptotax-bg-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.home .feature-text {
    color: var(--cryptotax-text-dark);
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Security Visualization */
.home .security-visual {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.home .security-dashboard {
    background: var(--cryptotax-text-light);
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-8deg) rotateX(5deg);
    transition: transform 0.4s ease;
}

.home .security-dashboard:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.home .security-header {
    background: var(--cryptotax-bg-gradient);
    padding: 25px 30px;
    color: var(--cryptotax-text-light);
    display: flex;
    align-items: center;
    gap: 15px;
}

.home .security-header .shield-icon {
    font-size: 2rem;
    animation: pulse-shield 3s ease-in-out infinite;
}

.home .security-header .title {
    font-size: 1.6rem;
    font-weight: 700;
}

.home .security-body {
    padding: 40px 30px;
}

.home .connection-status {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.home .connection-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.home .connection-item:hover {
    border-color: var(--cryptotax-accent-cyan);
    box-shadow: 0 5px 20px rgba(75, 242, 230, 0.2);
}

.home .connection-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.home .connection-logo {
    width: 40px;
    height: 40px;
    background: var(--cryptotax-bg-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.home .connection-details h4 {
    color: var(--cryptotax-text-dark);
    font-weight: 600;
    margin-bottom: 3px;
}

.home .connection-details p {
    color: var(--cryptotax-text-secondary);
    font-size: 0.9rem;
}

.home .connection-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.home .status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Encryption Visualization */
.home .encryption-demo {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.home .encryption-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(75, 242, 230, 0.2), transparent);
    animation: scan 3s ease-in-out infinite;
}

.home .encryption-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--cryptotax-accent-cyan);
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.home .encryption-data {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #00ff00;
    line-height: 1.4;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Floating Security Badges */
.home .security-badge {
    position: absolute;
    background: var(--cryptotax-text-light);
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 67, 255, 0.2);
    border: 2px solid var(--cryptotax-accent-cyan);
    animation: float 6s ease-in-out infinite;
    z-index: 3;
}

.home .security-badge.top-right {
    top: 15%;
    right: -5%;
    animation-delay: 0s;
}

.home .security-badge.bottom-left {
    bottom: 20%;
    left: -8%;
    animation-delay: 3s;
}

.home .badge-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.home .badge-text {
    color: var(--cryptotax-text-dark);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

@keyframes pulse-shield {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(75, 242, 230, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(75, 242, 230, 0.8));
    }
}

@keyframes scan {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .home .security-section {
        padding: 80px 0;
    }

    .home .security-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .home .security-title {
        font-size: 2.8rem;
    }

    .home .security-title .and {
        font-size: 2rem;
    }

    .home .security-subtitle {
        font-size: 1.8rem;
    }

    .home .security-description {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .home .security-features {
        gap: 20px;
    }

    .home .security-feature {
        padding: 18px;
    }

    .home .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .home .feature-text {
        font-size: 1rem;
    }

    .home .security-dashboard {
        transform: none;
        margin: 0 10px;
    }

    .home .security-body {
        padding: 30px 20px;
    }

    .home .connection-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .home .connection-status-badge {
        align-self: center;
    }

    .home .security-badge {
        display: none;
    }

    .home .encryption-demo {
        padding: 20px;
    }

    .home .encryption-data {
        font-size: 0.7rem;
    }
}

.performance-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}
.performance-badge {
    position: absolute;
    background: #fff;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 67, 255, 0.1);
    border: 2px solid var(--cryptotax-accent-cyan, #4BF2E6);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.performance-badge.top-right { top: 10%; right: 5%; }
.performance-badge.bottom-left { bottom: 10%; left: 5%; }
.performance-badge .badge-icon { font-size: 1.2rem; }
.performance-badge .badge-text { color: var(--cryptotax-text-dark, #333); }

.performance-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .performance-content { grid-template-columns: 1fr; gap: 40px; }
}

.performance-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}
.performance-title .track,
.performance-title .performance {
    background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.performance-title .and { color: var(--cryptotax-text-dark, #333); }

.performance-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: var(--cryptotax-text-secondary, #777);
    margin-bottom: 20px;
}
.performance-description {
    font-size: 1.2rem;
    color: var(--cryptotax-text-secondary, #777);
    margin-bottom: 30px;
    line-height: 1.7;
}

.performance-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}
.performance-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 20px;
    box-shadow: 0 2px 10px rgba(0,67,255,0.07);
    font-weight: 500;
}
.performance-feature .feature-icon { font-size: 1.3rem; }

.performance-visual { display: flex; justify-content: center; }
.performance-dashboard {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 100%;
    max-width: 1000px;
}
.performance-header {
    background: var(--cryptotax-bg-gradient, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
    padding: 25px 30px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 700;
}
.performance-body { padding: 40px 30px; }
.charts-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}
.chart-card {
    background: #f8fafd;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,67,255,0.07);
    padding: 20px;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.chart-info { margin-top: 10px; text-align: center; }
.chart-title { font-weight: 600; color: var(--cryptotax-primary-blue, #0043FF); }
.chart-price { font-size: 1.2rem; font-weight: 700; margin-top: 5px; }

.performance-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}
.stat-card {
    text-align: center;
    padding: 15px;
    background: rgba(0, 67, 255, 0.05);
    border-radius: 10px;
}
.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cryptotax-primary-blue, #0043FF);
    margin-bottom: 5px;
}
.stat-card .stat-value.positive { color: var(--cryptotax-accent-cyan, #4BF2E6); }
.stat-card .stat-label {
    font-size: 0.9rem;
    color: var(--cryptotax-text-secondary, #777);
    font-weight: 600;
}
@media (max-width: 900px) {
    .charts-row { flex-direction: column; gap: 20px; }
    .performance-stats { grid-template-columns: 1fr; }
}

.home .testimonial-section {
  background: var(--paletteColor5);
  padding: 60px 0;
}

.home .testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}

.home .testimonial-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.home .testimonial-subtitle {
  color: var(--paletteColor6);
  font-size: 1.2rem;
}

.home .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.home .testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,67,255,0.08);
  padding: 32px 28px 24px 28px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--paletteColor13, #E9ECEF);
  transition: box-shadow 0.2s;
}

.home .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(67, 0, 255, 0.12);
}

.home .testimonial-quote {
  font-size: 1.15rem;
  color: var(--paletteColor7);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.5;
}

.home .testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.home .testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--paletteColor1);
  object-fit: cover;
}

.home .testimonial-name {
  font-weight: 600;
  color: var(--paletteColor1);
}

.home .testimonial-role {
  color: var(--paletteColor6);
  font-size: 0.95rem;
}

.newsletter-section {
  background: var(--paletteColor1);
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
  padding: 60px 0;
  color: var(--paletteColor8);
}

.newsletter-container {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 16px;
}

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

.newsletter-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.newsletter-subtitle {
  color: var(--paletteColor5);
  font-size: 1.15rem;
  margin-bottom: 28px;
}

.newsletter-btnform{
  margin-top: 10px;
}
.newsletter-note {
  color: var(--paletteColor5);
  font-size: 0.95rem;
  margin-top: 8px;
  opacity: 0.85;
}

/* --- Home Testimonial Section --- */
.home .testimonial-section {
  background: var(--paletteColor5);
  padding: 60px 0;
}
.home .testimonial-header {
  text-align: center;
  margin-bottom: 40px;
}
.home .testimonial-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.home .testimonial-subtitle {
  color: var(--paletteColor6);
  font-size: 1.2rem;
}
.home .testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.home .testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,67,255,0.08);
  padding: 32px 28px 24px 28px;
  max-width: 340px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--paletteColor13, #E9ECEF);
  transition: box-shadow 0.2s;
}
.home .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(67, 0, 255, 0.12);
}
.home .testimonial-quote {
  font-size: 1.15rem;
  color: var(--paletteColor7);
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.5;
}
.home .testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}
.home .testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--paletteColor1);
  object-fit: cover;
}
.home .testimonial-name {
  font-weight: 600;
  color: var(--paletteColor1);
}
.home .testimonial-role {
  color: var(--paletteColor6);
  font-size: 0.95rem;
}

/* --- Home Newsletter Section --- */
.home .newsletter-section {
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
  padding: 60px 0;
  color: var(--paletteColor8);
}
.home .newsletter-container {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 16px;
}
.home .newsletter-content {
  text-align: center;
}
.home .newsletter-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color:#fff;
}
.home .newsletter-subtitle {
  color: var(--paletteColor5);
  font-size: 1.15rem;
  margin-bottom: 28px;
}
.home .newsletter-form {
  display: flex;
  gap: 0;
  justify-content: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.home .newsletter-input,.home .newsletter-input:focus {
  padding: 14px 18px;
  border: 1px solid;
  border-radius: 24px 0 0 24px;
  font-size: 1rem;
  outline: none;
  min-width: 220px;
  background: var(--paletteColor8);
  color: var(--paletteColor8);
  box-shadow: 0 2px 8px rgba(0,67,255,0.06);
}
.home .btn {
  background: linear-gradient(135deg, #0043FF 0%, #A370F1 100%);
  color: #FFFFFF;
  border: none;
  padding: 14px 28px;
  border-radius: 0 24px 24px 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.home .btn:hover {
  background: linear-gradient(135deg, #4BF2E6 0%, #0065FF 100%);
  color: #FFFFFF;
}
.home .newsletter-note {
  color: var(--paletteColor5);
  font-size: 0.95rem;
  margin-top: 8px;
  opacity: 0.85;
}


/* CryptoTax Product Single Page Styles */

/* CryptoTax Custom Colors - Product Single */
.single-product {
  --primary-blue: #0043FF;
  --primary-purple: #A370F1;
  --primary-cyan: #4BF2E6;
  --bright-blue: #0065FF;
  --light-gray: #EEEEEE;
  --medium-gray: #777777;
  --dark-gray: #333333;
  --white: #FFFFFF;
  --gradient-primary: linear-gradient(135deg, #0043FF 0%, #A370F1 100%);
  --gradient-secondary: linear-gradient(135deg, #4BF2E6 0%, #0065FF 100%);
}

/* Product Container */
.single-product .product-entry-wrapper {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 67, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.single-product .product-entry-wrapper:hover {
  box-shadow: 0 20px 50px rgba(0, 67, 255, 0.15);
}

.single-product .wc-tabs li.active a, .single-product .wc-tabs li a:hover{
    color:#ffffff !important;
}
/* Breadcrumbs */
.single-product .ct-breadcrumbs {
  background: var(--gradient-primary);
  padding: 1rem 2rem;
  border-radius: 50px;
  margin: 1rem 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.single-product .ct-breadcrumbs a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.single-product .ct-breadcrumbs a:hover {
  color: var(--primary-cyan);
}

.single-product .ct-breadcrumbs .ct-separator {
  fill: rgba(255, 255, 255, 0.7);
  margin: 0 0.5rem;
}

.single-product .ct-breadcrumbs .last-item span {
  color: var(--primary-cyan);
  font-weight: 600;
}

/* Product Gallery */
.single-product .woocommerce-product-gallery {
  
  padding: 2rem;
  border-radius: 20px;
  margin: 1rem;
}

.single-product .ct-product-gallery-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.single-product .ct-media-container img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.single-product .ct-media-container:hover img {
  transform: scale(1.05);
}

/* Product Summary */
.single-product .entry-summary {
  padding: 2rem;
}

.single-product .product_title {
  font-size: 2.5rem;
  font-weight: bold;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Price */
.single-product .price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.single-product .price .woocommerce-Price-amount {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.single-product .price .wps_sfw_interval {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Short Description */
.single-product .woocommerce-product-details__short-description {
  background: linear-gradient(135deg, rgba(75, 242, 230, 0.1) 0%, rgba(0, 101, 255, 0.1) 100%);
  border: 2px solid rgba(75, 242, 230, 0.2);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  position: relative;
}

.single-product .cryptotax-summary p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark-gray);
  margin: 0;
}

.single-product .cryptotax-summary strong {
  color: var(--bright-blue);
  font-weight: 600;
}

/* Product Dividers */
.single-product .ct-product-divider {
  display: block;
  height: 2px;
  background: var(--gradient-primary);
  margin: 2rem 0;
  border-radius: 2px;
  opacity: 0.3;
}

/* Add to Cart Section */
.single-product .ct-product-add-to-cart {
  background: rgba(238, 238, 238, 0.3);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.single-product .single_add_to_cart_button {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.single-product .single_add_to_cart_button:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 67, 255, 0.3);
}

/* Product Meta */
.single-product .product_meta {
  padding: 1rem;
  background: rgba(238, 238, 238, 0.2);
  border-radius: 10px;
  margin-top: 1rem;
}

.single-product .product_meta a {
  color: var(--bright-blue);
  text-decoration: none;
  font-weight: 500;
}

.single-product .product_meta a:hover {
  color: var(--primary-blue);
}

/* Tabs Section */
.single-product .woocommerce-tabs {
  margin-top: 3rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 67, 255, 0.1);
  overflow: hidden;
}

.single-product .wc-tabs {
  background: var(--gradient-primary);
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  border-radius: 0;
}

.single-product .wc-tabs li {
  flex: 1;
  margin: 0;
}

.single-product .wc-tabs li a {
  display: block;
  padding: 1.5rem 2rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border-radius: 0;
  text-align: center;
}

.single-product .wc-tabs li.active a,
.single-product .wc-tabs li a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

/* Tab Content */
.single-product .woocommerce-Tabs-panel {
  padding: 2rem;
  background: var(--white);
}

/* Description Content */
.single-product .cryptotax-plan {
  max-width: none;
}

.single-product .cryptotax-plan__header h2 {
  font-size: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  font-weight: bold;
}

.single-product .cryptotax-plan__intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--medium-gray);
  margin-bottom: 2rem;
  padding: 1rem;
  background: rgba(75, 242, 230, 0.05);
  border-left: 4px solid var(--primary-cyan);
  border-radius: 5px;
}

.single-product .cryptotax-plan__features h3,
.single-product .cryptotax-plan__audience h3 {
  font-size: 1.5rem;
  color: var(--dark-gray);
  margin: 2rem 0 1rem 0;
  font-weight: 600;
  position: relative;
}

.single-product .cryptotax-plan__features h3::after,
.single-product .cryptotax-plan__audience h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}

.single-product .cryptotax-plan__features ul,
.single-product .cryptotax-plan__audience ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.single-product .cryptotax-plan__features li,
.single-product .cryptotax-plan__audience li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(238, 238, 238, 0.5);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.single-product .cryptotax-plan__features li::before,
.single-product .cryptotax-plan__audience li::before {
  content: '✓';
  color: var(--primary-cyan);
  font-weight: bold;
  font-size: 1.2rem;
  min-width: 20px;
}

.single-product .cryptotax-plan__features li strong {
  color: var(--bright-blue);
}

.single-product .cryptotax-plan__closing {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 67, 255, 0.3);
}

/* Reviews Section */
.single-product #reviews h2 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.single-product .comment-form-rating .stars {
  margin: 1rem 0;
}

.single-product .comment-form-rating .stars a {
  color: var(--primary-cyan);
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-product .comment-form-rating .stars a:hover {
  color: var(--bright-blue);
}

.single-product .comment-form-field-textarea textarea {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  resize: vertical;
}

.single-product .comment-form-field-textarea textarea:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 2px rgba(0, 67, 255, 0.2);
  outline: none;
}

.single-product .form-submit button {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.single-product .form-submit button:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 67, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .single-product .product_title {
    font-size: 2rem;
  }
  
  .single-product .price {
    font-size: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  
  .single-product .wc-tabs {
    flex-direction: column;
  }
  
  .single-product .wc-tabs li a {
    padding: 1rem;
  }
  
  .single-product .woocommerce-Tabs-panel {
    padding: 1rem;
  }
  
  .single-product .cryptotax-plan__header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .single-product .product-entry-wrapper {
    margin: 1rem 0;
    border-radius: 10px;
  }
  
  .single-product .entry-summary {
    padding: 1rem;
  }
  
  .single-product .woocommerce-product-gallery {
    padding: 1rem;
    margin: 0.5rem;
  }
}

/* Animation Effects */
.single-product .cryptotax-plan__features li,
.single-product .cryptotax-plan__audience li {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.single-product .cryptotax-plan__features li:nth-child(1) { animation-delay: 0.1s; }
.single-product .cryptotax-plan__features li:nth-child(2) { animation-delay: 0.2s; }
.single-product .cryptotax-plan__features li:nth-child(3) { animation-delay: 0.3s; }
.single-product .cryptotax-plan__features li:nth-child(4) { animation-delay: 0.4s; }
.single-product .cryptotax-plan__features li:nth-child(5) { animation-delay: 0.5s; }
.single-product .cryptotax-plan__features li:nth-child(6) { animation-delay: 0.6s; }
.single-product .cryptotax-plan__features li:nth-child(7) { animation-delay: 0.7s; }
.single-product .cryptotax-plan__features li:nth-child(8) { animation-delay: 0.8s; }
.single-product .cryptotax-plan__features li:nth-child(9) { animation-delay: 0.9s; }

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

/* CryptoTax Custom Colors - Scoped to product category pages */

/* Header and Navigation */
.tax-product_cat .site-header {
  background: linear-gradient(135deg, #0043FF 0%, #A370F1 100%);
}

.tax-product_cat .main-navigation a {
  color: #EEEEEE;
}

.tax-product_cat .main-navigation a:hover {
  color: #4BF2E6;
}

/* Buttons */
.tax-product_cat .wp-block-button__link,
.tax-product_cat .button,
.tax-product_cat .btn {
  background: linear-gradient(135deg, #0043FF 0%, #A370F1 100%);
  color: #FFFFFF;
  border: none;
}

.tax-product_cat .wp-block-button__link:hover,
.tax-product_cat .button:hover,
.tax-product_cat .btn:hover {
  background: linear-gradient(135deg, #4BF2E6 0%, #0065FF 100%);
  color: #FFFFFF;
}

/* Secondary Buttons */
.tax-product_cat .wp-block-button.is-style-outline .wp-block-button__link {
  border: 2px solid #0043FF;
  color: #0043FF;
  background: transparent;
}

.tax-product_cat .wp-block-button.is-style-outline .wp-block-button__link:hover {
  background: #0043FF;
  color: #FFFFFF;
}

/* Links */
.tax-product_cat a {
  color: #0065FF;
}

.tax-product_cat a:hover {
  color: #0043FF;
}

/* Headings */
.tax-product_cat h1,
.tax-product_cat h2,
.tax-product_cat h3,
.tax-product_cat h4,
.tax-product_cat h5,
.tax-product_cat h6 {
  color: #333333;
}

/* Text */
.tax-product_cat body,
.tax-product_cat {
  color: #333333;
}

/* Accent Elements */
.tax-product_cat .accent-color {
  color: #4BF2E6;
}

.tax-product_cat .accent-bg {
  background-color: #4BF2E6;
}

/* Footer */
.tax-product_cat .site-footer {
  background-color: #333333;
  color: #EEEEEE;
}

.tax-product_cat .site-footer a {
  color: #4BF2E6;
}

.tax-product_cat .site-footer a:hover {
  color: #FFFFFF;
}

/* Cards and Content Blocks */
.tax-product_cat .wp-block-group,
.tax-product_cat .wp-block-columns {
  border-color: #E9ECEF;
}

/* Form Elements */
.tax-product_cat input[type="text"],
.tax-product_cat input[type="email"],
.tax-product_cat input[type="password"],
.tax-product_cat textarea,
.tax-product_cat select {
  border-color: #CED4DA;
}

.tax-product_cat input[type="text"]:focus,
.tax-product_cat input[type="email"]:focus,
.tax-product_cat input[type="password"]:focus,
.tax-product_cat textarea:focus,
.tax-product_cat select:focus {
  border-color: #0043FF;
  box-shadow: 0 0 0 2px rgba(0, 67, 255, 0.2);
}

/* Custom Brand Elements */
.tax-product_cat .cryptotax-gradient {
  background: linear-gradient(135deg, #0043FF 0%, #A370F1 100%);
}

.tax-product_cat .cryptotax-gradient-cyan {
  background: linear-gradient(135deg, #4BF2E6 0%, #0065FF 100%);
}

.tax-product_cat .cryptotax-text-gradient {
  background: linear-gradient(135deg, #0043FF 0%, #A370F1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Product category page header */
.tax-product_cat .entry-header.ct-container-narrow {
  background: var(--gradient-primary, linear-gradient(135deg, #0043FF 0%, #A370F1 100%));
  color: var(--white, #FFFFFF);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 2rem auto;
}

/* Floating dotted overlay */
.tax-product_cat .entry-header.ct-container-narrow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><circle cx='25' cy='25' r='2' fill='rgba(255,255,255,0.08)'/><circle cx='75' cy='25' r='2' fill='rgba(255,255,255,0.08)'/><circle cx='25' cy='75' r='2' fill='rgba(255,255,255,0.08)'/><circle cx='75' cy='75' r='2' fill='rgba(255,255,255,0.08)'/></svg>") repeat;
  animation: float 20s infinite linear;
  pointer-events: none;
  z-index: 1;
}

/* Title */
.tax-product_cat .entry-header.ct-container-narrow .page-title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white, #FFFFFF);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

/* Optional subtle bottom divider */
.tax-product_cat .entry-header.ct-container-narrow::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: var(--paletteColor3, #4BF2E6);
  opacity: 0.9;
  z-index: 2;
}

/* Animation + reduced motion */
@keyframes float {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-50px, -50px) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .tax-product_cat .entry-header.ct-container-narrow::before { animation: none; }
}

/* Small devices tweaks */
@media (max-width: 480px) {
  .tax-product_cat .entry-header.ct-container-narrow {
    padding: 3rem 1rem;
    border-radius: 10px;
  }
}

/* Tablet and down */
@media (max-width: 768px) {
  .tax-product_cat .site-header {
    background: linear-gradient(135deg, #0043FF 0%, #A370F1 100%);
  }

  .tax-product_cat .main-navigation a {
    padding: 10px 12px;
    font-size: 14px;
  }

  .tax-product_cat .wp-block-button__link,
  .tax-product_cat .button,
  .tax-product_cat .btn {
    padding: 10px 14px;
    font-size: 14px;
  }

  .tax-product_cat h1 { font-size: 28px; }
  .tax-product_cat h2 { font-size: 24px; }
  .tax-product_cat h3 { font-size: 20px; }

  .tax-product_cat .wp-block-columns {
    gap: 16px;
  }
}

/* Mobile phones */
@media (max-width: 480px) {
  .tax-product_cat .main-navigation a {
    padding: 8px 10px;
    font-size: 13px;
  }

  .tax-product_cat .wp-block-button__link,
  .tax-product_cat .button,
  .tax-product_cat .btn {
    padding: 9px 12px;
    font-size: 13px;
    border-radius: 6px;
  }

  .tax-product_cat h1 { font-size: 24px; }
  .tax-product_cat h2 { font-size: 20px; }
  .tax-product_cat h3 { font-size: 18px; }

  .tax-product_cat .wp-block-group,
  .tax-product_cat .wp-block-columns {
    border-width: 1px;
  }

  .tax-product_cat input[type="text"],
  .tax-product_cat input[type="email"],
  .tax-product_cat input[type="password"],
  .tax-product_cat textarea,
  .tax-product_cat select {
    font-size: 14px;
    padding: 10px 12px;
  }
}

/* WooCommerce Notices - CryptoTax Style */
/* Using CryptoTax color palette */

/* Base Notice Wrapper */
.woocommerce-notices-wrapper {
    margin: 1rem 0;
    position: relative;
    z-index: 100;
}

/* Base Notice Styles */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info,
.woocommerce-notice {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.4s ease-out;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.woocommerce-error li,
.woocommerce-message li,
.woocommerce-info li,
.woocommerce-notice li {
    list-style: none;
    margin: 0;
    padding: 1rem 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

/* Add icons before content */
.woocommerce-error li:before,
.woocommerce-message li:before,
.woocommerce-info li:before,
.woocommerce-notice li:before {
    content: '';
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

/* ERROR NOTICES */
.woocommerce-error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.woocommerce-error li:before {
    content: '✕';
    background: #dc2626;
    color: white;
    font-size: 10px;
}

.woocommerce-error li {
    color: #991b1b;
}

.woocommerce-error a {
    color: #dc2626;
    text-decoration: underline;
    font-weight: 600;
}

.woocommerce-error a:hover {
    color: #991b1b;
    text-decoration: none;
}

/* SUCCESS/MESSAGE NOTICES */
.woocommerce-message {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 1px solid #6ee7b7;
    color: #065f46;
}

.woocommerce-message li:before {
    content: '✓';
    background: #059669;
    color: white;
    font-size: 10px;
}

.woocommerce-message li {
    color: #065f46;
}

.woocommerce-message a {
    color: #047857;
    text-decoration: underline;
    font-weight: 600;
}

.woocommerce-message a:hover {
    color: #065f46;
    text-decoration: none;
}

/* INFO NOTICES */
.woocommerce-info {
    background: linear-gradient(135deg, rgba(75, 242, 230, 0.1) 0%, rgba(0, 101, 255, 0.1) 100%);
    border: 1px solid var(--paletteColor3);
    color: var(--paletteColor1);
}

.woocommerce-info li:before {
    content: 'i';
    background: var(--paletteColor4);
    color: white;
    font-style: italic;
    font-size: 10px;
}

.woocommerce-info li {
    color: var(--paletteColor1);
}

.woocommerce-info a {
    color: var(--paletteColor4);
    text-decoration: underline;
    font-weight: 600;
}

.woocommerce-info a:hover {
    color: var(--paletteColor1);
    text-decoration: none;
}

/* GENERAL NOTICE (fallback) */
.woocommerce-notice {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid #cbd5e1;
    color: var(--paletteColor7);
}

.woocommerce-notice li:before {
    content: '!';
    background: var(--paletteColor6);
    color: white;
    font-weight: 700;
    font-size: 10px;
}

.woocommerce-notice li {
    color: var(--paletteColor7);
}

.woocommerce-notice a {
    color: var(--paletteColor1);
    text-decoration: underline;
    font-weight: 600;
}

.woocommerce-notice a:hover {
    color: var(--paletteColor4);
    text-decoration: none;
}

/* ENHANCED STYLES FOR SUBSCRIPTION-SPECIFIC ERRORS */
.woocommerce-error li:has-text("subscription"),
.woocommerce-error li:contains("subscription") {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(248, 113, 113, 0.1) 100%);
    border-radius: 8px;
    margin: 0.5rem 0;
}

/* Close/Dismiss Button */
.woocommerce-error .notice-dismiss,
.woocommerce-message .notice-dismiss,
.woocommerce-info .notice-dismiss,
.woocommerce-notice .notice-dismiss {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: currentColor;
    opacity: 0.6;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.notice-dismiss:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.1);
}

.notice-dismiss:before {
    content: '×';
    font-weight: 300;
    line-height: 1;
}

/* Animation for notices */
@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Fade out animation for dismissed notices */
.woocommerce-notice.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

/* Multiple notices stacking */
.woocommerce-notices-wrapper .woocommerce-error + .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message + .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info + .woocommerce-info {
    margin-top: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .woocommerce-error li,
    .woocommerce-message li,
    .woocommerce-info li,
    .woocommerce-notice li {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .woocommerce-error li:before,
    .woocommerce-message li:before,
    .woocommerce-info li:before,
    .woocommerce-notice li:before {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
}

/* Special styling for cart/checkout pages */
.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-checkout .woocommerce-notices-wrapper {
    margin-bottom: 2rem;
}

/* Enhanced error styling for critical subscription errors */
.woocommerce-error[data-severity="high"] {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #f87171;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
}

.woocommerce-error[data-severity="high"] li:before {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* CryptoTax branded success messages */
.woocommerce-message.cryptotax-success {
    background: linear-gradient(135deg, rgba(75, 242, 230, 0.15) 0%, rgba(0, 67, 255, 0.15) 100%);
    border: 1px solid var(--paletteColor3);
    color: var(--paletteColor1);
}

.woocommerce-message.cryptotax-success li:before {
    background: linear-gradient(135deg, var(--paletteColor3) 0%, var(--paletteColor4) 100%);
}

/* Auto-hide notices after delay */
.woocommerce-notice.auto-hide {
    animation: slideInDown 0.4s ease-out, fadeOut 0.4s ease-out 4s forwards;
}

/* Focus states for accessibility */
.woocommerce-error:focus-within,
.woocommerce-message:focus-within,
.woocommerce-info:focus-within,
.woocommerce-notice:focus-within {
    outline: 2px solid var(--paletteColor1);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .woocommerce-notices-wrapper {
        background: white !important;
        box-shadow: none !important;
        border: 1px solid #000 !important;
        color: #000 !important;
    }
}

/* WooCommerce Header Cart - CryptoTax Style */


/* Cart Header Container */
.ct-header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Cart Item Link */
.ct-cart-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--paletteColor7);
  padding: 0.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ct-dynamic-count-cart{
  background:linear-gradient(135deg,#ff4757 0%,#ff3742 100%) !important;
}

.ct-cart-item:hover {
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
  
  box-shadow: 0 8px 24px rgba(0, 67, 255, 0.3);
  transform: translateY(-2px);
}

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

/* Cart Label with Price */
.ct-label {
  margin-right: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.ct-amount {
  color: inherit;
}

.woocommerce-Price-amount {
  font-weight: 700;
  font-size: 1rem;
}

.woocommerce-Price-currencySymbol {
  font-weight: 600;
  margin-right: 1px;
}

/* Icon Container */
.ct-icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--paletteColor3) 0%, var(--paletteColor4) 100%);
  transition: all 0.3s ease;
}

.ct-cart-item:hover .ct-icon-container {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Cart Icon */
.ct-icon-container svg {
  fill: var(--paletteColor8);
  transition: all 0.3s ease;
}

/* Cart Count Badge */
.ct-dynamic-count-cart {
  position: absolute;
  top: -6px;
  right: -6px;
  background: linear-gradient(135deg, #ff4757 0%, #ff3742 100%);
  color: var(--paletteColor8);
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
  animation: bounce 0.6s ease;
  z-index: 10;
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: scale(1);
  }
  40%, 43% {
    transform: scale(1.2);
  }
}

/* Cart Header Container */
.ct-header-cart {
  position: relative;
  display: inline-block;
}

/* Cart Item Link */
.ct-cart-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.5rem;
  cursor: pointer;
}

/* Cart Dropdown Content */
.ct-cart-content {
  position: absolute;
  top: 100%;
  right: 0;
  width: 360px !important;
  max-width: 90vw;
  background: #ffffff !important;
  border-radius: 16px !important;
  box-shadow: 0 20px 60px rgba(0, 67, 255, 0.15) !important;
  border: 1px solid rgba(0, 67, 255, 0.1) !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 1000;
  margin-top: 10px;
  backdrop-filter: blur(20px);
}

/* Show dropdown on hover */
.ct-header-cart:hover .ct-cart-content,
.ct-cart-content:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Cart Dropdown Arrow */
.ct-cart-content::before {
  content: '';
  position: absolute;
  top: -8px;
  right: 20px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 1px solid rgba(0, 67, 255, 0.1);
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
  border-radius: 2px 0 0 0;
}

/* Mini Cart List */
.woocommerce-mini-cart {
  list-style: none;
  margin: 0;
  padding: 1rem;
  max-height: 300px;
  overflow-y: auto;
}

.woocommerce-mini-cart::-webkit-scrollbar {
  width: 4px;
}

.woocommerce-mini-cart::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 2px;
}

.woocommerce-mini-cart::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #0043ff 0%, #a370f1 100%);
  border-radius: 2px;
}

/* Mini Cart Item */
.woocommerce-mini-cart-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
}

.woocommerce-mini-cart-item:last-child {
  border-bottom: none;
}

/* Remove Button */
.remove_from_cart_button {
  position: absolute;
  top: 0.5rem;
  right: 0;
  width: 24px;
  height: 24px;
  background: rgba(255, 71, 87, 0.1);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 5;
}

.remove_from_cart_button:hover {
  background: #ff4757;
  transform: scale(1.1);
}

.remove_from_cart_button svg,
.remove_from_cart_button .ct-icon {
  fill: #ff4757;
  transition: all 0.3s ease;
  width: 12px;
  height: 12px;
}

/* Product Image Container */
.ct-media-container {
  flex-shrink: 0;
  margin-right: 1rem;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ct-media-container img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
}

.ct-media-container:hover img {
  transform: scale(1.05);
}

/* Product Data */
.product-data {
  flex-grow: 1;
  padding-right: 2rem;
  min-width: 0; /* Allow text to wrap */
}

.product-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333333;
  text-decoration: none;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.product-title:hover {
  color: #0043ff;
}

/* Quantity and Price */
.quantity {
  font-size: 0.875rem;
  color: #666666;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.quantity .woocommerce-Price-amount {
  font-weight: 600;
  color: #0043ff;
  margin: 0 0.25rem;
}

.wps_sfw_interval {
  font-size: 0.8rem;
  color: #888888;
  font-style: italic;
}

/* Cart Total */
.woocommerce-mini-cart__total {
  padding: 1rem;
  margin: 0;
  background: linear-gradient(135deg, rgba(0, 67, 255, 0.05) 0%, rgba(163, 112, 241, 0.05) 100%);
  border-top: 1px solid #f0f0f0;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.woocommerce-mini-cart__total strong {
  color: #333333;
}

.woocommerce-mini-cart__total .woocommerce-Price-amount {
  font-weight: 700;
  color: #0043ff;
  font-size: 1.2rem;
}

/* Cart Buttons */
.woocommerce-mini-cart__buttons {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  margin: 0;
}

.woocommerce-mini-cart__buttons .button {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

/* View Cart Button */
.woocommerce-mini-cart__buttons .button:not(.checkout) {
  background: transparent;
  color: #0043ff;
  border: 2px solid #0043ff;
}

.woocommerce-mini-cart__buttons .button:not(.checkout):hover {
  background: #0043ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 67, 255, 0.3);
}

/* Checkout Button */
.woocommerce-mini-cart__buttons .button.checkout {
  background: linear-gradient(135deg, #0043ff 0%, #a370f1 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 67, 255, 0.3);
}

.woocommerce-mini-cart__buttons .button.checkout:hover {
  background: linear-gradient(135deg, #0035cc 0%, #8f5ad6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 67, 255, 0.4);
}

/* Empty Cart State */
.woocommerce-mini-cart.cart_list.empty {
  text-align: center;
  padding: 2rem;
  color: #666666;
}

.woocommerce-mini-cart.cart_list.empty::before {
  content: '🛒';
  display: block;
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Loading State */
.ct-cart-content.loading {
  pointer-events: none;
}

.ct-cart-content.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .ct-cart-content {
    width: 320px;
    right: -50px;
  }
  
  .ct-label {
    display: none;
  }
  
  .woocommerce-mini-cart__buttons {
    flex-direction: column;
  }
  
  .woocommerce-mini-cart__buttons .button {
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .ct-cart-content {
    width: 280px;
    right: -80px;
  }
  
  .ct-media-container img {
    width: 50px;
    height: 50px;
  }
  
  .product-data {
    padding-right: 1.5rem;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .ct-cart-content .woocommerce-mini-cart-item {
    border: 2px solid #0043ff;
  }
  
  .ct-cart-content {
    border: 2px solid #0043ff;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ct-cart-content .woocommerce-mini-cart-item,
  .ct-cart-content .ct-icon-container,
  .ct-cart-content,
  .ct-cart-content .remove_from_cart_button,
  .ct-cart-content .ct-media-container img,
  .ct-cart-content .woocommerce-mini-cart__buttons .button {
    transition: none;
  }
  
  .ct-cart-content .ct-dynamic-count-cart {
    animation: none;
  }
}

/* Focus states for accessibility */
.ct-cart-item:focus,
.ct-cart-content .remove_from_cart_button:focus,
.ct-cart-content .product-title:focus,
.ct-cart-content .woocommerce-mini-cart__buttons .button:focus {
  outline: 2px solid #0043ff;
  outline-offset: 2px;
}

/* Cart content stays open when focused */
.ct-cart-content:focus-within,
.ct-header-cart:focus-within .ct-cart-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.woocommerce-mini-cart__empty-message{
  padding-top: 20px;
  padding-left: 20px;
}
.woocommerce-mini-cart ~ .buttons .button:hover{
  color: #0043ff !important;
}
.woocommerce-mini-cart ~ .buttons .checkout.button:hover{
  color: #ffffff !important;
}

.woocommerce-mini-cart__buttons > *{
  grid-column: var(--gridColumn, 1/-1) !important;
}

/* Cart Page Container */
.woocommerce-cart .ct-container-full {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.woocommerce-cart .hero-section {
  text-align: center;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(0, 67, 255, 0.05) 0%, rgba(163, 112, 241, 0.05) 100%);
  border-radius: 20px;
  margin-bottom: 3rem;
}

.woocommerce-cart .hero-section .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

/* Cart Form Container */
.woocommerce-cart .ct-woocommerce-cart-form {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

/* Cart Table */
.woocommerce-cart .shop_table.cart {
  width: 100%;
  background: var(--paletteColor8);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 67, 255, 0.1);
  border: 1px solid rgba(0, 67, 255, 0.1);
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
}

/* Table Header */
.woocommerce-cart .shop_table.cart thead {
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
}

.woocommerce-cart .shop_table.cart thead th {
  color: var(--paletteColor8);
  font-weight: 600;
  padding: 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

/* Table Body */
.woocommerce-cart .shop_table.cart tbody tr {
  border-bottom: 1px solid var(--paletteColor5);
  transition: all 0.3s ease;
}

.woocommerce-cart .shop_table.cart tbody tr:hover {
  background: rgba(0, 67, 255, 0.02);
}

.woocommerce-cart .shop_table.cart tbody tr:last-child {
  border-bottom: none;
}

.woocommerce-cart .shop_table.cart tbody td {
  padding: 2rem 1.5rem;
  vertical-align: middle;
  border: none;
}

/* Product Thumbnail */
.woocommerce-cart .product-thumbnail .ct-media-container {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.woocommerce-cart .product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.woocommerce-cart .product-thumbnail .ct-media-container:hover img {
  transform: scale(1.1);
}

/* Product Name */
.woocommerce-cart .product-name a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--paletteColor7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.woocommerce-cart .product-name a:hover {
  color: var(--paletteColor1);
}

.woocommerce-cart .product-name .price {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--paletteColor6);
}

.woocommerce-cart .product-name .woocommerce-Price-amount {
  font-weight: 600;
  color: var(--paletteColor1);
}

.woocommerce-cart .product-name .wps_sfw_interval {
  font-size: 0.85rem;
  color: var(--paletteColor6);
  font-style: italic;
}

/* Mobile Actions */
.woocommerce-cart .product-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(0, 67, 255, 0.05);
  border-radius: 10px;
}

.woocommerce-cart .product-mobile-actions .ct-product-multiply-symbol {
  color: var(--paletteColor6);
  font-weight: 600;
}

.woocommerce-cart .product-mobile-actions .woocommerce-Price-amount {
  font-weight: 600;
  color: var(--paletteColor1);
}

/* Quantity */
.woocommerce-cart .product-quantity {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--paletteColor7);
}

/* Subtotal */
.woocommerce-cart .product-subtotal .woocommerce-Price-amount {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--paletteColor1);
}

/* Remove Button */
.woocommerce-cart .product-remove a.remove,
.woocommerce-cart .product-mobile-actions a.remove {
  width: 36px;
  height: 36px;
  background: rgba(255, 71, 87, 0.1);
  border: none;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.woocommerce-cart .product-remove a.remove:hover,
.woocommerce-cart .product-mobile-actions a.remove:hover {
  background: #ff4757;
  transform: scale(1.1);
}

.woocommerce-cart .product-remove a.remove svg,
.woocommerce-cart .product-mobile-actions a.remove svg {
  fill: #ff4757;
  transition: all 0.3s ease;
  width: 14px;
  height: 14px;
}

.woocommerce-mini-cart__buttons .button.wc-forward{
  --gridColumn: var(--gridColumn, 1/-1) !important;
}

/* Actions Row */
.woocommerce-cart .shop_table.cart .actions {
  background: rgba(0, 67, 255, 0.03);
  padding: 2rem 1.5rem;
}

.woocommerce-cart .shop_table.cart .actions td {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Coupon Section */
.woocommerce-cart .coupon {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.woocommerce-cart .coupon input[type="text"] {
  padding: 0.75rem 1rem;
  border: 2px solid var(--paletteColor5);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  min-width: 200px;
}

.woocommerce-cart .coupon input[type="text"]:focus {
  border-color: var(--paletteColor1);
  box-shadow: 0 0 0 3px rgba(0, 67, 255, 0.1);
  outline: none;
}

/* Buttons */
.woocommerce-cart .button {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.woocommerce-cart .coupon .button {
  background: transparent;
  color: var(--paletteColor1);
  border: 2px solid var(--paletteColor1);
}

.woocommerce-cart .coupon .button:hover {
  background: var(--paletteColor1) !important;
  color: var(--paletteColor8) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 67, 255, 0.3);
}

.woocommerce-cart .button[name="update_cart"] {
  background: linear-gradient(135deg, var(--paletteColor3) 20%, var(--paletteColor4) 100%);
  color: var(--paletteColor8);
  opacity: 1 !important;
}

.woocommerce-cart .button[name="update_cart"]:hover:not(:disabled) {
  background: linear-gradient(135deg, var(--paletteColor4) 0%, var(--paletteColor1) 100%);
  color: var(--paletteColor8);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(75, 242, 230, 0.3);
}
.return-to-shop,.wc-empty-cart-message{
  padding:0 70px;
}
.woocommerce-cart .button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Cart Totals */
.woocommerce-cart .cart_totals {
  background: var(--paletteColor8);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 67, 255, 0.1);
  border: 1px solid rgba(0, 67, 255, 0.1);
  position: sticky;
  top: 2rem;
}

.woocommerce-cart .cart_totals h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--paletteColor7);
  margin-bottom: 1.5rem;
  text-align: center;
}

.woocommerce-cart .cart_totals .shop_table {
  width: 100%;
  border: none;
  margin-bottom: 2rem;
}

.woocommerce-cart .cart_totals .shop_table tr {
  border-bottom: 1px solid var(--paletteColor5);
}

.woocommerce-cart .cart_totals .shop_table tr:last-child {
  border-bottom: none;
  border-top: 2px solid var(--paletteColor1);
}

.woocommerce-cart .cart_totals .shop_table th,
.woocommerce-cart .cart_totals .shop_table td {
  padding: 1rem 0;
  border: none;
}

.woocommerce-cart .cart_totals .shop_table th {
  font-weight: 600;
  color: var(--paletteColor7);
  text-align: left;
}

.woocommerce-cart .cart_totals .shop_table td {
  text-align: right;
  font-weight: 600;
  color: var(--paletteColor1);
}

.woocommerce-cart .cart_totals .order-total th {
  font-size: 1.1rem;
  color: var(--paletteColor7);
}

.woocommerce-cart .cart_totals .order-total .woocommerce-Price-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--paletteColor1);
}

/* Proceed to Checkout */
.woocommerce-cart .wc-proceed-to-checkout {
  margin-top: 1.5rem;
}

.woocommerce-cart .checkout-button {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
  color: var(--paletteColor8);
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 67, 255, 0.3);
}

.woocommerce-cart .checkout-button:hover {
  background: linear-gradient(135deg, var(--paletteColor3) 0%, var(--paletteColor4) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 67, 255, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .woocommerce-cart .ct-woocommerce-cart-form {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .woocommerce-cart .cart_totals {
    position: static;
  }
}

@media (max-width: 768px) {
  .woocommerce-cart .ct-container-full {
    padding: 1rem;
  }
  
  .woocommerce-cart .hero-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  
  .woocommerce-cart .hero-section .page-title {
    font-size: 2rem;
  }
  
  .woocommerce-cart .shop_table.cart thead {
    display: none;
  }
  
  .woocommerce-cart .shop_table.cart tbody tr {
    display: block;
    margin-bottom: 2rem;
    background: var(--paletteColor8);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 67, 255, 0.1);
    border: 1px solid rgba(0, 67, 255, 0.1);
    padding: 1.5rem;
  }
  
  .woocommerce-cart .shop_table.cart tbody td {
    display: block;
    padding: 0.5rem 0;
    border: none;
  }
  
  .woocommerce-cart .product-thumbnail {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .woocommerce-cart .product-thumbnail img {
    width: 100px;
    height: 100px;
  }
  
  .woocommerce-cart .product-name {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .woocommerce-cart .product-quantity,
  .woocommerce-cart .product-subtotal {
    text-align: center;
    font-size: 1.1rem;
    margin: 0.5rem 0;
  }
  
  .woocommerce-cart .product-remove {
    text-align: center;
    margin-top: 1rem;
  }
  
  .woocommerce-cart .shop_table.cart .actions td {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .woocommerce-cart .coupon {
    width: 100%;
    justify-content: center;
  }
  
  .woocommerce-cart .coupon input[type="text"] {
    min-width: auto;
    flex: 1;
  }
}

@media (max-width: 480px) {
  .woocommerce-cart .hero-section .page-title {
    font-size: 1.8rem;
  }
  
  .woocommerce-cart .coupon {
    flex-direction: column;
    align-items: stretch;
  }
  
  .woocommerce-cart .coupon input[type="text"] {
    margin-bottom: 1rem;
  }
}

/* Accessibility Improvements */
.woocommerce-cart .button:focus,
.woocommerce-cart .coupon input[type="text"]:focus,
.woocommerce-cart .product-name a:focus,
.woocommerce-cart .product-remove a:focus {
  outline: 2px solid var(--paletteColor1);
  outline-offset: 2px;
}

/* Animation for cart updates */
@keyframes cartUpdate {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.woocommerce-cart .shop_table.cart.updating {
  animation: cartUpdate 0.6s ease-in-out;
}

/* Loading state */
.woocommerce-cart .woocommerce-cart-form.processing {
  pointer-events: none;
  opacity: 0.7;
}

.ct-woocommerce-cart-form{
  padding:30px;
}



/* Main Checkout Container */
.woocommerce-checkout {
  
  min-height: 100vh;
  padding: 2rem 0;
}

/* Hero Section */
.woocommerce-checkout .hero-section {
  
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 3rem;
}

.woocommerce-checkout .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Form Layout */
.woocommerce-checkout form.checkout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
  margin-bottom: 20px;
}

.ct-cart-content::before {
  display: none;
}

/* Customer Details Section */
.woocommerce-checkout .ct-customer-details {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 67, 255, 0.1);
}

.woocommerce-checkout .col2-set {
  display: grid;
  gap: 2rem;
}

.woocommerce-checkout .col-1,
.woocommerce-checkout .col-2 {
  width: 100%;
}

/* Section Headings */
.woocommerce-checkout h3 {
  color: var(--paletteColor7);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--paletteColor3);
  position: relative;
}

.woocommerce-checkout h3::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
}

/* Form Fields */
.woocommerce-checkout .form-row {
  margin-bottom: 1.5rem;
}

.woocommerce-checkout table.shop_table tr > :first-child{
  padding-inline-start: 20px !important;
}

.woocommerce-checkout table.shop_table tr > :last-child{
  padding-inline-end: 20px !important;
}

.woocommerce-checkout .form-row-first {
  width: 48%;
  float: left;
  margin-right: 4%;
}

.woocommerce-checkout .form-row-last {
  width: 48%;
  float: right;
}

.woocommerce-checkout .form-row-wide {
  width: 100%;
  clear: both;
}

.woocommerce-checkout .form-row::after {
  content: '';
  display: table;
  clear: both;
}

/* Labels */
.woocommerce-checkout label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--paletteColor7);
  font-size: 0.95rem;
}

.woocommerce-checkout .required {
  color: #e74c3c;
}

/* Input Fields */
.woocommerce-checkout input[type="text"],
.woocommerce-checkout input[type="email"],
.woocommerce-checkout input[type="tel"],
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  color: var(--paletteColor7);
}

.woocommerce-checkout input[type="text"]:focus,
.woocommerce-checkout input[type="email"]:focus,
.woocommerce-checkout input[type="tel"]:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  outline: none;
  border-color: var(--paletteColor1);
  box-shadow: 0 0 0 3px rgba(0, 67, 255, 0.1);
  transform: translateY(-1px);
}

/* Select2 Styling */
.woocommerce-checkout .select2-container {
  width: 100% !important;
}

.woocommerce-checkout .select2-selection--single {
  height: 50px !important;
  border: 2px solid #e9ecef !important;
  border-radius: 8px !important;
  padding: 0.875rem 1rem !important;
}

.woocommerce-checkout .select2-selection__rendered {
  line-height: 32px !important;
  padding: 0 !important;
  color: var(--paletteColor7) !important;
}

.woocommerce-checkout .select2-selection__arrow {
  height: 48px !important;
  right: 10px !important;
}

.woocommerce-checkout .select2-container--focus .select2-selection--single {
  border-color: var(--paletteColor1) !important;
  box-shadow: 0 0 0 3px rgba(0, 67, 255, 0.1) !important;
}

/* Textarea */
.woocommerce-checkout textarea {
  min-height: 100px;
  resize: vertical;
}

/* Order Review Section */
.woocommerce-checkout .ct-order-review {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 67, 255, 0.1);
  position: sticky;
  top: 2rem;
  height: fit-content;
}

.woocommerce-checkout #order_review_heading {
  margin-bottom: 2rem;
}

/* Order Review Table */
.woocommerce-checkout .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.woocommerce-checkout .shop_table th,
.woocommerce-checkout .shop_table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e9ecef;
}

.woocommerce-checkout .shop_table th {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-weight: 600;
  color: var(--paletteColor7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce-checkout .shop_table .cart_item:hover {
  background: rgba(0, 67, 255, 0.02);
}

.woocommerce-checkout .product-name {
  font-weight: 600;
  color: var(--paletteColor7);
}

.woocommerce-checkout .product-quantity {
  color: var(--paletteColor6);
  font-weight: normal;
}

.woocommerce-checkout .product-total {
  font-weight: 600;
  color: var(--paletteColor1);
  text-align: right;
}

/* Order Totals */
.woocommerce-checkout .shop_table tfoot th,
.woocommerce-checkout .shop_table tfoot td {
  font-weight: 600;
  padding: 1.25rem 1rem;
  border-bottom: 2px solid #e9ecef;
}

.woocommerce-checkout .order-total th,
.woocommerce-checkout .order-total td {
  font-size: 1.2rem;
  background: linear-gradient(135deg, rgba(0, 67, 255, 0.05) 0%, rgba(163, 112, 241, 0.05) 100%);
  border-bottom: none;
  color: var(--paletteColor1);
}

/* Recurring Information */
.woocommerce-checkout .wps_recurring_bifurcation_wrapper {
  background: linear-gradient(135deg, rgba(75, 242, 230, 0.1) 0%, rgba(0, 101, 255, 0.1) 100%);
  border-radius: 8px;
}

.woocommerce-checkout .wps_recurring_bifurcation_wrapper th h4 {
  color: var(--paletteColor4);
  font-size: 1.1rem;
  margin: 0;
}

.woocommerce-checkout .wps_recurring_bifurcation_wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-checkout .wps_recurring_bifurcation_wrapper li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.woocommerce-checkout .wps_recurring_bifurcation_wrapper label {
  font-weight: 600;
  color: var(--paletteColor7);
  margin-bottom: 0;
}

.woocommerce-checkout .wps_sfw_interval {
  color: var(--paletteColor6);
  font-weight: normal;
}

/* Payment Section */
.woocommerce-checkout #payment {
  background: #fff8f0;
  border: 2px dashed #ffc107;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0;
}

.woocommerce-checkout .woocommerce-info {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  color: #856404;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ffc107;
  margin: 0;
  font-weight: 500;
}

/* Place Order Button */
.woocommerce-checkout .button.alt,
.woocommerce-checkout #place_order {
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}

.woocommerce-checkout .button.alt:hover,
.woocommerce-checkout #place_order:hover {
  background: linear-gradient(135deg, var(--paletteColor3) 0%, var(--paletteColor4) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 67, 255, 0.3);
}

.woocommerce-checkout .button.alt:active,
.woocommerce-checkout #place_order:active {
  transform: translateY(0);
}

/* Privacy Policy */
.woocommerce-checkout .woocommerce-privacy-policy-text {
  background: rgba(0, 67, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--paletteColor3);
}

.woocommerce-checkout .woocommerce-privacy-policy-text p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--paletteColor6);
  line-height: 1.5;
}

.woocommerce-checkout .woocommerce-privacy-policy-link {
  color: var(--paletteColor1);
  text-decoration: none;
  font-weight: 600;
}

.woocommerce-checkout .woocommerce-privacy-policy-link:hover {
  color: var(--paletteColor2);
  text-decoration: underline;
}

/* Price Styling */
.woocommerce-checkout .woocommerce-Price-amount {
  font-weight: 600;
}

.woocommerce-checkout .woocommerce-Price-currencySymbol {
  color: var(--paletteColor1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .woocommerce-checkout .page-title {
    font-size: 2rem;
  }
  
  .woocommerce-checkout .hero-section {
    padding: 2rem 0;
  }
  
  .woocommerce-checkout .ct-customer-details,
  .woocommerce-checkout .ct-order-review {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .woocommerce-checkout .ct-order-review {
    position: static;
  }
  
  .woocommerce-checkout .shop_table th,
  .woocommerce-checkout .shop_table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
}

/* Additional Information Section */
.woocommerce-checkout .woocommerce-additional-fields {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

/* Loading States */
.woocommerce-checkout .processing {
  opacity: 0.6;
  pointer-events: none;
}

.woocommerce-checkout .blockUI {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}

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

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  outline: 2px solid var(--paletteColor1);
  outline-offset: 2px;
}

/* Error States */
.woocommerce-checkout .woocommerce-invalid input {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.woocommerce-checkout .woocommerce-error {
  background: #ffe6e6;
  color: #d32f2f;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #e74c3c;
  margin-bottom: 1.5rem;
}

/* Coupon Toggle Section */
.woocommerce-checkout .woocommerce-form-coupon-toggle {
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  background: linear-gradient(135deg, rgba(75, 242, 230, 0.1) 0%, rgba(0, 101, 255, 0.1) 100%);
  border: 2px solid var(--paletteColor3);
  color: var(--paletteColor7);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  margin: 0;
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon {
  color: var(--paletteColor1);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  display: inline-block;
  margin-left: 0.5rem;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon:hover {
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 67, 255, 0.3);
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon:hover::after {
  width: 100%;
}

.woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon:active {
  transform: translateY(0);
}

/* Coupon Form (when toggled) */
.woocommerce-checkout .woocommerce-form-coupon {
  background: white;
  border: 2px solid var(--paletteColor3);
  border-radius: 12px;
  padding: 2rem;
  margin: 1rem auto 2rem auto;
  max-width: 1200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: none;
  animation: fadeInDown 0.3s ease;
}

.woocommerce-checkout .woocommerce-form-coupon.show {
  display: block;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.woocommerce-checkout .woocommerce-form-coupon p {
  display: flex;
  gap: 1rem;
  align-items: end;
  flex-wrap: wrap;
  margin: 0;
}

.woocommerce-checkout .woocommerce-form-coupon label {
  font-weight: 600;
  color: var(--paletteColor7);
  margin-bottom: 0.5rem;
  display: block;
  flex: 1;
  min-width: 200px;
}

.woocommerce-checkout .woocommerce-form-coupon input[type="text"] {
  flex: 1;
  min-width: 200px;
  padding: 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.woocommerce-checkout .woocommerce-form-coupon input[type="text"]:focus {
  border-color: var(--paletteColor1);
  box-shadow: 0 0 0 3px rgba(0, 67, 255, 0.1);
  outline: none;
}

.woocommerce-checkout .woocommerce-form-coupon .button {
  background: linear-gradient(135deg, var(--paletteColor3) 0%, var(--paletteColor4) 100%);
  
  border: none;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.woocommerce-checkout .woocommerce-form-coupon .button:hover {
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 67, 255, 0.3);
}

.woocommerce-checkout .woocommerce-form-coupon .button:active {
  transform: translateY(0);
}

  .woocommerce-info:before{
    opacity: 0 !important;
  }

/* Mobile Responsive for Coupon */
@media (max-width: 768px) {
  .woocommerce-checkout .woocommerce-form-coupon-toggle {
    padding: 0 1rem;
  }
  
  .woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info:before {
    padding: 1rem;
    text-align: left;
    padding-left: 3rem;
  }


  .woocommerce-checkout .woocommerce-form-coupon-toggle .showcoupon {
    display: block;
    margin: 0.5rem 0 0 0;
    text-align: center;
  }
  
  .woocommerce-checkout .woocommerce-form-coupon {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .woocommerce-checkout .woocommerce-form-coupon p {
    flex-direction: column;
    gap: 1rem;
  }
  
  .woocommerce-checkout .woocommerce-form-coupon input[type="text"],
  .woocommerce-checkout .woocommerce-form-coupon .button {
    width: 100%;
    min-width: auto;
  }
}

/* Error States */
.woocommerce-checkout .woocommerce-invalid input {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1) !important;
}

.woocommerce-checkout .woocommerce-error {
  background: #ffe6e6;
  color: #d32f2f;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #e74c3c;
  margin-bottom: 1.5rem;
}

/* CryptoTax Custom Colors - Based on Logo */
.woocommerce-order {
  /* Primary Colors */
  --paletteColor1: #0043FF; /* Deep Blue */
  --paletteColor2: #A370F1; /* Purple */
  --paletteColor3: #4BF2E6; /* Cyan */
  --paletteColor4: #0065FF; /* Bright Blue */
  --paletteColor5: #EEEEEE; /* Light Gray */
  --paletteColor6: #777777; /* Medium Gray */
  --paletteColor7: #333333; /* Dark Gray */
  --paletteColor8: #FFFFFF; /* White */
}

/* Main Thank You Page Container */
.woocommerce-order {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
  padding: 2rem 0;
}

/* Success Notice */
.woocommerce-order .woocommerce-notice--success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border: 2px solid #28a745;
  border-left: 6px solid #28a745;
  color: #155724;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  margin: 0 auto 3rem auto;
  max-width: 1000px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(40, 167, 69, 0.15);
  position: relative;
  overflow: hidden;
}

.woocommerce-order .woocommerce-notice--success::before {
  content: '✅';
  position: absolute;
  left: 0.5rem;
  top: 48%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.woocommerce-order .woocommerce-notice--success::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Order Overview */
.woocommerce-order .woocommerce-order-overview {
  background: white;
  border-radius: 16px;
  padding: 0;
  margin: 0 auto 3rem auto;
  max-width: 1000px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 67, 255, 0.1);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  overflow: hidden;
}

.woocommerce-order .woocommerce-order-overview li {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(0, 67, 255, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.woocommerce-order .woocommerce-order-overview li:last-child {
  border-right: none;
}

.woocommerce-order .woocommerce-order-overview li:hover {
  background: linear-gradient(135deg, rgba(0, 67, 255, 0.05) 0%, rgba(163, 112, 241, 0.05) 100%);
  transform: translateY(-2px);
}

.woocommerce-order .woocommerce-order-overview li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
  border-radius: 0 0 8px 8px;
}

.woocommerce-order .woocommerce-order-overview li.order::before {
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
}

.woocommerce-order .woocommerce-order-overview li.date::before {
  background: linear-gradient(135deg, var(--paletteColor3) 0%, var(--paletteColor4) 100%);
}

.woocommerce-order .woocommerce-order-overview li.email::before {
  background: linear-gradient(135deg, var(--paletteColor2) 0%, var(--paletteColor3) 100%);
}

.woocommerce-order .woocommerce-order-overview li.total::before {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.woocommerce-order .woocommerce-order-overview li.method::before {
  background: linear-gradient(135deg, var(--paletteColor4) 0%, var(--paletteColor1) 100%);
}

.woocommerce-order .woocommerce-order-overview li strong {
  display: block;
  font-size: 1.3rem;
  color: var(--paletteColor1);
  margin-top: 0.5rem;
  font-weight: 700;
}

.woocommerce-order .woocommerce-order-overview li:not(.total) strong {
  color: var(--paletteColor7);
}

.woocommerce-order .woocommerce-order-overview li.total strong {
  color: #28a745;
  font-size: 1.5rem;
}

/* Section Styling */
.woocommerce-order section {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  margin: 0 auto 2rem auto;
  max-width: 1000px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 67, 255, 0.1);
}

.woocommerce-order h2 {
  color: var(--paletteColor7);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--paletteColor3);
  position: relative;
}

.woocommerce-order h2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
  border-radius: 2px;
}

/* Order Details Table */
.woocommerce-order .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.woocommerce-order .shop_table th {
  background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
  color: white;
  padding: 1.5rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce-order .shop_table td {
  padding: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  color: var(--paletteColor7);
  font-size: 1rem;
}

.woocommerce-order .shop_table tbody tr:hover {
  background: rgba(0, 67, 255, 0.02);
}

.woocommerce-order .shop_table .product-name a {
  color: var(--paletteColor1);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.woocommerce-order .shop_table .product-name a:hover {
  color: var(--paletteColor2);
  text-decoration: underline;
}

.woocommerce-order .shop_table .product-quantity {
  color: var(--paletteColor6);
  font-weight: normal;
  margin-left: 0.5rem;
}

.woocommerce-order .shop_table .product-total {
  font-weight: 600;
  color: var(--paletteColor1);
  text-align: right;
  font-size: 1.1rem;
}

/* Table Footer */
.woocommerce-order .shop_table tfoot th {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: var(--paletteColor7);
  font-weight: 600;
  text-align: right;
  padding: 1.25rem;
  border-bottom: 1px solid #e9ecef;
}

.woocommerce-order .shop_table tfoot td {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-weight: 600;
  text-align: right;
  padding: 1.25rem;
  border-bottom: 1px solid #e9ecef;
}

.woocommerce-order .shop_table tfoot tr:last-child th,
.woocommerce-order .shop_table tfoot tr:last-child td {
  background: linear-gradient(135deg, var(--paletteColor3) 0%, var(--paletteColor4) 100%);
  color: var(--paletteColor7);
  font-size: 1.2rem;
  font-weight: 700;
  border-bottom: none;
}

/* Customer Details Section */
.woocommerce-order .woocommerce-customer-details {
  display: grid;
  gap: 2rem;
}

.woocommerce-order .woocommerce-customer-details .woocommerce-column__title {
  color: var(--paletteColor7);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.woocommerce-order .woocommerce-customer-details .woocommerce-column__title::before {
  content: '📍';
  font-size: 1.2rem;
}

.woocommerce-order .woocommerce-customer-details address {
  background: linear-gradient(135deg, rgba(75, 242, 230, 0.08) 0%, rgba(0, 101, 255, 0.08) 100%);
  border: 2px solid rgba(75, 242, 230, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  font-style: normal;
  line-height: 1.8;
  color: var(--paletteColor7);
  font-size: 1rem;
  position: relative;
}

.woocommerce-order .woocommerce-customer-details address::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--paletteColor3) 0%, var(--paletteColor4) 100%);
  border-radius: 12px 12px 0 0;
}

.woocommerce-order .woocommerce-customer-details--phone,
.woocommerce-order .woocommerce-customer-details--email {
  margin: 1rem 0 0.5rem 0;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 8px;
  border-left: 4px solid var(--paletteColor1);
  font-weight: 500;
}

.woocommerce-order .woocommerce-customer-details--phone::before {
  content: '📞 ';
  margin-right: 0.5rem;
}

.woocommerce-order .woocommerce-customer-details--email::before {
  content: '📧 ';
  margin-right: 0.5rem;
}

/* Price Styling */
.woocommerce-order .woocommerce-Price-amount {
  font-weight: 700;
}

.woocommerce-order .woocommerce-Price-currencySymbol {
  color: var(--paletteColor1);
  font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .woocommerce-order {
    padding: 1rem;
  }
  
  .woocommerce-order .woocommerce-notice--success {
    padding: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-align: left;
    padding-left: 4rem;
  }
  
  .woocommerce-order .woocommerce-order-overview {
    grid-template-columns: 1fr;
    margin-bottom: 2rem;
  }
  
  .woocommerce-order .woocommerce-order-overview li {
    border-right: none;
    border-bottom: 1px solid rgba(0, 67, 255, 0.1);
    padding: 1.5rem;
  }
  
  .woocommerce-order .woocommerce-order-overview li:last-child {
    border-bottom: none;
  }
  
  .woocommerce-order section {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .woocommerce-order h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .woocommerce-order .shop_table {
    font-size: 0.9rem;
  }
  
  .woocommerce-order .shop_table th,
  .woocommerce-order .shop_table td {
    padding: 1rem 0.75rem;
  }
  
  .woocommerce-order .shop_table th {
    font-size: 0.85rem;
  }
  
  .woocommerce-order .woocommerce-customer-details address {
    padding: 1.25rem;
    font-size: 0.95rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .woocommerce-order .shop_table,
  .woocommerce-order .shop_table tbody,
  .woocommerce-order .shop_table tr,
  .woocommerce-order .shop_table td {
    display: block;
  }
  
  .woocommerce-order .shop_table thead {
    display: none;
  }
  
  .woocommerce-order .shop_table tr {
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
  }
  
  .woocommerce-order .shop_table td {
    border: none;
    padding: 0.5rem 0;
    text-align: left !important;
  }
  
  .woocommerce-order .shop_table td::before {
    content: attr(data-title) ": ";
    font-weight: 600;
    color: var(--paletteColor1);
  }
}

/* Loading Animation */
.woocommerce-order .loading {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

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

/* Print Styles */
@media print {
  .woocommerce-order {
    background: white;
    padding: 0;
  }
}

/* CryptoTax Custom Colors - Based on Logo */

/* Main Container */
.ct-woo-account .site-main {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

/* Hero Section */
.ct-woo-account .hero-section {
  background: linear-gradient(135deg, #0043FF 0%, #A370F1 100%);
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.ct-woo-account .hero-section::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.ct-woo-account .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Main Account Container */
.ct-woo-account .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* Navigation Sidebar */
.ct-woo-account .ct-acount-nav {
  background: white;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 67, 255, 0.1);
  overflow: hidden;
  position: sticky;
  top: 2rem;
}

.ct-woo-account .woocommerce-MyAccount-navigation {
  padding: 0;
}

.ct-woo-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ct-woo-account .woocommerce-MyAccount-navigation-link {
  border-bottom: 1px solid rgba(0, 67, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.ct-woo-account .woocommerce-MyAccount-navigation-link:last-child {
  border-bottom: none;
}

.ct-woo-account .woocommerce-MyAccount-navigation-link a {
  display: block;
  padding: 1.25rem 1.5rem;
  color: #333333 !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ct-woo-account .woocommerce-MyAccount-navigation-link a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(135deg, #0043FF 0%, #A370F1 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}


.ct-woo-account .woocommerce-MyAccount-navigation-link.is-active a {
  background: linear-gradient(135deg, rgba(0, 67, 255, 0.05) 0%, rgba(163, 112, 241, 0.05) 100%);
  color: #ffffff !important;
  padding-left: 2rem;
}
.ct-woo-account .woocommerce-MyAccount-navigation-link a:hover{
  color: #ffffff !important;
}

.ct-woo-account .woocommerce-MyAccount-navigation-link a:hover::before,
.ct-woo-account .woocommerce-MyAccount-navigation-link.is-active a::before {
  transform: scaleY(1);
}

.ct-woo-account .woocommerce-MyAccount-navigation-link.is-active a {
  background: linear-gradient(135deg, #0043FF 0%, #A370F1 100%);
  color: white;
  font-weight: 600;
}

.ct-woo-account .woocommerce-MyAccount-navigation-link.is-active a::before {
  background: #4BF2E6;
}


/* Main Content Area */
.ct-woo-account .woocommerce-MyAccount-content {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 67, 255, 0.1);
}

/* Welcome Message */
.ct-woo-account .woocommerce-MyAccount-content p:first-of-type {
  background: linear-gradient(135deg, rgba(75, 242, 230, 0.1) 0%, rgba(0, 101, 255, 0.1) 100%);
  border: 2px solid #4BF2E6;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  color: #333333;
  text-align: center;
  position: relative;
}


.ct-woo-account .woocommerce-MyAccount-content p:first-of-type strong {
  color: #0043FF;
  font-weight: 700;
}

.ct-woo-account .woocommerce-MyAccount-content p:first-of-type a {
  color: #A370F1;
  text-decoration: none;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.ct-woo-account .woocommerce-MyAccount-content p:first-of-type a:hover {
  background: #A370F1;
  color: white;
}

/* Dashboard Description */
.ct-woo-account .woocommerce-MyAccount-content p:last-of-type {
  background: rgba(0, 67, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #333333;
  border-left: 4px solid #0043FF;
}

.ct-woo-account .woocommerce-MyAccount-content p:last-of-type a {
  color: #0043FF;
  text-decoration: none;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0 0.25rem;
}

.ct-woo-account .woocommerce-MyAccount-content p:last-of-type a:hover {
  background: linear-gradient(135deg, #0043FF 0%, #A370F1 100%);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 67, 255, 0.3);
}

/* Quick Actions Cards (if needed for future enhancements) */
.ct-woo-account .quick-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
}

.ct-woo-account .quick-action-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.8) 100%);
  border: 2px solid rgba(0, 67, 255, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ct-woo-account .quick-action-card:hover {
  background: linear-gradient(135deg, rgba(0, 67, 255, 0.05) 0%, rgba(163, 112, 241, 0.05) 100%);
  border-color: #4BF2E6;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 67, 255, 0.15);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ct-woo-account .woocommerce {
    grid-template-columns: 250px 1fr;
    gap: 2rem;
  }
  
  .ct-woo-account .woocommerce-MyAccount-content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .ct-woo-account .woocommerce {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .ct-woo-account .ct-acount-nav {
    position: static;
    order: 2;
  }
  
  .ct-woo-account .woocommerce-MyAccount-content {
    order: 1;
    padding: 1.5rem;
  }
  
  .ct-woo-account .page-title {
    font-size: 2rem;
  }
  
  .ct-woo-account .hero-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  
  .ct-woo-account .woocommerce-MyAccount-navigation ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0;
  }
  
  .ct-woo-account .woocommerce-MyAccount-navigation-link {
    border-bottom: none;
    border-right: 1px solid rgba(0, 67, 255, 0.1);
  }
  
  .ct-woo-account .woocommerce-MyAccount-navigation-link:last-child {
    border-right: none;
  }
  
  .ct-woo-account .woocommerce-MyAccount-navigation-link a {
    padding: 1rem 0.75rem;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .ct-woo-account .woocommerce-MyAccount-navigation-link a::after {
    float: none;
    display: block;
    margin-top: 0.25rem;
  }
  
  .ct-woo-account .woocommerce-MyAccount-content p:first-of-type,
  .ct-woo-account .woocommerce-MyAccount-content p:last-of-type {
    padding: 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .ct-woo-account .woocommerce-MyAccount-navigation ul {
    grid-template-columns: 1fr;
  }
  
  .ct-woo-account .woocommerce-MyAccount-navigation-link {
    border-right: none;
    border-bottom: 1px solid rgba(0, 67, 255, 0.1);
  }
  
  .ct-woo-account .woocommerce-MyAccount-navigation-link a {
    text-align: left;
    padding: 1rem 1.5rem;
  }
  
  .ct-woo-account .woocommerce-MyAccount-navigation-link a::after {
    float: right;
    display: inline;
    margin-top: 0;
  }
  
  .ct-woo-account .woocommerce-MyAccount-content {
    padding: 1rem;
  }
  
  .ct-woo-account .woocommerce-MyAccount-content p:first-of-type,
  .ct-woo-account .woocommerce-MyAccount-content p:last-of-type {
    padding: 1rem;
  }
}

/* Loading States */
.ct-woo-account .loading {
  opacity: 0.6;
  pointer-events: none;
}

.ct-woo-account .loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animation for page load */
.ct-woo-account .woocommerce {
  animation: fadeInUp 0.6s ease;
}

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

/* Focus States for Accessibility */
.ct-woo-account .woocommerce-MyAccount-navigation-link a:focus {
  outline: 2px solid #0043FF;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .ct-woo-account .hero-section {
    background: none;
    color: #333333;
  }
  
  .ct-woo-account .ct-acount-nav {
    display: none;
  }
  
  .ct-woo-account .woocommerce {
    grid-template-columns: 1fr;
  }
  
  .ct-woo-account .woocommerce-MyAccount-content {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* WooCommerce Login Form Styling */

/* Container Wrapper */
.woocommerce-form-login-toggle {
    
    
    max-width: 1200px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
}

.woocommerce-form-login-toggle .woocommerce-info {
    color: var(--paletteColor7);
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.woocommerce-form-login-toggle .woocommerce-info .showlogin {
    color: var(--paletteColor1) !important;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    padding: 2px 0;
}

.woocommerce-form-login-toggle .woocommerce-info .showlogin:hover {
    color: var(--paletteColor7);
    border-bottom-color: var(--paletteColor3);
    transform: translateY(-1px);
}

/* Form Container */
.woocommerce-form-login.login {
    background: var(--paletteColor8);
    padding: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 30px rgba(0, 67, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 30px !important;
}

.woocommerce-form-login.login p:first-child {
    color: var(--paletteColor7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(238, 238, 238, 0.5);
    border-radius: 8px;
    border-left: 4px solid var(--paletteColor4);
}

/* Form Rows */
.woocommerce-form-login .form-row {
    margin-bottom: 20px;
    position: relative;
}

.woocommerce-form-login .form-row-first,
.woocommerce-form-login .form-row-last {
    width: 100%;
}

@media (min-width: 768px) {
    .woocommerce-form-login .form-row-first {
        width: 48%;
        float: left;
        margin-right: 4%;
    }

    .woocommerce-form-login .form-row-last {
        width: 48%;
        float: right;
    }
}

/* Labels */
.woocommerce-form-login .form-row label {
    display: block;
    font-weight: 600;
    color: var(--paletteColor7);
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.woocommerce-form-login .required {
    color: #e74c3c;
    font-weight: bold;
}

.woocommerce-form-login .screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Input Fields */
.woocommerce-form-login .input-text {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    color: var(--paletteColor7);
    background: var(--paletteColor8);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.woocommerce-form-login .input-text:focus {
    outline: none;
    border-color: var(--paletteColor1);
    box-shadow: 0 0 0 3px rgba(0, 67, 255, 0.1);
    transform: translateY(-1px);
}

.woocommerce-form-login .input-text:hover {
    border-color: var(--paletteColor4);
}

/* Password Input Container */
.woocommerce-form-login .password-input {
    position: relative;
    display: block;
}

.woocommerce-form-login .password-input input {
    padding-right: 50px;
}

.woocommerce-form-login .show-password-input {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--paletteColor6);
    cursor: pointer;
    font-size: 14px;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.woocommerce-form-login .show-password-input:hover {
    color: var(--paletteColor1);
    background: rgba(0, 67, 255, 0.1);
}

.woocommerce-form-login .show-password-input::after {
    content: "👁";
    font-size: 16px;
}

/* Clear Fix */
.woocommerce-form-login .clear {
    clear: both;
    height: 0;
    overflow: hidden;
}

/* Checkbox Container */
.woocommerce-form-login .woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
}

.woocommerce-form-login .woocommerce-form__input-checkbox {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    accent-color: var(--paletteColor1);
    cursor: pointer;
}

/* Submit Button */
.woocommerce-form-login .woocommerce-button.button {
    background: linear-gradient(135deg, var(--paletteColor1) 0%, var(--paletteColor2) 100%);
    color: var(--paletteColor8);
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 67, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.woocommerce-form-login .woocommerce-button.button:hover {
    background: linear-gradient(135deg, var(--paletteColor3) 0%, var(--paletteColor4) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 67, 255, 0.4);
}

.woocommerce-form-login .woocommerce-button.button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 67, 255, 0.3);
}

/* Lost Password Link */
.woocommerce-form-login .lost_password {
    text-align: center;
    margin-top: 20px;
}

.woocommerce-form-login .lost_password a {
    color: var(--paletteColor4);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
    display: inline-block;
}

.woocommerce-form-login .lost_password a:hover {
    color: var(--paletteColor1);
    background: rgba(0, 67, 255, 0.05);
    transform: translateY(-1px);
}

/* Hidden Inputs */
.woocommerce-form-login input[type="hidden"] {
    display: none;
}

/* Responsive Design */
@media (max-width: 767px) {
    .woocommerce-form-login .woocommerce-form.login {
        padding: 20px;
    }
    
    .woocommerce-form-login .form-row-first,
    .woocommerce-form-login .form-row-last {
        width: 100% !important;
        float: none !important;
        margin-right: 0 !important;
    }
    
    .woocommerce-form-login .form-row-last {
        margin-top: 20px;
    }
}

/* Focus States for Accessibility */
.woocommerce-form-login .showlogin:focus,
.woocommerce-form-login .woocommerce-button.button:focus,
.woocommerce-form-login .lost_password a:focus,
.woocommerce-form-login .show-password-input:focus {
    outline: 2px solid var(--paletteColor3);
    outline-offset: 2px;
}

/* Loading State */
.woocommerce-form-login .woocommerce-button.button.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.woocommerce-form-login .woocommerce-button.button.loading::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}