/* ===== Global ===== */
body {
	font-family: 'Segoe UI', sans-serif;
}

/* ======= GANDHARVA GOLD HOUSE - HEADER CSS ======== */

/* ===== Header Base ===== */
.gg-header {
    background-color: #fdf5e8;
    border-bottom: 1px solid #eee;
}

/* ===== Top Bar ===== */
.gg-top-bar {
    padding: 5px 0;
}

/* ===== Logo ===== */
.gg-logo {
    height: 55px;
    width: auto;
}

/* ======= SEARCH BAR (Desktop) ======== */

.gg-search-wrapper {
    position: relative;
}

.gg-search-input {
    border-radius: 40px;
    padding: 10px 20px 10px 45px;
    border: 1px solid #ddd;
    background-color: #fff;
    font-size: 14px;
}

.gg-search-input:focus {
    box-shadow: none;
    border-color: #c9a14a;
}

.gg-search-input::placeholder {
    color: #999;
    opacity: 1;
}

.gg-search-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #c9a14a;
    font-size: 16px;
}

/* ====== ICONS ======= */

.gg-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.gg-icons a {
    margin-left: 20px;
    font-size: 20px;
    color: #5a4327;
    transition: 0.3s;
}

.gg-icons a:hover {
    color: #c9a14a;
}
/* Wrapper must be relative */
.gg-account-wrapper {
    position: relative;
    display: inline-block;
}

/* Hide popup by default */
.account-pop {
    position: absolute;
    top: 40px;
    right: 0;
    width: 220px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 999;
}

/* Show on hover */
.gg-account-wrapper:hover .account-pop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Button */
.custom-btn {
    width: 100%;
    padding: 8px;
    background: #c9a14a;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.custom-btn:hover {
    background: #000;
}

/* Contact link */
.account-contact-us {
    margin-top: 15px;
    text-align: center;
}

.account-contact-us a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
}

.account-contact-us a:hover {
    color: #c9a14a;
}

/* ===== CUSTOM HAMBURGER ====== */

.gg-toggler {
    border: none;
    padding: 0;
}

.gg-toggler:focus {
    box-shadow: none;
}

/* Remove default bootstrap icon */
.gg-toggler .navbar-toggler-icon {
    background-image: none;
    width: 24px;
    height: 2px;
    background-color: #c9a14a;
    position: relative;
    display: block;
}

/* Top & Bottom Lines */
.gg-toggler .navbar-toggler-icon::before,
.gg-toggler .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #c9a14a;
    transition: 0.3s ease;
}

.gg-toggler .navbar-toggler-icon::before {
    top: -7px;
}

.gg-toggler .navbar-toggler-icon::after {
    top: 7px;
}

/* ===== MOBILE COLLAPSE MENU ===== */

.gg-mobile-menu {
    background: #ffffff;
    border-top: 1px solid #eee;
    padding: 10px 0;
}

.gg-category-nav {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.gg-category-link {
    color: #5a4327 !important;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

.gg-category-link:hover {
    color: #c9a14a !important;
    padding-left: 5px;
}

/* ======= RESPONSIVE SETTINGS ====== */

@media (max-width: 991px) {

    /* Top spacing reduce */
    .gg-top-bar {
        padding: 10px 0;
    }

    /* Logo smaller */
    .gg-logo {
        height: 45px;
    }

    /* Icons spacing */
    .gg-icons a {
        margin-left: 12px;
        font-size: 18px;
    }

    /* Stack menu items */
    .gg-category-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (min-width: 992px) {

    /* Hide mobile collapse menu on desktop */
    .gg-mobile-menu {
        display: none !important;
    }

}


/* ===== Hero Section ===== */

/* Wrapper */
.wrapper{
  width:100%;
  padding: 20px 0px;
  text-align:center;
}

/* Section */
.gg-hero-section{
  background:#f5efe6;
  overflow:hidden;
  width: 100%;
}

/* Carousel Width */
.carousel,
.gg-hero-slider{
  width:100%;
  margin:0 auto;
}

/* Slide spacing */
.slick-slide{
  margin:10px;
}

/* Card */
.gg-hero-card{
  position:relative;
  border-radius:20px;
  overflow:hidden;
}

/* Image */
.slick-slide img,
.gg-hero-img{
  width:100%;
  height:540px;
  object-fit:cover;
  border:2px solid #fff;
  border-radius:20px;
}

/* Overlay */
.gg-hero-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

/* Content Common */
.gg-hero-content{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  color:#fff;
  max-width:500px;
  z-index:2;
}

/* Left */
.content-left{
  left:8%;
  text-align:left;
}

/* Center */
.content-center{
  left:50%;
  transform:translate(-50%, -50%);
  text-align:center;
}

/* Right */
.content-right{
  right:8%;
  text-align:right;
}

/* Title */
.gg-title{
  font-size:48px;
  font-family:'Playfair Display', serif;
  margin-bottom:15px;
}

/* Subtitle */
.gg-subtitle{
  font-size:18px;
  margin-bottom:25px;
}

/* Button */
.gg-btn{
  display:inline-block;
  padding:12px 35px;
  background:#c9a14a;
  color:#fff;
  text-decoration:none;
  border-radius:4px;
  transition:0.3s;
}

.gg-btn:hover{
  background:#fff;
  color:#000;
}

/* Dots */
.wrapper .slick-dots li button:before,
.gg-hero-section .slick-dots li button:before{
  font-size:20px;
  color:white;
}

/* ===== Category Section ===== */

.gg-category-section {
	padding: 70px 0;
	background: #f5efe6;
}

/* Header */
.gg-section-title {
	color: #564416;
	font-size: 32px;
	font-weight: 600;
}

.gg-see-all {
	color: #564416;
	text-decoration: none;
	font-weight: 500;
}

.gg-see-all:hover {
	color: #000;
}

/* Category Box */
.gg-category-box {
	background: #ffffff;
	border-radius: 15px;
	padding: 30px 20px;
	text-align: center;
	transition: all 0.4s ease;
	cursor: pointer;
	border: 1px solid #eee;
	position: relative;
	overflow: hidden;
}

/* Hover Effect */
.gg-category-box::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 0%;
	bottom: 0;
	left: 0;
	background: #564416;
	transition: 0.4s;
	z-index: 0;
}

.gg-category-box:hover::before {
	height: 100%;
}

.gg-category-box:hover {
	transform: translateY(-10px);
}

.gg-category-box:hover .gg-category-name {
	color: #fff;
}

.gg-category-box:hover .gg-category-img {
	transform: scale(1.1);
}

/* Image Wrapper */
.gg-category-img-wrapper {
	position: relative;
	z-index: 1;
}

.gg-category-img {
	height: 120px;
	border-radius: 15px;
	width: 170px;
	object-fit: cover;
	transition: 0.4s;
}

/* Text */
.gg-category-name {
	margin-top: 15px;
	font-size: 18px;
	font-weight: 500;
	color: #000;
	position: relative;
	z-index: 1;
}
/* ===== Desktop Menu ===== */
.gg-desktop-menu {
    background: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.gg-category-nav-desktop {
    list-style: none;
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    margin: 0;
}

.gg-category-nav-desktop li a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #5a4327;
    transition: 0.3s;
}

.gg-category-nav-desktop li a:hover {
    color: #c9a14a;
}

/* ===== Mobile Menu ===== */
.gg-mobile-menu {
    background: #fff;
    border-top: 1px solid #eee;
}

.gg-category-nav-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gg-category-nav-mobile li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #5a4327;
}

/* Mobile */
@media (max-width: 991px) {

    .gg-category-section {
        padding: 40px 10px;
    }
	.gg-category-box {
		padding: 20px;
	}

	.gg-category-img {
        height: 70px;
        width: 70px;
    }
	.slick-slide img,
	.gg-hero-img{
		height:280px;
	}
	.gg-title {
    	font-size:25px;
	}
	.gg-hero-content {
		width: 100%;
	}

}


/* ===== Services Section ===== */

.gg-services-section {
	padding: 80px 0;
	background: #f5efe6;
}

/* Box */
.gg-service-box {
	background: #efe2b8;
	padding: 30px 25px;
	border-radius: 20px;
	height: 100%;
	transition: 0.4s;
	position: relative;
}

/* Hover Effect */
.gg-service-box:hover {
	transform: translateY(-10px);
	background: #564416;
}

.gg-service-box:hover .gg-service-title,
.gg-service-box:hover .gg-service-text {
	color: #fff;
}

.gg-service-box:hover .gg-service-btn {
	background: #fff;
	color: #564416;
}

/* Icon */
.gg-service-icon {
	background: #f4d87c;
	width: 70px;
	height: 70px;
	border-radius: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.gg-service-icon img {
	width: 40px;
}

/* Title */
.gg-service-title {
	font-size: 20px;
	font-weight: 600;
	color: #564416;
	margin-bottom: 10px;
}

/* Text */
.gg-service-text {
	font-size: 15px;
	color: #000;
	margin-bottom: 20px;
}

/* Arrow Button */
.gg-service-btn {
	width: 40px;
	height: 40px;
	background: #1c1c1c;
	color: #fff;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

/* Responsive */

@media (max-width: 991px) {

	.gg-services-section {
		padding: 40px 10px;
	}
    .gg-Promo-section {
        padding: 20px 0px !important;
    }
    .diamond-section {
        padding: 40px 10px !important;
    }

}


/* ===== Center Banner ===== */
.gg-Promo-section {
	padding: 80px 0;
	background: #f5efe6;
}

.gg-center-banner {
	background: linear-gradient(rgba(86, 68, 22, 0.75), rgba(86, 68, 22, 0.75)), url("../images/Promotion.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 450px;
	border-radius: 30px;
}

/* Title */
.gg-banner-title {

	color: #fff;
	font-size: 42px;
	font-weight: 600;
	margin-bottom: 20px;
}

/* Text */
.gg-banner-text {

	color: #f5efe6;
	font-size: 18px;
	margin-bottom: 30px;
}

/* Button */
.gg-banner-btn {

	background: #fff;
	color: #564416;
	padding: 12px 35px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 500;
	transition: 0.3s;
}

.gg-banner-btn {
	background: #c9a14a;
	color: #fff;
}

.gg-banner-btn:hover {
	background: #000;
	color: #fff;
}

/* Responsive */

@media (max-width: 768px) {

	.gg-center-banner {
        padding: 20px 20px;
        min-height: 290px;
        border-radius: 0px;
    }

	.gg-banner-title {
		font-size: 28px;
	}

	.gg-banner-text {
		font-size: 16px;
	}
    .gg-flash-section {
        padding: 40px 10px !important;
        background: #f5efe6;
    }

}

/* ===== Flash Section ===== */

.gg-flash-section {
	padding: 80px 0;
	background: #f5efe6;
}


/* Tabs */

.gg-flash-tabs .nav-link {

	background: #e5dcc8;
	color: #000;

	border-radius: 20px;
	margin: 5px;
	padding: 8px 20px;
	border: none;
}

.gg-flash-tabs .nav-link.active {

	background: #564416;
	color: #fff;
}


/* Product Card */

.gg-product-card {

	background: #fff;
	border-radius: 15px;
	padding: 15px;
	transition: 0.4s;
}

.gg-product-card:hover {

	transform: translateY(-10px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}


/* Image */
.gg-product-img img {
	width: 100%;
	height: 220px;
	border-radius: 10px;
	object-fit: cover;
}


/* Title */

.gg-product-title {
	color: #564416;
	font-size: 18px;
	margin-top: 10px;
}


/* Price */

.gg-product-price {
	color: #000;
	font-size: 14px;
}


/* Bottom */

.gg-product-bottom {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}


/* Wishlist */

.gg-wishlist {
	background: #564416;
	border: none;
	color: #fff;
	width: 40px;
	border-radius: 8px;
}


/* Cart Button */

.gg-cart-btn {
	background: #564416;
	color: #fff;
	border: none;
	padding: 8px 15px;
	border-radius: 8px;
}

.gg-cart-btn:hover {
	background: #000;
}


/* ===== Discover Special Section ===== */

.ds-section {
    padding: 80px 0;
	background: #f5efe6;
}

.ds-title {
    font-size: 32px;
    letter-spacing: 2px;
    font-weight: 600;
    color: #564416;
}

/* Card Base */
.ds-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.ds-card img {
    width: 100%;
    transition: transform 0.5s ease;
}

/* Zoom Hover */
.ds-card:hover img {
    transform: scale(1.08);
}

/* Content Overlay */
.ds-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    z-index: 2;
}

.ds-content h4 {
    font-weight: 600;
}

.ds-content p {
    font-size: 14px;
    margin-bottom: 10px;
}

.ds-content span {
    font-style: italic;
}

/* Center content for big card */
.ds-content-center {
    position: absolute;
    bottom: 60px;
    left: 50%;
    color: #fff;
    transform: translateX(-50%);
    text-align: left;
    width: 80%;
}

/* Button */
.ds-btn {
    border: 1px solid #c9a14a;
    padding: 10px 25px;
    margin-top: 10px;
    color: #fff;
    border-radius: 34px;
    display: inline-block;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.ds-btn:hover {
    color: #b68b2e;
    border-color: #b68b2e;
}

/* Card Heights */
.ds-card-small {
    height: 280px;
}

.ds-card-wide {
    height: 300px;
}

.ds-card-big {
    height: 100%;
    min-height: 100%;
}

/* Make images fill height */
.ds-card-small img,
.ds-card-wide img,
.ds-card-big img {
    height: 100%;
    object-fit: cover;
}


/* Diamond Slider-section */

.diamond-section {
	padding: 80px 0;
	background: #f5efe6;
}

.diamond-title {
	color: #564416;
	font-size: 32px;
	font-weight: 600;
}

.diamond-subtitle {
	color: #777;
}

.diamond-card {
	border-radius: 12px;
	overflow: hidden;
	height: 350px;
	position: relative;
	text-align: center;
}

.diamond-card img {
	border-radius: 12px;
	width: 100%;
	object-fit: cover;
	height: 100%;
	transition: 0.4s;
}

.diamond-card:hover img {
	transform: scale(1.05);
}

.diamond-card h5 {
	font-size: 18px;
	width: 100%;
	z-index: +9;
	color: #fff;
	position: absolute;
	text-align: center;
	bottom: 10px;
}

.swiper-button-prev,
.swiper-button-next {
	border: 1px solid #c9a14a;
	padding: 20px;
	background: #c9a14a;
	color: #fff !important;
	border-radius: 49px;
	width: 45px;
	height: 45px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 20px !important;
}


img.footer-img {
	width: 175px;
	border-radius: 10px;
}

/* Footer Base */
.jewel-footer {
	background: #f5efe6;
	color: #564416;
}

footer p,
footer li a {
	color: #564416 !important;
}

/* Newsletter */
.jewel-footer-newsletter {
	padding: 35px 0;
	border-bottom: 1px solid #564416;
	background: #F2D572;
}

.jewel-footer-news-title {
	font-weight: 600;
	font-size: 20px;
	color: #564416;
}

.jewel-footer-news-desc {
	font-size: 14px;
	color: #7a6a58;
}

/* Newsletter Form */
.jewel-footer-news-form {
	display: flex;
	border: 1px solid #564416;
	border-radius: 6px;
	overflow: hidden;
}

.jewel-footer-news-form input {
	flex: 1;
	padding: 10px;
	border: none;
	background: transparent;
}

.jewel-footer-news-form button {
	background: #564416;
	color: white;
	border: none;
	padding: 10px 18px;
}

.jewel-footer-top-sec {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
}

.jewel-footer-contact-top {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.jewel-footer-contact-item p {
	margin: 0px;
}

.jewel-footer-contact-top-icn i {
	font-size: 25px;
	padding: 6px 10px;
	color: #fff;
	background: #564416;
	border-radius: 6px;
}

/* Footer Main */
.jewel-footer-main {
	padding: 50px 0;
	background-color: #F2D572;
}

.jewel-footer-title {
	font-weight: 600;
	margin-bottom: 15px;
	color: #564416;
}

/* Links */
.jewel-footer-links {
	list-style: none;
	padding: 0;
}

.jewel-footer-links li {
	margin-bottom: 8px;
}

.jewel-footer-links a {
	text-decoration: none;
	color: #6d5a3c;
	transition: 0.3s;
}

.jewel-footer-links a:hover {
	color: #564416;
	padding-left: 5px;
}

/* Contact */
.jewel-footer-contact-text {
	font-size: 14px;
	margin-bottom: 15px;
}

/* Buttons */
.jewel-footer-btn {
	display: inline-block;
	padding: 8px 18px;
	background: #564416;
	color: white;
	text-decoration: none;
	margin-right: 10px;
	border-radius: 5px;
}

.jewel-footer-btn-outline {
	background: transparent;
	border: 1px solid #564416;
	color: #564416;
}

.jewel-footer-btn-outline:hover {
	background: #564416;
	color: white;
}

.jewel-footer-social {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
	margin-top: 15px;
}

/* Social */
.jewel-footer-social a {
	background: #564416;
	color: white;
	border-radius: 50%;
	height: 40px;
	width: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* Responsive */
@media(max-width:768px) {
    .jewel-footer-contact-top {
        justify-content: flex-start;
        gap: 30px;
        flex-wrap: wrap;
    }
    .gg-flash-tabs .nav-link {
        padding: 7px 14px;
        font-size: 15px;
    }
    .jewel-footer-newsletter {
        padding: 30px 10px !important;
    }
    .jewel-footer-main {
        padding: 30px 10px !important;
    }
    .ds-section {
        padding: 30px 10px !important;
        background: #f5efe6;
    }

}

/* Popup Content */
.gg-popup-content {
	background: #f5efe6;
	border-radius: 15px;
	padding: 40px 20px;
	position: relative;
	border: none;
}

/* Close Button */
.gg-popup-close {
	position: absolute;
	top: 10px;
	right: 15px;
	background: #000;
	color: #fff;
	border: none;
	width: 35px;
	height: 35px;
	border-radius: 8px;
	cursor: pointer;
}

/* Title */
.gg-popup-title {
	color: #564416;
	font-weight: bold;
}

.gg-popup-elegant {
	color: #564416;
	font-family: serif;
}

/* Discount */
.gg-popup-discount {
	color: #564416;
	font-weight: bold;
}

/* Button */
.gg-popup-btn {
	background: #564416;
	color: #fff;
	padding: 10px 30px;
	border-radius: 25px;
	text-decoration: none;
	display: inline-block;
	margin-top: 15px;
}

.gg-popup-btn:hover {
	background: #000;
	color: #fff;
}


/*=============================== Login Page css ========================================*/

/* Background */
.jewel-login-section {
	background: #f5efe6;
}

/* Card */
.jewel-login-card {
	background: #ffffff;
	padding: 35px;
	border-radius: 10px;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);

}

/* Logo */
.jewel-login-logo img {
	width: 180px;
	margin-bottom: 10px;
	border-radius: 17px;
}

.jewel-login-logo h4 {
	color: #564416;
	font-weight: 600;
}

.jewel-login-logo p {
	color: #777;
	font-size: 14px;
}

/* Labels */
.jewel-login-label {
	color: #564416;
	font-weight: 500;
	margin-bottom: 5px;
}

/* Input */
.jewel-login-input {
	height: 45px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.jewel-login-input:focus {
	border-color: #564416;
	box-shadow: none;
}

/* Eye icon */
.jewel-login-eye {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	color: #564416;

}

/* Remember text */
.jewel-login-remember {
	font-size: 14px;
	margin-left: 5px;
}

/* Forgot */
.jewel-login-forgot {
	font-size: 14px;
	color: #564416;
	text-decoration: none;
}

/* Button */
.jewel-login-btn {
	background: #564416;
	color: white;
	height: 45px;
	font-weight: 500;
}

.jewel-login-btn:hover {
	background: #3d2f0f;
	color: white;
}

/* Register */
.jewel-login-register-link {
	color: #564416;
	text-decoration: none;
	font-weight: 500;
}

.jewel-login-register-link:hover {
	text-decoration: underline;
}
.jewel-footer-news-form input::placeholder {
    color: #564416 !important;
    opacity: 1;
}

/* Responsive */
@media(max-width:576px) {
	.jewel-login-card {
		padding: 25px;
	}
}

/* Register specific */

@media (max-width:768px) {
	.col-md-6 {
		width: 100%;
	}
}



/* ================================= PRODUCT PAGE ====================================== */

/* PRODUCT PAGE BANNER */
.ggh-product-banner {
    height: 350px;
    background-image: linear-gradient(rgb(0 0 0 / 76%), rgb(0 0 0 / 77%)), url(../images/banner-solid.jpg);
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* Title */

.ggh-product-banner-title{

  font-size: 42px;
  font-weight: 600;
  color: #fff;

}

/* Breadcrumb */

.ggh-product-breadcrumb{

  margin-top: 10px;
  font-size: 16px;

}

.ggh-product-breadcrumb a{

  color: #e6c16a;
  text-decoration: none;

}

.ggh-product-breadcrumb span{

  color: #fff;

}

/* Mobile */

@media(max-width:768px){

  .ggh-product-banner{

    height: 220px;

  }

  .ggh-product-banner-title{

    font-size: 26px;

  }

}


/* ============================= ABOUT PAGE STYLES ============================= */

/* Common Colors */
:root{
  --ggh-primary:#564416;
  --ggh-light:#f5efe6;
  --ggh-dark:#222;
}

/* About Section */
.ggh-about-section{
  background: #f8f5ef;
}

.ggh-about-title{
  color: var(--ggh-primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.ggh-about-text{
  color: #555;
  line-height: 1.8;
}


/* Story Section */
.ggh-story-section{
  background:#f8f5ef;
}
.ggh-story-img, .ggh-about-img {
    height: 450px;
    width: 100%;
    object-fit: cover;
}

.ggh-story-title{
  color: var(--ggh-primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.ggh-story-text{
  color:#555;
  line-height:1.8;
}

/* Why Section */
.ggh-why-section{
  background: var(--ggh-light);
}

.ggh-why-title{
  color: var(--ggh-primary);
  font-weight: 600;
}

.ggh-why-card{
  background:#fff;
  padding:30px 20px;
  border-radius:10px;
  transition:0.3s;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.ggh-why-card:hover{
  transform:translateY(-5px);
}

.ggh-why-icon{
  font-size:40px;
  margin-bottom:15px;
}
/* RESPONSIVE IMPROVEMENTS */

@media (max-width: 768px){

  .ggh-about-title,
  .ggh-story-title,
  .ggh-why-title{
    font-size: 22px;
    text-align: center;
  }

  .ggh-about-text,
  .ggh-story-text{
    font-size: 14px;
    text-align: center;
  }

  .ggh-about-section,
  .ggh-story-section,
  .ggh-why-section{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .ggh-story-img, .ggh-about-img {
    height: 280px;
}

}

/* HOW WE HELP SECTION */

.ggh-help-section{
  background:#f8f5ef;
}

.ggh-help-main-title{
  color:#564416;
  font-weight:600;
  font-size:32px;
}

/* BOX */

.ggh-help-box{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  transition:0.4s ease;
  box-shadow:0 5px 20px rgba(0,0,0,0.05);
  height:100%;
}

/* IMAGE */

.ggh-help-img{
  overflow:hidden;
}

.ggh-help-img img{
  width:100%;
  transition:0.4s ease;
}

/* CONTENT */

.ggh-help-content{
  padding:20px;
  text-align:center;
}

.ggh-help-content h5{
  color:#564416;
  font-weight:600;
  margin-bottom:10px;
}

.ggh-help-content p{
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* HOVER EFFECT */

.ggh-help-box:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.ggh-help-box:hover img{
  transform:scale(1.08);
}

/* RESPONSIVE */

@media(max-width:768px){

  .ggh-help-main-title{
    font-size:24px;
  }

}


/* ========== CONTACT PAGE - GANDHARVA GOLD HOUSE ================ */

/* 1️⃣ CONTACT INFO SECTION */

.ggh-contact-info-section{
  background:#f8f5ef;
}

.ggh-contact-info-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 18px;
    transition: all 0.4s ease;
	min-height: 260px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ggh-contact-info-box:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.ggh-contact-icon{
  width:70px;
  height:70px;
  background:#564416;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  margin-bottom:18px;
}

.ggh-contact-info-box h5{
  color:var(--ggh-primary);
  font-weight:600;
  margin-bottom:8px;
}

.ggh-contact-info-box p {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

/* 2️⃣ CONTACT FORM SECTION */

.ggh-contact-form-section{
  background:#f5efe6;
}

.ggh-contact-title{
  color:var(--ggh-primary);
  font-weight:600;
  margin-bottom:15px;
}

.ggh-contact-text{
  color:#555;
  line-height:1.8;
  font-size:15px;
}

.ggh-contact-form-box {
    background: var(--ggh-light-bg);
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #c7c7c7;
}

/* Inputs */

.ggh-contact-input{
  border-radius:10px;
  padding:12px;
  border:1px solid #ddd;
  transition:0.3s;
}

.ggh-contact-input:focus{
  border-color:var(--ggh-primary);
  box-shadow:none;
}

/* Button */

.ggh-contact-btn{
  background:var(--ggh-primary);
  color:#fff;
  padding:12px;
  border:none;
  border-radius:10px;
  font-weight:500;
  transition:0.3s;
}

.ggh-contact-btn:hover{
  background:var(--ggh-dark);
}

/* 3️⃣ MAP SECTION */

.ggh-contact-map-section{
  background:#f8f5ef;
}

.ggh-contact-map-title{
  color:var(--ggh-primary);
  font-weight:600;
}

.ggh-contact-map iframe{
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}


/* RESPONSIVE DESIGN */

@media (max-width:992px){

  .ggh-contact-title{
    text-align:center;
  }

  .ggh-contact-text{
    text-align:center;
  }

}

@media (max-width:768px){

  .ggh-contact-info-box{
    padding:25px 20px;
  }

  .ggh-contact-form-box{
    padding:25px;
  }

  .ggh-contact-title{
    font-size:22px;
  }

}

@media (max-width:576px){

  .ggh-contact-icon{
    width:60px;
    height:60px;
    font-size:22px;
  }

}


/* ================= COLLECTION PAGE ================= */

/* ===== BANNER ===== */
.ggh-col-banner1{
	padding:120px 50px;
	position:relative;
  	border-radius: 30px;
    background: url('../images/banner-solid.jpg');
    min-height: 380px;
    margin-bottom: 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ggh-col-banner2 {
	padding:120px 50px;
	position:relative;
  	border-radius: 30px;
    background: url('../images/col2.jpg');
    min-height: 380px;
    margin-bottom: 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ggh-col-banner3 {
	padding:120px 50px;
	position:relative;
  	border-radius: 30px;
    background: url('../images/banner01.jpg');
    min-height: 380px;
    margin-bottom: 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ggh-col-banner::after::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: 20px;
  background:rgba(0,0,0,0.35);
}

.ggh-col-banner-content{
  position:relative;
  color:#fff;
  max-width:500px;
}

.ggh-col-banner h2{
  font-size:42px;
  font-weight:600;
}

.ggh-col-banner p{
  margin-top:10px;
  font-size:16px;
}

/* ===== PRODUCTS SECTION ===== */

.ggh-col-products{
  background:var(--ggh-light);
  padding:60px 0;
}

/* PRODUCT CARD */

.ggh-col-card {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.ggh-col-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: 0.4s;
    height: 250px;
    object-fit: cover;
}

.ggh-col-card h6{
  color:var(--ggh-primary);
  margin:8px 0 5px;
  font-weight:600;
}

.ggh-col-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.ggh-col-card:hover img{
  transform:scale(1.05);
}

/* QUOTE BOX */

.ggh-col-quote{
  border:2px dashed var(--ggh-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
  height:100%;
  border-radius:12px;
  text-align:center;
  font-style:italic;
  color:var(--ggh-primary);
  background:#fff;
}

/* BUTTON */

.ggh-col-btn {
    display: inline-block;
	background:var(--ggh-primary);
    color: #fff;
    padding: 14px 47px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    margin-top: 20px;
}

.ggh-col-btn:hover{
  	background: #000;
}

/* ===== RESPONSIVE ===== */

@media(max-width:992px){
	.ggh-col-banner{
		padding:80px 0;
	}
	.ggh-col-banner h2{
		font-size:30px;
	}
}

@media(max-width:768px){
  	.ggh-col-banner {
		padding: 40px 20px;
		display: flex;
		min-height: 280px;
		flex-direction: column;
		justify-content: center;
	}
	.ggh-col-products {
		padding: 40px 20px;
	}
}