/* WooCommerce Specific Styles */
nav.woocommerce-pagination,.page-numbers{
    float: right;
    width: 100%;
	margin:10px 0 0;
}
.page-numbers li {
    float: right;
    width: 45px;
    height: 45px;
	list-style-type:none;
	margin:0 1%;
}
.page-numbers li a {
    float: right;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #fff;
    color: #00209d;
    text-decoration: none;
    line-height: 3;
    border-radius: 8px;
}
.page-numbers li span {
    float: right;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #00209d;
    color: #fff;
    text-decoration: none;
    line-height: 3;
    border-radius: 8px;
}
/* Product Single Page */
.product-single {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-gallery-main {
    margin-bottom: var(--spacing-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--glass-card);
    padding: var(--spacing-lg);
}

.main-product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.product-gallery-thumbnails {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding: var(--spacing-sm) 0;
}

.product-gallery-thumbnails img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-gallery-thumbnails img:hover,
.product-gallery-thumbnails img.active {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.product-summary {
    padding: var(--spacing-lg);
}

.product-header {
    margin-bottom: var(--spacing-lg);
}

.product-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.stars {
    color: var(--accent-color);
    font-size: var(--font-size-lg);
}

.rating-count {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.product-price {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
}

.product-description {
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    color: #cdcdd0;
}

.product-meta {
    background: var(--glass-bg);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-lg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.product-sku,
.product-stock {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--glass-border);
}

.product-sku:last-child,
.product-stock:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.meta-label {
    font-weight: 600;
    color: var(--text-color);
}

.meta-value {
    color: var(--text-secondary);
}

.meta-value.in-stock {
    color: var(--success-color);
}

.meta-value.out-of-stock {
    color: var(--error-color);
}

.quantity-wrapper {
    margin-bottom: var(--spacing-lg);
}

.quantity-wrapper label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-color);
}

.quantity {
    position: relative;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    float: right;
    width: 100%;
    height: 50px;
    overflow: hidden;
}
input#quantity {
    float: right;
    width: 100%;
}
.related-products .product-card{
    width: 100% !important;
}
.stars {
    display: none;
}
.qty-plus {
    position: absolute;
    right: 0;
    top: 0;
}
.qty-minus {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
}
.qty-button {
    background: none;
    border: none;
    padding: var(--spacing-md);
    cursor: pointer;
    color: var(--text-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.qty-button:hover {
    background: var(--primary-color);
    color: white;
}

.qty {
    border: none;
    background: none;
    padding: var(--spacing-md);
    text-align: center;
    width: 80px;
    color: var(--text-color);
    font-weight: 600;
}

.qty:focus {
    outline: none;
}



.single_add_to_cart_button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-lg) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.single_add_to_cart_button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.single_add_to_cart_button:active {
    transform: translateY(0);
}

.single_add_to_cart_button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

.single_add_to_cart_button .loading-spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Comments Section */
.comments-area {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-2xl) 0;
    border-top: 1px solid var(--glass-border);
}

.comments-title {
    color: var(--text-color);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-xl) 0;
}

.comment-body {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.comment-author img {
    border-radius: 50%;
    margin-left: var(--spacing-md);
    border: 2px solid var(--glass-border);
}

.comment-author .fn {
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
}

.comment-meta {
    margin-right: auto;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.comment-content {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.comment-awaiting-moderation {
    color: var(--warning-color);
    font-style: italic;
    background: rgba(255, 193, 7, 0.1);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    border: 1px solid var(--warning-color);
}

.reply {
    text-align: left;
}

.reply a {
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: all 0.3s ease;
}

.reply a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Comment Form */
.comment-form {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.comment-form h3 {
    color: var(--text-color);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.comment-notes {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.comment-form-rating,
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-cookies-consent {
    margin-bottom: var(--spacing-lg);
}

.comment-form-rating label,
.comment-form-comment label,
.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.comment-form-rating select {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    color: var(--text-color);
    font-size: var(--font-size-md);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    transition: all 0.3s ease;
}

.comment-form-rating select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

.comment-form-comment textarea {
    width: 100%;
    min-height: 120px;
    padding: var(--spacing-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    color: var(--text-color);
    font-size: var(--font-size-md);
    font-family: inherit;
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    transition: all 0.3s ease;
    resize: vertical;
}

.comment-form-comment textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    color: var(--text-color);
    font-size: var(--font-size-md);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    transition: all 0.3s ease;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-url input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin: 0;
    width: auto;
    margin-top: 4px;
}

.comment-form-cookies-consent label {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1.4;
}

.comment-form .submit {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-xl);
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.comment-form .submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.comment-form .submit:active {
    transform: translateY(0);
}

/* Star Rating */
.star-rating {
    display: inline-flex;
    gap: 2px;
    margin-bottom: var(--spacing-sm);
}

.star-rating .star {
    color: #ddd;
    font-size: 18px;
    transition: color 0.2s ease;
    cursor: pointer;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #ffc107;
}

.star-rating .star.filled {
    color: #ffc107;
}

/* Comment Navigation */
.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin: var(--spacing-xl) 0;
}

.comment-navigation a {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.comment-navigation a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Must Log In */
.must-log-in {
    text-align: center;
    color: var(--text-muted);
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.must-log-in a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.must-log-in a:hover {
    text-decoration: underline;
}

/* Logged In As */
.logged-in-as {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    color: var(--text-muted);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.logged-in-as a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.logged-in-as a:hover {
    text-decoration: underline;
}

/* WooCommerce My Account Page Styles */
.woocommerce-account .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-2xl) 0;
    display: grid;
    grid-template-columns: 20% 80%;
    gap: var(--spacing-2xl);
    align-items: start;
}

.woocommerce-account .woocommerce h2,
.woocommerce-account .woocommerce h3 {
    color: var(--text-color);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.woocommerce-account .woocommerce p {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

/* My Account Content - Left Side */
.woocommerce-MyAccount-content {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    order: 2;
}

/* My Account Navigation - Right Side */
.woocommerce-MyAccount-navigation {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    position: sticky;
    top: var(--spacing-xl);
    order: 1;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.woocommerce-MyAccount-navigation li {
    margin: 0;
}

.woocommerce-MyAccount-navigation a {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.woocommerce-MyAccount-navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: var(--radius-md);
}

.woocommerce-MyAccount-navigation a svg {
    position: relative;
    z-index: 1;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.woocommerce-MyAccount-navigation a span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation a:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.woocommerce-MyAccount-navigation a:hover::before {
    opacity: 1;
}

.woocommerce-MyAccount-navigation a:hover svg,
.woocommerce-MyAccount-navigation a:hover span {
    color: white;
}

.woocommerce-MyAccount-navigation .is-active a {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.woocommerce-MyAccount-navigation .is-active a::before {
    opacity: 0;
}

.woocommerce-MyAccount-navigation .is-active a svg {
    color: white;
}

/* Forms */
.woocommerce form .form-row {
    margin-bottom: var(--spacing-lg);
}

.woocommerce form .form-row label {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    display: block;
}

.woocommerce form .form-row input[type="text"],
.woocommerce form .form-row input[type="email"],
.woocommerce form .form-row input[type="password"],
.woocommerce form .form-row input[type="tel"],
.woocommerce form .form-row input[type="url"],
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    color: var(--text-color);
    font-size: var(--font-size-md);
    transition: all 0.3s ease;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

/* Buttons */
.woocommerce button[type="submit"],
.woocommerce .button,
.woocommerce input[type="submit"] {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    font-size: var(--font-size-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.woocommerce button[type="submit"]::before,
.woocommerce .button::before,
.woocommerce input[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.woocommerce button[type="submit"]:hover,
.woocommerce .button:hover,
.woocommerce input[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.woocommerce button[type="submit"]:hover::before,
.woocommerce .button:hover::before,
.woocommerce input[type="submit"]:hover::before {
    left: 100%;
}

.woocommerce .button.alt {
    background: var(--secondary-color);
    color: white;
}

.woocommerce .button.alt:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Orders Table */
.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--glass-border);
    text-align: right;
}

.woocommerce table.shop_table th {
    background: var(--glass-card);
    color: var(--text-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

.woocommerce table.shop_table tr:hover {
    background: rgba(var(--primary-color-rgb), 0.05);
}

.woocommerce table.shop_table .order-number a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woocommerce table.shop_table .order-number a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Links in My Account */
.woocommerce-MyAccount-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.woocommerce-MyAccount-content a:visited {
    color: var(--primary-color);
}

.woocommerce-MyAccount-content a:focus {
    color: var(--primary-color);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Cart Page Styles */
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-2xl) 0;
}

.woocommerce-cart .woocommerce h1,
.woocommerce-cart .woocommerce h2,
.woocommerce-cart .woocommerce h3 {
    color: var(--text-color);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.woocommerce-cart .woocommerce p {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

/* Cart Table */
.woocommerce-cart .cart {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    margin-bottom: var(--spacing-2xl);
}

.woocommerce-cart .shop_table {
    width: 100%;
    border-collapse: collapse;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
}

.woocommerce-cart .shop_table th,
.woocommerce-cart .shop_table td {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--glass-border);
    text-align: right;
}

.woocommerce-cart .shop_table th {
    background: var(--glass-card);
    color: var(--text-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

.woocommerce-cart .shop_table tr:hover {
    background: rgba(var(--primary-color-rgb), 0.05);
}

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

.woocommerce-cart .shop_table .product-name a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.woocommerce-cart .shop_table .product-remove a {
    color: var(--danger-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
}

.woocommerce-cart .shop_table .product-remove a:hover {
    color: white;
    background: var(--danger-color);
    transform: scale(1.1);
}

/* Cart Totals */
.woocommerce-cart .cart_totals {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    margin-bottom: var(--spacing-2xl);
}

.woocommerce-cart .cart_totals h2 {
    color: var(--text-color);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--primary-color);
}

.woocommerce-cart .cart_totals .shop_table {
    margin-bottom: var(--spacing-lg);
}

.woocommerce-cart .cart_totals .shop_table th,
.woocommerce-cart .cart_totals .shop_table td {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--glass-border);
}

.woocommerce-cart .cart_totals .shop_table .order-total {
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--text-color);
    border-top: 2px solid var(--primary-color);
}

/* Cart Actions */
.woocommerce-cart .cart .actions {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.woocommerce-cart .cart .actions .coupon {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.woocommerce-cart .cart .actions .coupon label {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0;
}

.woocommerce-cart .cart .actions .coupon input[type="text"] {
    flex: 1;
    padding: var(--spacing-md);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    background: var(--glass-bg);
    color: var(--text-color);
    font-size: var(--font-size-md);
    transition: all 0.3s ease;
}

.woocommerce-cart .cart .actions .coupon input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-color-rgb), 0.2);
}

.woocommerce-cart .cart .actions .coupon .button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: var(--font-size-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.woocommerce-cart .cart .actions .coupon .button:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Checkout Button */
.woocommerce-cart .wc-proceed-to-checkout {
    text-align: center;
    margin-top: var(--spacing-xl);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-lg) var(--spacing-2xl);
    border-radius: var(--radius-md);
    font-size: var(--font-size-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover::before {
    left: 100%;
}

/* Empty Cart */
.woocommerce-cart .cart-empty {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.woocommerce-cart .cart-empty h2 {
    color: var(--text-color);
    font-size: var(--font-size-2xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.woocommerce-cart .cart-empty p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    font-size: var(--font-size-lg);
}

.woocommerce-cart .cart-empty .return-to-shop {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.woocommerce-cart .cart-empty .return-to-shop:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Links in Cart Page */
.woocommerce-cart a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-cart a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.woocommerce-cart a:visited {
    color: var(--primary-color);
}

.woocommerce-cart a:focus {
    color: var(--primary-color);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.woocommerce table.shop_table .order-status {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.woocommerce table.shop_table .order-status:hover {
    transform: scale(1.05);
}

.woocommerce table.shop_table .order-status.completed {
    background: var(--success-color);
    color: white;
}

.woocommerce table.shop_table .order-status.processing {
    background: var(--warning-color);
    color: white;
}

.woocommerce table.shop_table .order-status.pending {
    background: var(--text-muted);
    color: white;
}

.woocommerce table.shop_table .order-status.cancelled {
    background: var(--danger-color);
    color: white;
}

/* Addresses */
.woocommerce-Address {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    transition: all 0.3s ease;
}

.woocommerce-Address:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.woocommerce-Address h3 {
    color: var(--text-color);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--primary-color);
}

.woocommerce-Address address {
    color: var(--text-muted);
    line-height: 1.6;
    font-style: normal;
}

/* Login/Register Forms */
.woocommerce-form-login,
.woocommerce-form-register {
    max-width: 500px;
    margin: 0 auto;
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-2xl);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.woocommerce-form-login h2,
.woocommerce-form-register h2 {
    color: var(--text-color);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.woocommerce-form-login .woocommerce-form-login__rememberme {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.woocommerce-form-login .woocommerce-form-login__rememberme input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.woocommerce-form-login .woocommerce-LostPassword {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.woocommerce-form-login .woocommerce-LostPassword a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.woocommerce-form-login .woocommerce-LostPassword a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: var(--glass-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    transition: all 0.3s ease;
}

.woocommerce-message:hover,
.woocommerce-info:hover,
.woocommerce-error:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.woocommerce-message {
    border-left: 4px solid var(--success-color);
}

.woocommerce-info {
    border-left: 4px solid var(--primary-color);
}

.woocommerce-error {
    border-left: 4px solid var(--danger-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .woocommerce-MyAccount-navigation {
        order: 1;
        position: static;
    }
    
    .woocommerce-MyAccount-content {
        order: 2;
    }
    
    .woocommerce-MyAccount-navigation ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .woocommerce-MyAccount-navigation a {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        text-align: center;
    }
    
    .woocommerce table.shop_table {
        font-size: var(--font-size-sm);
    }
    
    .woocommerce table.shop_table th,
    .woocommerce table.shop_table td {
        padding: var(--spacing-md);
    }
    
    .woocommerce-account .woocommerce {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

.add-to-wishlist,
.add-to-compare {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.add-to-wishlist:hover,
.add-to-compare:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.add-to-wishlist.added,
.add-to-compare.added {
    background: var(--primary-color);
    color: white;
}

.product-share {
    border-top: 1px solid var(--glass-border);
    padding-top: var(--spacing-lg);
}

.product-share h4 {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.share-buttons {
    display: flex;
    gap: var(--spacing-sm);
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-button.facebook:hover {
    background: #1877F2;
    color: white;
}

.share-button.twitter:hover {
    background: #1DA1F2;
    color: white;
}

.share-button.telegram:hover {
    background: #0088CC;
    color: white;
}

/* Product Tabs */
.product-tabs {
    margin-top: var(--spacing-3xl);
    background: var(--glass-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.tab-navigation {
    display: flex;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.tab-button {
    flex: 1;
    background: none;
    border: none;
    padding: var(--spacing-lg);
    cursor: pointer;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: rgba(0, 122, 255, 0.1);
}

.tab-content {
    padding: var(--spacing-2xl);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-color);
}

.product-attributes {
    width: 100%;
    border-collapse: collapse;
}

.product-attributes tr {
    border-bottom: 1px solid var(--glass-border);
}

.product-attributes td {
    padding: var(--spacing-md);
}

.attribute-label {
    font-weight: 600;
    color: var(--text-color);
    width: 30%;
}

.attribute-value {
    color: var(--text-secondary);
}

/* Shop Page */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-2xl);
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--glass-border);
}

.page-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--text-color);
}

.shop-toolbar {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.filter-toggle {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.filter-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.shop-sorting select {
    background: #00209d;
    border: 1px solid #f5f8f7;
    color: var(--text-color);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-md);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.shop-content {
    float: right;
    width: 100%;
}

.shop-sidebar {
    background: var(--glass-card);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-content h3 {
    margin-bottom: var(--spacing-lg);
    color: var(--text-color);
}

.widget {
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--glass-border);
}

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

.widget h4 {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
    font-size: var(--font-size-lg);
}

.price-range {
    position: relative;
}

.price-range input[type="range"] {
    width: 100%;
    margin-bottom: var(--spacing-md);
}

.price-values {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.category-list,
.brand-list,
.rating-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-item,
.brand-item,
.rating-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.category-item:hover,
.brand-item:hover,
.rating-item:hover {
    color: var(--primary-color);
}

.category-item input,
.brand-item input,
.rating-item input {
    margin: 0;
}

.category-name,
.brand-name {
    flex: 1;
}

.category-count,
.brand-count {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.rating-item .stars {
    color: var(--accent-color);
    margin-right: var(--spacing-sm);
}

.rating-text {
    font-size: var(--font-size-sm);
}

.filter-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.filter-apply,
.filter-reset {
    flex: 1;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-apply {
    background: var(--primary-color);
    color: white;
    border: none;
}

.filter-apply:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.filter-reset {
    background: var(--glass-bg);
    color: var(--text-color);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.filter-reset:hover {
    background: var(--error-color);
    color: white;
    border-color: var(--error-color);
}



.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

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

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

.product-badges {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.badge {
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale {
    background: var(--error-color);
    color: white;
}

.badge-featured {
    background: var(--accent-color);
    color: white;
}

.badge-out-of-stock {
    background: var(--text-secondary);
    color: white;
}

.product-cart-form {
    float: right;
    width: 100%;
    padding: 10px 0;
}
.product-actions {
    float: right;
    width: 100%;
}
.product-actions button {
    float: right;
    width: 100%;
    margin: 10px 0;
}
.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    text-decoration: none;
}

.product-action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-info {
    padding: var(--spacing-lg);
}

.product-category {
    margin-bottom: var(--spacing-sm);
}

.product-category a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color 0.3s ease;
}

.product-category a:hover {
    color: var(--primary-color);
}

.product-title {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: 600;
    line-height: 1.4;
}

.product-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.stars {
    color: var(--accent-color);
    font-size: var(--font-size-sm);
}

.rating-count {
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
}

.no-rating {
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
}

.product-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.product-description {
    margin-bottom: var(--spacing-md);
    color: #cdcdd0;
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--glass-border);
}

.meta-label {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
}

.meta-value {
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.meta-value.instock {
    color: var(--success-color);
}

.meta-value.outofstock {
    color: var(--error-color);
}

.product-actions-bottom {
    margin-top: var(--spacing-md);
}

.add-to-cart-btn,
.out-of-stock-btn {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.out-of-stock-btn {
    background: var(--text-secondary);
    cursor: not-allowed;
}

/* No Products */
.no-products {
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.no-products-content {
    max-width: 500px;
    margin: 0 auto;
    padding: var(--spacing-3xl);
}

.no-products-content svg {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.no-products-content h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.no-products-content p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-single {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .product-gallery {
        position: static;
    }
    
    .shop-content {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: static;
        order: 2;
    }
    
    .shop-main {
        order: 1;
    }
    
    .product-actions {
 
    }
}

@media (max-width: 480px) {
    .shop-header {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .shop-toolbar {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-toggle,
    .shop-sorting select {
        width: 100%;
    }
    
    .product-actions {
        flex-wrap: wrap;
    }
    
    .product-action-btn {
        width: 35px;
        height: 35px;
    }
}
