/**
 * WPConverter Theme Structure CSS
 * Based on OceanWP with comprehensive styling for WordPress native pages
 * Applied ONLY to non-converted pages (posts, categories, WooCommerce, etc.)
 */

/* ==========================================================================
   1. CSS RESET & BASE
   ========================================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em,
img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i,
center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section,
summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #4a4a4a;
  background-color: #fff;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
  color: #333;
}

h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }

p { margin-bottom: 20px; }

a {
  color: #13aff0;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover { color: #0b7cac; }

strong, b { font-weight: 600; }
em, i { font-style: italic; }

blockquote {
  padding: 20px 30px;
  margin: 20px 0;
  border-left: 4px solid #13aff0;
  background-color: #f9f9f9;
  font-style: italic;
}

code, pre {
  font-family: "Monaco", "Menlo", "Consolas", monospace;
  background-color: #f5f5f5;
  padding: 2px 6px;
  border-radius: 3px;
}

pre {
  padding: 15px;
  overflow-x: auto;
  margin-bottom: 20px;
}

hr {
  border: none;
  border-top: 1px solid #eaeaea;
  margin: 30px 0;
}

/* ==========================================================================
   3. IMAGES & MEDIA
   ========================================================================== */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

figure {
  margin: 0 0 20px;
}

figcaption {
  font-size: 13px;
  color: #777;
  text-align: center;
  padding-top: 10px;
}

/* ==========================================================================
   4. LISTS
   ========================================================================== */
ul, ol {
  margin: 0 0 20px 25px;
}

ul { list-style: disc; }
ol { list-style: decimal; }

li { margin-bottom: 8px; }

ul ul, ol ol, ul ol, ol ul {
  margin-bottom: 0;
  margin-top: 8px;
}

/* ==========================================================================
   5. TABLES
   ========================================================================== */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
}

th {
  font-weight: 600;
  background-color: #f9f9f9;
  color: #333;
}

tbody tr:hover {
  background-color: #fafafa;
}

/* ==========================================================================
   6. FORMS
   ========================================================================== */
form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="url"],
form input[type="search"],
form input[type="tel"],
form input[type="number"],
form input[type="date"],
form select,
form textarea {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

form input:focus,
form select:focus,
form textarea:focus {
  border-color: #13aff0;
  outline: none;
  box-shadow: 0 0 0 3px rgba(19, 175, 240, 0.1);
}

form textarea {
  min-height: 150px;
  resize: vertical;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #333;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
}

/* Buttons */
input[type="button"],
input[type="reset"],
input[type="submit"],
button[type="submit"],
.button,
.btn,
.wp-block-button__link {
  display: inline-block;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #13aff0;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1;
}

input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
button[type="submit"]:hover,
.button:hover,
.btn:hover,
.wp-block-button__link:hover {
  background-color: #0b7cac;
  color: #fff;
}

button:disabled,
input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================================================================
   7. LAYOUT CONTAINERS
   ========================================================================== */
.container,
.content-area,
.site-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrap {
  padding: 40px 0;
}

/* Two Column Layout */
.col2-set:after {
  content: "";
  display: table;
  clear: both;
}

.col2-set .col-1 {
  float: left;
  width: 48%;
}

.col2-set .col-2 {
  float: right;
  width: 48%;
}

/* ==========================================================================
   8. WORDPRESS CONTENT
   ========================================================================== */

/* Entry Header */
.entry-header {
  margin-bottom: 30px;
}

.entry-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.entry-title a {
  color: #333;
}

.entry-title a:hover {
  color: #13aff0;
}

/* Entry Meta */
.entry-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

.entry-meta a {
  color: #777;
}

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

.entry-meta span {
  margin-right: 15px;
}

/* Entry Content */
.entry-content {
  margin-bottom: 30px;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

/* Entry Footer */
.entry-footer {
  padding-top: 20px;
  border-top: 1px solid #eaeaea;
  font-size: 13px;
  color: #777;
}

/* Featured Image */
.post-thumbnail {
  margin-bottom: 25px;
}

.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 3px;
}

/* ==========================================================================
   9. COMMENTS
   ========================================================================== */
.comments-area {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #eaeaea;
}

.comments-title {
  font-size: 22px;
  margin-bottom: 30px;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
}

.comment:last-child {
  border-bottom: none;
}

.comment-author {
  margin-bottom: 10px;
}

.comment-author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  float: left;
}

.comment-author .fn {
  font-weight: 600;
  color: #333;
}

.comment-meta {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.comment-content {
  margin-left: 65px;
}

.comment-reply-link {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Comment Form */
.comment-respond {
  margin-top: 40px;
}

.comment-reply-title {
  font-size: 20px;
  margin-bottom: 20px;
}

.comment-form label {
  display: block;
  margin-bottom: 5px;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.comment-form-cookies-consent input {
  margin-right: 10px;
}

.comment-form-cookies-consent label {
  margin-bottom: 0;
  font-weight: normal;
}

/* ==========================================================================
   10. PAGINATION
   ========================================================================== */
.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
}

.pagination a,
.pagination span,
.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: #f5f5f5;
  color: #333;
  border-radius: 3px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination a:hover,
.nav-links a:hover {
  background-color: #13aff0;
  color: #fff;
}

.pagination .current,
.nav-links .current {
  background-color: #13aff0;
  color: #fff;
}

/* ==========================================================================
   11. SIDEBAR & WIDGETS
   ========================================================================== */
.widget {
  margin-bottom: 40px;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #13aff0;
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.widget li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget a {
  color: #555;
}

.widget a:hover {
  color: #13aff0;
}

/* Search Widget */
.widget_search .search-form {
  display: flex;
}

.widget_search .search-field {
  flex: 1;
  border-radius: 3px 0 0 3px;
  border-right: none;
  margin-bottom: 0;
}

.widget_search .search-submit {
  border-radius: 0 3px 3px 0;
  padding: 12px 20px;
}

/* ==========================================================================
   12. WOOCOMMERCE - GENERAL
   ========================================================================== */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  display: inline-block;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #13aff0;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
  background-color: #0b7cac;
  color: #fff;
}

.woocommerce .button.alt,
.woocommerce button.button.alt {
  background-color: #13aff0;
}

.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover {
  background-color: #0b7cac;
}

/* Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  display: block;
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 3px;
  font-size: 14px;
}

.woocommerce-message {
  background-color: #e8f8ef;
  border-left: 4px solid #57bf6d;
  color: #2d6a3b;
}

.woocommerce-info {
  background-color: #e8f4fd;
  border-left: 4px solid #13aff0;
  color: #0b7cac;
}

.woocommerce-error {
  background-color: #fdeaea;
  border-left: 4px solid #e2401c;
  color: #a42c12;
  list-style: none;
  padding-left: 20px;
}

/* Price */
.woocommerce .price,
.woocommerce .amount {
  color: #57bf6d;
  font-weight: 600;
}

.woocommerce .price del {
  color: #999;
  font-weight: 400;
  margin-right: 8px;
}

.woocommerce .price ins {
  text-decoration: none;
}

/* Sale Badge */
.woocommerce .onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 50px;
  min-height: 50px;
  padding: 5px;
  background-color: #e2401c;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
}

/* ==========================================================================
   13. WOOCOMMERCE - PRODUCTS GRID
   ========================================================================== */
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce ul.products li.product {
  position: relative;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: auto;
  display: block;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  padding: 15px 15px 5px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.woocommerce ul.products li.product .price {
  padding: 0 15px 15px;
  font-size: 16px;
}

.woocommerce ul.products li.product .button {
  display: block;
  text-align: center;
  margin: 0 15px 15px;
  width: calc(100% - 30px);
}

/* Responsive Grid */
@media (max-width: 991px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   14. WOOCOMMERCE - SINGLE PRODUCT
   ========================================================================== */
.woocommerce div.product {
  margin-bottom: 40px;
}

.woocommerce div.product div.images {
  float: left;
  width: 48%;
}

.woocommerce div.product div.images img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.woocommerce div.product div.summary {
  float: right;
  width: 48%;
}

.woocommerce div.product .product_title {
  font-size: 28px;
  margin-bottom: 15px;
}

.woocommerce div.product .price {
  font-size: 24px;
  margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Quantity */
.woocommerce .quantity {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
}

.woocommerce .quantity .qty {
  width: 60px;
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

/* Variations */
.woocommerce div.product form.cart .variations {
  margin-bottom: 20px;
}

.woocommerce div.product form.cart .variations td {
  padding: 10px 0;
}

.woocommerce div.product form.cart .variations label {
  font-weight: 600;
}

.woocommerce div.product form.cart .variations select {
  min-width: 200px;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs {
  clear: both;
  padding-top: 40px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eaeaea;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 15px 25px;
  color: #555;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: #13aff0;
  border-bottom-color: #13aff0;
}

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 30px 0;
}

/* Related Products */
.woocommerce div.product .related.products h2,
.woocommerce div.product .upsells.products h2 {
  font-size: 22px;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary {
    float: none;
    width: 100%;
  }
  
  .woocommerce div.product div.images {
    margin-bottom: 30px;
  }
}

/* ==========================================================================
   15. WOOCOMMERCE - CART
   ========================================================================== */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 15px;
  border-bottom: 1px solid #eaeaea;
  text-align: left;
}

.woocommerce table.shop_table th {
  background-color: #f9f9f9;
  font-weight: 600;
}

.woocommerce table.shop_table .product-thumbnail img {
  width: 80px;
  height: auto;
  border-radius: 3px;
}

.woocommerce table.shop_table .product-name a {
  color: #333;
  font-weight: 500;
}

.woocommerce table.shop_table .product-name a:hover {
  color: #13aff0;
}

.woocommerce table.shop_table .product-remove a {
  color: #e2401c;
  font-size: 18px;
}

.woocommerce table.shop_table .product-remove a:hover {
  color: #a42c12;
}

.woocommerce table.shop_table .actions {
  padding: 20px;
}

/* Cart Totals */
.woocommerce .cart-collaterals {
  margin-top: 40px;
}

.woocommerce .cart_totals {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 5px;
}

.woocommerce .cart_totals h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

.woocommerce .cart_totals table {
  margin-bottom: 20px;
}

.woocommerce .cart_totals .order-total {
  font-size: 18px;
  font-weight: 600;
}

.woocommerce .wc-proceed-to-checkout {
  margin-top: 20px;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button {
  display: block;
  width: 100%;
  text-align: center;
  padding: 18px 30px;
  font-size: 14px;
}

/* ==========================================================================
   16. WOOCOMMERCE - CHECKOUT
   ========================================================================== */
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eaeaea;
}

.woocommerce form .form-row {
  margin-bottom: 20px;
}

.woocommerce form .form-row label {
  display: block;
  margin-bottom: 5px;
}

.woocommerce form .form-row .required {
  color: #e2401c;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
  width: 48%;
  display: inline-block;
}

.woocommerce form .form-row-first {
  float: left;
}

.woocommerce form .form-row-last {
  float: right;
}

/* Order Review */
.woocommerce-checkout #order_review {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 5px;
}

.woocommerce-checkout #order_review h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

/* Payment Methods */
.woocommerce-checkout #payment {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 5px;
}

.woocommerce-checkout #payment ul.payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #eaeaea;
}

.woocommerce-checkout #payment ul.payment_methods li {
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
  border-bottom: none;
}

.woocommerce-checkout #payment ul.payment_methods li label {
  font-weight: 600;
  cursor: pointer;
}

.woocommerce-checkout #payment div.payment_box {
  padding: 15px 20px;
  background: #f9f9f9;
  margin-top: 15px;
  border-radius: 3px;
}

.woocommerce-checkout #payment #place_order {
  width: 100%;
  padding: 18px 30px;
  font-size: 14px;
  margin-top: 20px;
}

@media (max-width: 767px) {
  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last {
    width: 100%;
    float: none;
  }
}

/* ==========================================================================
   17. WOOCOMMERCE - MY ACCOUNT
   ========================================================================== */
.woocommerce-account .woocommerce-MyAccount-navigation {
  float: left;
  width: 25%;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  border-radius: 5px;
  overflow: hidden;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  border-bottom: 1px solid #eaeaea;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 15px 20px;
  color: #555;
  transition: all 0.3s ease;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: #13aff0;
  color: #fff;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: right;
  width: 72%;
}

/* Login/Register Forms */
.woocommerce-account .u-columns {
  display: flex;
  gap: 40px;
}

.woocommerce-account .u-columns .u-column1,
.woocommerce-account .u-columns .u-column2 {
  flex: 1;
}

.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 5px;
}

.woocommerce-account .woocommerce-form-login h2,
.woocommerce-account .woocommerce-form-register h2 {
  font-size: 20px;
  margin-bottom: 25px;
}

.woocommerce-account .woocommerce-form-login .button,
.woocommerce-account .woocommerce-form-register .button {
  width: 100%;
}

.woocommerce-account .lost_password {
  margin-top: 15px;
  text-align: center;
}

@media (max-width: 767px) {
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }
  
  .woocommerce-account .woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
  }
  
  .woocommerce-account .u-columns {
    flex-direction: column;
  }
}

/* ==========================================================================
   18. WOOCOMMERCE - WIDGETS
   ========================================================================== */
.widget_product_categories ul,
.widget_layered_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget_product_categories li,
.widget_layered_nav li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
}

.widget_product_categories li a,
.widget_layered_nav li a {
  color: #555;
}

.widget_product_categories li a:before,
.widget_layered_nav li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 1px solid #ddd;
  border-radius: 2px;
}

.widget_product_categories li.current-cat a:before {
  background-color: #13aff0;
  border-color: #13aff0;
}

.widget_product_categories .count,
.widget_layered_nav .count {
  float: right;
  background: #f5f5f5;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 12px;
}

/* Price Filter */
.widget_price_filter .price_slider_wrapper {
  padding-top: 15px;
}

.widget_price_filter .ui-slider {
  height: 6px;
  background: #eaeaea;
  border-radius: 3px;
  margin-bottom: 20px;
}

.widget_price_filter .ui-slider .ui-slider-range {
  background: #13aff0;
  border-radius: 3px;
}

.widget_price_filter .ui-slider .ui-slider-handle {
  width: 18px;
  height: 18px;
  background: #fff;
  border: 2px solid #13aff0;
  border-radius: 50%;
  cursor: pointer;
  top: -6px;
}

.widget_price_filter .price_slider_amount {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.widget_price_filter .price_label {
  font-weight: 600;
}

/* ==========================================================================
   19. ARCHIVES & CATEGORIES
   ========================================================================== */
.archive-header,
.page-header {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.archive-title,
.page-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.archive-description,
.taxonomy-description {
  color: #666;
  line-height: 1.8;
}

/* Category List */
.woocommerce .term-description {
  margin-bottom: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 5px;
}

/* Ordering */
.woocommerce .woocommerce-ordering {
  margin-bottom: 25px;
}

.woocommerce .woocommerce-ordering select {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 3px;
}

/* Result Count */
.woocommerce .woocommerce-result-count {
  color: #777;
  margin-bottom: 25px;
}

/* ==========================================================================
   20. BREADCRUMBS
   ========================================================================== */
.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 25px;
  padding: 15px 0;
  font-size: 13px;
  color: #777;
}

.woocommerce .woocommerce-breadcrumb a {
  color: #555;
}

.woocommerce .woocommerce-breadcrumb a:hover {
  color: #13aff0;
}

/* ==========================================================================
   21. STAR RATINGS
   ========================================================================== */
.woocommerce .star-rating {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: #f5c518;
  overflow: hidden;
  position: relative;
  width: 80px;
  height: 16px;
}

.woocommerce .star-rating:before {
  content: "★★★★★";
  color: #ddd;
  float: left;
  letter-spacing: 2px;
}

.woocommerce .star-rating span {
  overflow: hidden;
  float: left;
  position: absolute;
  top: 0;
  left: 0;
}

.woocommerce .star-rating span:before {
  content: "★★★★★";
  letter-spacing: 2px;
}

/* ==========================================================================
   22. NOTICES & ALERTS
   ========================================================================== */
.woocommerce-store-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 20px;
  background-color: #13aff0;
  color: #fff;
  text-align: center;
  z-index: 999;
}

.woocommerce-store-notice a {
  color: #fff;
  text-decoration: underline;
}

/* ==========================================================================
   23. FOOTER
   ========================================================================== */
.site-footer {
  background-color: #333;
  color: #aaa;
  padding: 40px 0;
  margin-top: 60px;
}

.site-footer a {
  color: #fff;
}

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

.site-footer .widget-title {
  color: #fff;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 991px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .footer-widgets {
    grid-template-columns: 1fr;
  }
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================================================
   24. UTILITIES
   ========================================================================== */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.visible { display: block !important; }

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

/* Screen Reader Text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* ==========================================================================
   25. ANIMATIONS
   ========================================================================== */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.woocommerce button.button.loading:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border: 2px solid #fff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

/* ==========================================================================
   26. PRINT STYLES
   ========================================================================== */
@media print {
  body {
    background: #fff;
    color: #000;
  }
  
  a { color: #000; }
  
  .site-header,
  .site-footer,
  .woocommerce-MyAccount-navigation,
  .comments-area,
  .pagination,
  button,
  input[type="submit"] {
    display: none !important;
  }
}
