/*
Theme Name: aetheria
Theme URI: https://shopaetheria.in/
Author: Kapil Patil
Description: WooCommerce Jewellery Theme
Version: 2.0
License: GPL2
*/

/* =========================
   GLOBAL STYLES
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #faf7f2;
    color: #222;
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 92%;
    max-width: 1280px;
    margin: auto;
    padding: 0 15px;
}

/* =========================
   HEADER
========================= */

header {
	background: url('https://shopaetheria.in/wp-content/uploads/2026/05/aetheria-handmade-jewellery-and-accessories.webp') center/cover;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 65px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo:hover {
    color: #f4d03f;
}

nav ul {
    list-style: none;
    align-items: center;
    gap: 25px;
}

nav ul li a {
    color: black;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: gold;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* =========================
   HERO SECTION
========================= */

.hero {
    background: linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)),
    url('https://shopaetheria.in/wp-content/uploads/2026/05/aetheria-blue-flower-choker-1.jpeg') center/cover no-repeat;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

.hero-content {
    max-width: 750px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #f3f3f3;
}

/* =========================
   BUTTONS
========================= */

.btn,
button,
input[type="submit"] {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #111;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* =========================
   PRODUCTS SECTION
========================= */

.section-title {
    text-align: center;
    margin: 60px 0 35px;
}

.section-title h2 {
    font-size: 38px;
    color: #111;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-box {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.product-box img {
    border-radius: 12px;
    margin-bottom: 15px;
}

.product-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.product-box p {
    font-size: 18px;
    color: #b8860b;
    font-weight: 600;
    margin-bottom: 15px;
}

/* =========================
   WOOCOMMERCE
========================= */

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    border-radius: 15px;
    overflow: hidden;
    padding: 15px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.woocommerce span.onsale {
    background: #d4af37;
    color: #111;
    border-radius: 50px;
    padding: 5px 10px;
}

.woocommerce div.product .price {
    color: #b8860b;
    font-size: 24px;
    font-weight: bold;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #111;
    color: #fff;
    padding: 60px 20px 30px;
    margin-top: 70px;
}

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

footer h3 {
    color: gold;
    margin-bottom: 15px;
}

footer p,
footer a {
    color: #ccc;
    font-size: 15px;
}

footer a:hover {
    color: gold;
}

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

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 992px) {

    .hero h1 {
        font-size: 48px;
    }

    nav ul {
        gap: 15px;
    }
}

@media (max-width: 768px) {

    .header-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 17px;
    }

    .btn {
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {

    .hero h1 {
        font-size: 30px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}

.aetheria-pincode-box {
    margin-bottom: 20px;
}

#aetheria_pincode {
    width: 220px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-right: 10px;
}

#check_pincode_btn {
    background: #d4af37;
    color: #111;
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    cursor: pointer;
}

#check_pincode_btn:hover {
    background: #c49b22;
}

#pincode_message {
    margin-top: 10px;
    font-weight: 600;
}


.widget-area,
.sidebar,
aside,
.widget {
    display: none !important;
}

.woocommerce-sidebar,
.sidebar,
.widget-area,
.widget,
aside {
    display: none !important;
}

.woocommerce div.product {
    width: 100%;
}

.site-content {
    width: 100%;
}
.single-product .product {
    max-width: 1200px;
    margin: auto;
}


/* =========================
   LUXURY SINGLE PRODUCT
========================= */

.single-product .product {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 40px;
}

/* Product Images */

.single-product div.product div.images {
    flex: 1;
    min-width: 320px;
}

.single-product div.product div.images img {
    border-radius: 18px;
    width: 100%;
    transition: 0.4s ease;
}

.single-product div.product div.images img:hover {
    transform: scale(1.02);
}

/* Product Summary */

.single-product div.product div.summary {
    flex: 1;
    min-width: 320px;
}

/* Product Title */

.single-product .product_title {
    font-size: 42px;
    font-weight: 700;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.2;
}

/* Price */

.single-product .price {
    font-size: 34px !important;
    color: #c9a227 !important;
    font-weight: bold;
    margin-bottom: 25px;
}

/* Short Description */

.single-product .woocommerce-product-details__short-description {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Quantity Box */

.quantity input.qty {
    width: 90px;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
}

/* Add To Cart Button */

.single_add_to_cart_button {
    background: linear-gradient(135deg, #d4af37, #f4d03f) !important;
    color: #111 !important;
    border: none !important;
    padding: 16px 38px !important;
    border-radius: 50px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 20px rgba(212,175,55,0.3);
}

.single_add_to_cart_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212,175,55,0.45);
}

/* Tabs */

.woocommerce-tabs {
    margin-top: 60px;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.woocommerce-tabs ul.tabs li {
    background: none !important;
    border: none !important;
}

.woocommerce-tabs ul.tabs li a {
    color: #111 !important;
    font-weight: 600;
}

.woocommerce-tabs .panel {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* Related Products */

.related.products {
    margin-top: 80px;
}

.related.products h2 {
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
}

/* Product Cards */

.related ul.products li.product {
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    padding: 20px;
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.related ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

/* Breadcrumb */

.woocommerce-breadcrumb {
    margin-bottom: 25px;
    font-size: 14px;
    color: #888;
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .single-product .product {
        flex-direction: column;
        padding: 20px;
        gap: 25px;
    }

    .single-product .product_title {
        font-size: 30px;
    }

    .single-product .price {
        font-size: 28px !important;
    }

    .single_add_to_cart_button {
        width: 100%;
        text-align: center;
    }

}

/* =========================
   PRODUCT IMAGE ZOOM EFFECT
========================= */

.single-product div.product div.images {
    overflow: hidden;
    border-radius: 20px;
}

.single-product div.product div.images img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
    cursor: zoom-in;
}

/* Zoom Effect on Hover */

.single-product div.product div.images:hover img {
    transform: scale(1.18);
}
.single-product div.product div.images img:hover {
    filter: brightness(1.03);
}

/* Hide WooCommerce Product Meta */

.single-product .product_meta {
    display: none !important;
}