/* WooCommerce Styles */

/* Products Grid */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product {
    background: #fff;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.product img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.product-content {
    padding: 15px;
}

.product-title {
    font-size: 16px;
    margin: 0 0 10px;
    font-family: 'Open Sans', sans-serif;
}

.product-title a {
    color: #666666;
    text-decoration: none;
}

.product-title a:hover {
    color: #c80e14;
}

.product-price {
    color: #333333;
    font-weight: bold;
    margin-bottom: 15px;
}

.add_to_cart_button {
    display: inline-block;
    padding: 8px 15px;
    background: #c80e14;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.add_to_cart_button:hover {
    background: #333333;
    color: #fff;
}

/* Single Product */
.single-product .product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    border: none;
    box-shadow: none;
}

.product-gallery {
    position: relative;
}

.product-gallery img {
    width: 100%;
    height: auto;
    margin-bottom: 0;
}

.product-summary {
    padding: 0;
}

.product-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.product-price {
    font-size: 24px;
    margin-bottom: 20px;
}

.quantity {
    margin-bottom: 20px;
}

.quantity input {
    width: 60px;
    padding: 8px;
    text-align: center;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
}

.single_add_to_cart_button {
    padding: 10px 15px;
    background: #c80e14;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.single_add_to_cart_button:hover {
    background: #333333;
}

/* Cart */
.woocommerce-cart-form {
    margin-bottom: 30px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th,
.cart-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #c9c9c9;
}

.cart-table img {
    max-width: 80px;
    height: auto;
}

.quantity input {
    width: 50px;
    padding: 5px;
    text-align: center;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
}

.cart-actions {
    margin-top: 20px;
    text-align: right;
}

.cart-actions .button {
    padding: 8px 15px;
    background: #c80e14;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-left: 10px;
    font-size: 14px;
}

.cart-actions .button:hover {
    background: #333333;
}

/* Checkout */
.woocommerce-checkout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.checkout-form {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #c9c9c9;
}

.checkout-form h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    color: #666666;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 8px 15px;
    border: 1px solid #c9c9c9;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

.checkout-review-order {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #c9c9c9;
}

.checkout-review-order h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.checkout-review-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.checkout-review-order-table th,
.checkout-review-order-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #c9c9c9;
}

.payment-methods {
    margin-top: 20px;
}

.payment-method {
    margin-bottom: 10px;
}

.place-order {
    margin-top: 20px;
}

.place-order .button {
    width: 100%;
    padding: 10px 15px;
    background: #c80e14;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.place-order .button:hover {
    background: #333333;
}

/* My Account */
.woocommerce-account {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.woocommerce-MyAccount-navigation {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #c9c9c9;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation li {
    margin-bottom: 10px;
}

.woocommerce-MyAccount-navigation a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
}

.woocommerce-MyAccount-navigation a:hover {
    color: #c80e14;
}

.woocommerce-MyAccount-content {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #c9c9c9;
}

/* Notices */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px;
}

.woocommerce-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.woocommerce-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.woocommerce-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
} 