/* Custom styles for Town and Country Market */

/* Selection color */
::selection {
    background: rgba(212, 168, 67, 0.3);
    color: #fdfdf8;
}

/* Smooth focus outlines */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #d4a843;
    outline-offset: 4px;
    border-radius: 2px;
}

/* Image loading placeholder */
img {
    background: linear-gradient(135deg, #1c351a 0%, #284e24 100%);
    min-height: 4px;
}

/* Gold accent line animation */
.gold-line {
    position: relative;
    display: inline-block;
}

.gold-line::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #d4a843, #f0d48a);
    transition: width 0.4s ease;
}

.gold-line:hover::after {
    width: 100%;
}

/* Subtle grain texture overlay */
.grain::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Decorative corner accents */
.corner-accent {
    position: relative;
}

.corner-accent::before,
.corner-accent::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: rgba(212, 168, 67, 0.3);
    border-style: solid;
}

.corner-accent::before {
    top: -8px;
    left: -8px;
    border-width: 1px 0 0 1px;
}

.corner-accent::after {
    bottom: -8px;
    right: -8px;
    border-width: 0 1px 1px 0;
}
